@microsoft/typespec-msgraph-reference 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.rush/temp/package-deps_build.json +18 -18
- package/CHANGELOG.md +9 -0
- package/lib/Bleu/Beta/main.tsp +121 -3
- package/lib/Bleu/V1.0/main.tsp +377 -1
- package/lib/Delos/Beta/main.tsp +3330 -19
- package/lib/Delos/V1.0/main.tsp +2710 -10
- package/lib/Fairfax/Beta/main.tsp +64 -3
- package/lib/Fairfax/V1.0/main.tsp +58 -1
- package/lib/GovSG/Beta/main.tsp +1 -0
- package/lib/GovSG/V1.0/main.tsp +2 -1
- package/lib/Mooncake/Beta/main.tsp +64 -3
- package/lib/Mooncake/V1.0/main.tsp +58 -1
- package/lib/Prod/Beta/main.tsp +942 -169
- package/lib/Prod/V1.0/main.tsp +4093 -567
- package/lib/USNat/Beta/main.tsp +268 -0
- package/lib/USNat/V1.0/main.tsp +255 -1
- package/lib/USSec/Beta/main.tsp +268 -0
- package/lib/USSec/V1.0/main.tsp +255 -1
- package/package.json +2 -2
package/lib/Delos/Beta/main.tsp
CHANGED
|
@@ -7,16 +7,38 @@ using MsGraph;
|
|
|
7
7
|
scalar binary; //TODO: Enables support for Edm.Binary
|
|
8
8
|
|
|
9
9
|
|
|
10
|
+
@deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2021-01-18", "2023-01-18", "Owner property is deprecated and will be removed in January 2023. Please use the container property instead.")
|
|
11
|
+
// Metadata item DeprecatedDefinition_Tasks_And_Plans was already defined with a different value.
|
|
10
12
|
@deprecatedDefinition("PasskeyGlobalProperties", "<ChangeLogCategory>", "2025-10-15", "2027-10-15", "This property is deprecated and will stop returning data on October 15, 2027. Please use passkeyProfiles property.")
|
|
11
13
|
@privatePreviewDefinition("photoEditPolicy", "2024-02-16", "2025-02-16", "<theOwner>")
|
|
14
|
+
@deprecatedDefinition("Reporting", "<ChangeLogCategory>", "2021-04-11", "2021-12-31", "The action property is deprecated. The provisioningAction holds the same information as this. This only exists in the beta api.")
|
|
15
|
+
// Metadata item DeprecatedDefinition_Reporting was already defined with a different value.
|
|
12
16
|
@privatePreviewDefinition("AgenticSP", "2025-04-14", "2025-07-13", "<theOwner>")
|
|
13
17
|
@deprecatedDefinition("DirectoryFeatureRolloutPolicies", "<ChangeLogCategory>", "2021-03-05", "2021-06-30", "Feature Rollout Policies have been grouped with other policies under /policies. The existing /directory/featureRolloutPolicies is deprecated and will stop returning data on 06/30/2021. Please use /policies/featureRolloutPolicies.")
|
|
18
|
+
@deprecatedDefinition("Removal", "<ChangeLogCategory>", "2023-12-05", "2025-12-05", "The users enum value is deprecated. Use specificPeople instead.")
|
|
19
|
+
// Metadata item DeprecatedDefinition_Removal was already defined with a different value.
|
|
14
20
|
@deprecatedDefinition("Beta:ItemInsightsOranizationSettings", "<ChangeLogCategory>", "2023-10-17", "2024-01-01", "The Organization ItemInsights endpoint will stop returning data on January 1st, 2024. Please use the new Admin People ItemInsights endpoint.")
|
|
15
21
|
@deprecatedDefinition("Outlook_Tasks", "<ChangeLogCategory>", "2021-02-20", "2023-02-20", "The Outlook tasks API is deprecated and will stop returning data on February 20, 2023. Please use the new To Do API. For more details, please visit https://developer.microsoft.com/en-us/office/blogs/announcing-the-general-availability-of-microsoft-to-do-apis-on-graph/")
|
|
16
|
-
@deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2021-01-18", "2023-01-18", "Owner property is deprecated and will be removed in January 2023. Please use the container property instead.")
|
|
17
22
|
@deprecatedDefinition("accountEnabledDeprecated", "<ChangeLogCategory>", "2023-02-23", "2023-07-12", "The accountEnabled field will soon be deprecated on 2023-07-12. Please use isEnabled instead.")
|
|
23
|
+
@deprecatedDefinition("SignIn", "<ChangeLogCategory>", "2024-08-31", "2025-03-31", "SignInTokenProtectionStatus property is being deprecate in favor or more detailed tokenProtectionStatusDetails. It will be removed from April 2025.")
|
|
24
|
+
// Metadata item DeprecatedDefinition_SignIn was already defined with a different value.
|
|
18
25
|
@publicNamespace("microsoft.graph")
|
|
19
26
|
namespace reference.`microsoft.graph` {
|
|
27
|
+
@open
|
|
28
|
+
@complex model accessAction {
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
@complex model actionStep {
|
|
32
|
+
actionUrl: actionUrl | null;
|
|
33
|
+
stepNumber: int64;
|
|
34
|
+
text: string | null;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
@complex model actionUrl {
|
|
38
|
+
displayName: string;
|
|
39
|
+
url: string | null;
|
|
40
|
+
}
|
|
41
|
+
|
|
20
42
|
/**
|
|
21
43
|
* Activate device eSIM action result
|
|
22
44
|
*/
|
|
@@ -70,6 +92,10 @@ namespace reference.`microsoft.graph` {
|
|
|
70
92
|
resourcePath: string;
|
|
71
93
|
}
|
|
72
94
|
|
|
95
|
+
@complex model album {
|
|
96
|
+
coverImageItemId: string | null;
|
|
97
|
+
}
|
|
98
|
+
|
|
73
99
|
@complex model allAllowedScopes extends inheritableScopes {
|
|
74
100
|
}
|
|
75
101
|
|
|
@@ -709,6 +735,13 @@ namespace reference.`microsoft.graph` {
|
|
|
709
735
|
appConfigKeyValue: string;
|
|
710
736
|
}
|
|
711
737
|
|
|
738
|
+
@complex model appIdentity {
|
|
739
|
+
appId: string | null;
|
|
740
|
+
displayName: string | null;
|
|
741
|
+
servicePrincipalId: string | null;
|
|
742
|
+
servicePrincipalName: string | null;
|
|
743
|
+
}
|
|
744
|
+
|
|
712
745
|
/**
|
|
713
746
|
* Represents an app in the list of managed Apple applications
|
|
714
747
|
*/
|
|
@@ -784,6 +817,26 @@ namespace reference.`microsoft.graph` {
|
|
|
784
817
|
@references servicePrincipal: servicePrincipal | null;
|
|
785
818
|
}
|
|
786
819
|
|
|
820
|
+
@complex model appliedAuthenticationEventListener {
|
|
821
|
+
eventType: authenticationEventType | null;
|
|
822
|
+
executedListenerId: string | null;
|
|
823
|
+
handlerResult: authenticationEventHandlerResult | null;
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
@complex model appliedConditionalAccessPolicy {
|
|
827
|
+
authenticationStrength: authenticationStrength | null;
|
|
828
|
+
conditionsNotSatisfied: conditionalAccessConditions | null;
|
|
829
|
+
conditionsSatisfied: conditionalAccessConditions | null;
|
|
830
|
+
displayName: string | null;
|
|
831
|
+
enforcedGrantControls: string[] | null;
|
|
832
|
+
enforcedSessionControls: string[] | null;
|
|
833
|
+
excludeRulesSatisfied: conditionalAccessRuleSatisfied[] | null;
|
|
834
|
+
id: string | null;
|
|
835
|
+
includeRulesSatisfied: conditionalAccessRuleSatisfied[] | null;
|
|
836
|
+
result: appliedConditionalAccessPolicyResult | null;
|
|
837
|
+
sessionControlsNotSatisfied: string[] | null;
|
|
838
|
+
}
|
|
839
|
+
|
|
787
840
|
/**
|
|
788
841
|
* Represents an app in the list of managed applications
|
|
789
842
|
*/
|
|
@@ -1055,6 +1108,31 @@ namespace reference.`microsoft.graph` {
|
|
|
1055
1108
|
type: attendeeType | null;
|
|
1056
1109
|
}
|
|
1057
1110
|
|
|
1111
|
+
@complex model audio {
|
|
1112
|
+
album: string | null;
|
|
1113
|
+
albumArtist: string | null;
|
|
1114
|
+
artist: string | null;
|
|
1115
|
+
bitrate: int64 | null;
|
|
1116
|
+
composers: string | null;
|
|
1117
|
+
copyright: string | null;
|
|
1118
|
+
disc: int16 | null;
|
|
1119
|
+
discCount: int16 | null;
|
|
1120
|
+
`duration`: int64 | null;
|
|
1121
|
+
genre: string | null;
|
|
1122
|
+
hasDrm: boolean | null;
|
|
1123
|
+
isVariableBitrate: boolean | null;
|
|
1124
|
+
title: string | null;
|
|
1125
|
+
track: int32 | null;
|
|
1126
|
+
trackCount: int32 | null;
|
|
1127
|
+
year: int32 | null;
|
|
1128
|
+
}
|
|
1129
|
+
|
|
1130
|
+
@complex model auditActivityInitiator {
|
|
1131
|
+
app: appIdentity | null;
|
|
1132
|
+
linkableIdentifiers: linkableIdentifiers | null;
|
|
1133
|
+
user: auditUserIdentity | null;
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1058
1136
|
/**
|
|
1059
1137
|
* A class containing the properties for Audit Actor.
|
|
1060
1138
|
*/
|
|
@@ -1153,15 +1231,53 @@ namespace reference.`microsoft.graph` {
|
|
|
1153
1231
|
type: string | null;
|
|
1154
1232
|
}
|
|
1155
1233
|
|
|
1234
|
+
@open
|
|
1235
|
+
@complex model auditUserIdentity extends userIdentity {
|
|
1236
|
+
homeTenantId: string | null;
|
|
1237
|
+
homeTenantName: string | null;
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1156
1240
|
@complex model authContext extends signInContext {
|
|
1157
1241
|
authenticationContextValue: string | null;
|
|
1158
1242
|
}
|
|
1159
1243
|
|
|
1244
|
+
@complex model authenticationAppDeviceDetails {
|
|
1245
|
+
appVersion: string | null;
|
|
1246
|
+
clientApp: string | null;
|
|
1247
|
+
deviceId: string | null;
|
|
1248
|
+
operatingSystem: string | null;
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
@complex model authenticationAppPolicyDetails {
|
|
1252
|
+
adminConfiguration: authenticationAppAdminConfiguration | null;
|
|
1253
|
+
authenticationEvaluation: authenticationAppEvaluation | null;
|
|
1254
|
+
policyName: string | null;
|
|
1255
|
+
status: authenticationAppPolicyStatus | null;
|
|
1256
|
+
}
|
|
1257
|
+
|
|
1160
1258
|
@complex model authenticationBehaviors {
|
|
1161
1259
|
removeUnverifiedEmailClaim: boolean | null;
|
|
1162
1260
|
requireClientServicePrincipal: boolean | null;
|
|
1163
1261
|
}
|
|
1164
1262
|
|
|
1263
|
+
@complex model authenticationContext {
|
|
1264
|
+
detail: authenticationContextDetail | null;
|
|
1265
|
+
id: string | null;
|
|
1266
|
+
}
|
|
1267
|
+
|
|
1268
|
+
@complex model authenticationDetail {
|
|
1269
|
+
authenticationMethod: string | null;
|
|
1270
|
+
authenticationMethodDetail: string | null;
|
|
1271
|
+
authenticationStepDateTime: offsetDateTime | null;
|
|
1272
|
+
authenticationStepRequirement: string | null;
|
|
1273
|
+
authenticationStepResultDetail: string | null;
|
|
1274
|
+
succeeded: boolean | null;
|
|
1275
|
+
}
|
|
1276
|
+
|
|
1277
|
+
@abstract
|
|
1278
|
+
@complex model authenticationEventHandlerResult {
|
|
1279
|
+
}
|
|
1280
|
+
|
|
1165
1281
|
@complex model authenticationFlow {
|
|
1166
1282
|
transferMethod: conditionalAccessTransferMethods | null;
|
|
1167
1283
|
}
|
|
@@ -1186,6 +1302,22 @@ namespace reference.`microsoft.graph` {
|
|
|
1186
1302
|
targetType: authenticationMethodTargetType;
|
|
1187
1303
|
}
|
|
1188
1304
|
|
|
1305
|
+
@complex model authenticationRequirementPolicy {
|
|
1306
|
+
detail: string | null;
|
|
1307
|
+
requirementProvider: requirementProvider | null;
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1310
|
+
@complex model authenticationStrength {
|
|
1311
|
+
authenticationStrengthId: string | null;
|
|
1312
|
+
authenticationStrengthResult: authenticationStrengthResult | null;
|
|
1313
|
+
displayName: string | null;
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
@complex model authenticationStrengthUsage {
|
|
1317
|
+
@references mfa: conditionalAccessPolicy[];
|
|
1318
|
+
@references none: conditionalAccessPolicy[];
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1189
1321
|
@complex model authorizationInfo {
|
|
1190
1322
|
certificateUserIds: string[] | null;
|
|
1191
1323
|
}
|
|
@@ -1341,6 +1473,9 @@ namespace reference.`microsoft.graph` {
|
|
|
1341
1473
|
startupAuthenticationTpmUsage: configurationUsage;
|
|
1342
1474
|
}
|
|
1343
1475
|
|
|
1476
|
+
@complex model booleanColumn {
|
|
1477
|
+
}
|
|
1478
|
+
|
|
1344
1479
|
/**
|
|
1345
1480
|
* A complex type to represent the result of bulk QU catalog action.
|
|
1346
1481
|
*/
|
|
@@ -1392,6 +1527,17 @@ namespace reference.`microsoft.graph` {
|
|
|
1392
1527
|
successfulDeviceIds: string[] | null;
|
|
1393
1528
|
}
|
|
1394
1529
|
|
|
1530
|
+
@complex model bundle {
|
|
1531
|
+
album: album | null;
|
|
1532
|
+
childCount: int32 | null;
|
|
1533
|
+
}
|
|
1534
|
+
|
|
1535
|
+
@complex model calculatedColumn {
|
|
1536
|
+
format: string | null;
|
|
1537
|
+
formula: string | null;
|
|
1538
|
+
outputType: string | null;
|
|
1539
|
+
}
|
|
1540
|
+
|
|
1395
1541
|
@complex model calendarSharingMessageAction {
|
|
1396
1542
|
action: calendarSharingAction | null;
|
|
1397
1543
|
actionType: calendarSharingActionType | null;
|
|
@@ -1491,6 +1637,12 @@ namespace reference.`microsoft.graph` {
|
|
|
1491
1637
|
encryptionCertificateThumbprint: string;
|
|
1492
1638
|
}
|
|
1493
1639
|
|
|
1640
|
+
@complex model choiceColumn {
|
|
1641
|
+
allowTextEntry: boolean | null;
|
|
1642
|
+
choices: string[] | null;
|
|
1643
|
+
displayAs: string | null;
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1494
1646
|
/**
|
|
1495
1647
|
* Represents a property of the ChromeOS device.
|
|
1496
1648
|
*/
|
|
@@ -1531,6 +1683,12 @@ namespace reference.`microsoft.graph` {
|
|
|
1531
1683
|
isSipEnabled: boolean | null;
|
|
1532
1684
|
}
|
|
1533
1685
|
|
|
1686
|
+
@complex model columnValidation {
|
|
1687
|
+
defaultLanguage: string | null;
|
|
1688
|
+
descriptions: displayNameLocalization[] | null;
|
|
1689
|
+
formula: string | null;
|
|
1690
|
+
}
|
|
1691
|
+
|
|
1534
1692
|
/**
|
|
1535
1693
|
* Summary data for co managed devices
|
|
1536
1694
|
*/
|
|
@@ -1600,6 +1758,12 @@ namespace reference.`microsoft.graph` {
|
|
|
1600
1758
|
scheduledForEnrollmentCount: int32;
|
|
1601
1759
|
}
|
|
1602
1760
|
|
|
1761
|
+
@complex model commentAction {
|
|
1762
|
+
isReply: boolean | null;
|
|
1763
|
+
parentAuthor: identitySet | null;
|
|
1764
|
+
participants: identitySet[] | null;
|
|
1765
|
+
}
|
|
1766
|
+
|
|
1603
1767
|
@complex model companyDetail {
|
|
1604
1768
|
address: physicalAddress | null;
|
|
1605
1769
|
companyCode: string | null;
|
|
@@ -1675,6 +1839,9 @@ namespace reference.`microsoft.graph` {
|
|
|
1675
1839
|
deviceStates: conditionalAccessDeviceStates | null;
|
|
1676
1840
|
locations: conditionalAccessLocations | null;
|
|
1677
1841
|
platforms: conditionalAccessPlatforms | null;
|
|
1842
|
+
servicePrincipalRiskLevels: riskLevel[];
|
|
1843
|
+
signInRiskLevels: riskLevel[];
|
|
1844
|
+
userRiskLevels: riskLevel[];
|
|
1678
1845
|
users: conditionalAccessUsers | null;
|
|
1679
1846
|
}
|
|
1680
1847
|
|
|
@@ -1710,6 +1877,7 @@ namespace reference.`microsoft.graph` {
|
|
|
1710
1877
|
customAuthenticationFactors: string[];
|
|
1711
1878
|
operator: string | null;
|
|
1712
1879
|
termsOfUse: string[];
|
|
1880
|
+
@contains authenticationStrength: authenticationStrengthPolicy | null;
|
|
1713
1881
|
}
|
|
1714
1882
|
|
|
1715
1883
|
@complex model conditionalAccessGuestsOrExternalUsers {
|
|
@@ -1733,6 +1901,11 @@ namespace reference.`microsoft.graph` {
|
|
|
1733
1901
|
sessionControls: conditionalAccessSessionControls | null;
|
|
1734
1902
|
}
|
|
1735
1903
|
|
|
1904
|
+
@complex model conditionalAccessRuleSatisfied {
|
|
1905
|
+
conditionalAccessCondition: conditionalAccessConditions | null;
|
|
1906
|
+
ruleSatisfied: conditionalAccessRule | null;
|
|
1907
|
+
}
|
|
1908
|
+
|
|
1736
1909
|
@abstract
|
|
1737
1910
|
@complex model conditionalAccessSessionControl {
|
|
1738
1911
|
isEnabled: boolean | null;
|
|
@@ -1927,6 +2100,9 @@ namespace reference.`microsoft.graph` {
|
|
|
1927
2100
|
status: connectorHealthState;
|
|
1928
2101
|
}
|
|
1929
2102
|
|
|
2103
|
+
@complex model contentApprovalStatusColumn {
|
|
2104
|
+
}
|
|
2105
|
+
|
|
1930
2106
|
@complex model contentCustomization {
|
|
1931
2107
|
attributeCollection: keyValue[];
|
|
1932
2108
|
attributeCollectionRelativeUrl: string | null;
|
|
@@ -1934,6 +2110,16 @@ namespace reference.`microsoft.graph` {
|
|
|
1934
2110
|
registrationCampaignRelativeUrl: string | null;
|
|
1935
2111
|
}
|
|
1936
2112
|
|
|
2113
|
+
@complex model contentModelUsage {
|
|
2114
|
+
createdBy: identitySet | null;
|
|
2115
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
2116
|
+
driveId: string | null;
|
|
2117
|
+
lastModifiedBy: identitySet | null;
|
|
2118
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
2119
|
+
modelId: string | null;
|
|
2120
|
+
modelVersion: string | null;
|
|
2121
|
+
}
|
|
2122
|
+
|
|
1937
2123
|
@complex model contentSensitivityLabelAssignment {
|
|
1938
2124
|
assignmentMethod: sensitivityLabelAssignmentMethod;
|
|
1939
2125
|
justificationText: string | null;
|
|
@@ -1941,6 +2127,16 @@ namespace reference.`microsoft.graph` {
|
|
|
1941
2127
|
tenantId: string | null;
|
|
1942
2128
|
}
|
|
1943
2129
|
|
|
2130
|
+
@complex model contentTypeInfo {
|
|
2131
|
+
id: string | null;
|
|
2132
|
+
name: string | null;
|
|
2133
|
+
}
|
|
2134
|
+
|
|
2135
|
+
@complex model contentTypeOrder {
|
|
2136
|
+
default: boolean | null;
|
|
2137
|
+
position: int32 | null;
|
|
2138
|
+
}
|
|
2139
|
+
|
|
1944
2140
|
@complex model continuousAccessEvaluationSessionControl {
|
|
1945
2141
|
mode: continuousAccessEvaluationMode | null;
|
|
1946
2142
|
}
|
|
@@ -1966,6 +2162,9 @@ namespace reference.`microsoft.graph` {
|
|
|
1966
2162
|
resource: string | null;
|
|
1967
2163
|
}
|
|
1968
2164
|
|
|
2165
|
+
@complex model createAction {
|
|
2166
|
+
}
|
|
2167
|
+
|
|
1969
2168
|
/**
|
|
1970
2169
|
* Remote help - response we provide back to the helper after successfully creating an ACS session
|
|
1971
2170
|
*/
|
|
@@ -2063,6 +2262,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2063
2262
|
pfsGroup: perfectForwardSecrecyGroup | null;
|
|
2064
2263
|
}
|
|
2065
2264
|
|
|
2265
|
+
@complex model currencyColumn {
|
|
2266
|
+
locale: string | null;
|
|
2267
|
+
}
|
|
2268
|
+
|
|
2066
2269
|
@complex model customAppManagementApplicationConfiguration {
|
|
2067
2270
|
identifierUris: identifierUriConfiguration | null;
|
|
2068
2271
|
}
|
|
@@ -2071,6 +2274,14 @@ namespace reference.`microsoft.graph` {
|
|
|
2071
2274
|
applicationRestrictions: customAppManagementApplicationConfiguration | null;
|
|
2072
2275
|
}
|
|
2073
2276
|
|
|
2277
|
+
@complex model customExtensionCalloutResult extends authenticationEventHandlerResult {
|
|
2278
|
+
calloutDateTime: offsetDateTime | null;
|
|
2279
|
+
customExtensionId: string | null;
|
|
2280
|
+
errorCode: int32 | null;
|
|
2281
|
+
httpStatus: int32 | null;
|
|
2282
|
+
numberOfAttempts: int32 | null;
|
|
2283
|
+
}
|
|
2284
|
+
|
|
2074
2285
|
@abstract
|
|
2075
2286
|
@complex model customSecurityAttributeExemption {
|
|
2076
2287
|
id: string;
|
|
@@ -2141,6 +2352,11 @@ namespace reference.`microsoft.graph` {
|
|
|
2141
2352
|
hasValidWindowsLicense: boolean;
|
|
2142
2353
|
}
|
|
2143
2354
|
|
|
2355
|
+
@complex model dateTimeColumn {
|
|
2356
|
+
displayAs: string | null;
|
|
2357
|
+
format: string | null;
|
|
2358
|
+
}
|
|
2359
|
+
|
|
2144
2360
|
@complex model dateTimeTimeZone {
|
|
2145
2361
|
dateTime: string;
|
|
2146
2362
|
timeZone: string | null;
|
|
@@ -2150,9 +2366,20 @@ namespace reference.`microsoft.graph` {
|
|
|
2150
2366
|
daylightBias: int32 | null;
|
|
2151
2367
|
}
|
|
2152
2368
|
|
|
2369
|
+
@complex model defaultColumnValue {
|
|
2370
|
+
formula: string | null;
|
|
2371
|
+
value: string | null;
|
|
2372
|
+
}
|
|
2373
|
+
|
|
2153
2374
|
@complex model defaultInvitationRedemptionIdentityProviderConfiguration extends invitationRedemptionIdentityProviderConfiguration {
|
|
2154
2375
|
}
|
|
2155
2376
|
|
|
2377
|
+
@complex model defaultSharingLink {
|
|
2378
|
+
defaultToExistingAccess: boolean | null;
|
|
2379
|
+
role: sharingRole | null;
|
|
2380
|
+
scope: sharingScope | null;
|
|
2381
|
+
}
|
|
2382
|
+
|
|
2156
2383
|
@complex model defaultUserRolePermissions {
|
|
2157
2384
|
allowedToCreateApps: boolean;
|
|
2158
2385
|
allowedToCreateSecurityGroups: boolean;
|
|
@@ -2183,6 +2410,15 @@ namespace reference.`microsoft.graph` {
|
|
|
2183
2410
|
severeSeverity: defenderThreatAction;
|
|
2184
2411
|
}
|
|
2185
2412
|
|
|
2413
|
+
@complex model deleteAction {
|
|
2414
|
+
name: string | null;
|
|
2415
|
+
objectType: string | null;
|
|
2416
|
+
}
|
|
2417
|
+
|
|
2418
|
+
@complex model deleted {
|
|
2419
|
+
state: string | null;
|
|
2420
|
+
}
|
|
2421
|
+
|
|
2186
2422
|
/**
|
|
2187
2423
|
* Delete user from shared apple device action result
|
|
2188
2424
|
*/
|
|
@@ -2346,6 +2582,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2346
2582
|
onRetrievalDelayAutoRotatePasswordInHours: int32;
|
|
2347
2583
|
}
|
|
2348
2584
|
|
|
2585
|
+
@open
|
|
2586
|
+
@complex model detailsInfo {
|
|
2587
|
+
}
|
|
2588
|
+
|
|
2349
2589
|
/**
|
|
2350
2590
|
* Device action result
|
|
2351
2591
|
*/
|
|
@@ -2699,6 +2939,16 @@ namespace reference.`microsoft.graph` {
|
|
|
2699
2939
|
userPrincipalName: string | null;
|
|
2700
2940
|
}
|
|
2701
2941
|
|
|
2942
|
+
@complex model deviceDetail {
|
|
2943
|
+
browser: string | null;
|
|
2944
|
+
deviceId: string | null;
|
|
2945
|
+
displayName: string | null;
|
|
2946
|
+
isCompliant: boolean | null;
|
|
2947
|
+
isManaged: boolean | null;
|
|
2948
|
+
operatingSystem: string | null;
|
|
2949
|
+
trustType: string | null;
|
|
2950
|
+
}
|
|
2951
|
+
|
|
2702
2952
|
/**
|
|
2703
2953
|
* Platform specific enrollment restrictions
|
|
2704
2954
|
*/
|
|
@@ -4533,12 +4783,81 @@ namespace reference.`microsoft.graph` {
|
|
|
4533
4783
|
used: int32 | null;
|
|
4534
4784
|
}
|
|
4535
4785
|
|
|
4786
|
+
@complex model directSharingAbilities {
|
|
4787
|
+
addExistingExternalUsers: sharingOperationStatus | null;
|
|
4788
|
+
addInternalUsers: sharingOperationStatus | null;
|
|
4789
|
+
addNewExternalUsers: sharingOperationStatus | null;
|
|
4790
|
+
requestGrantAccess: sharingOperationStatus | null;
|
|
4791
|
+
}
|
|
4792
|
+
|
|
4793
|
+
@complex model displayNameLocalization {
|
|
4794
|
+
displayName: string | null;
|
|
4795
|
+
languageTag: string | null;
|
|
4796
|
+
}
|
|
4797
|
+
|
|
4798
|
+
@complex model documentSet {
|
|
4799
|
+
allowedContentTypes: contentTypeInfo[] | null;
|
|
4800
|
+
defaultContents: documentSetContent[] | null;
|
|
4801
|
+
propagateWelcomePageChanges: boolean | null;
|
|
4802
|
+
shouldPrefixNameToFile: boolean | null;
|
|
4803
|
+
welcomePageUrl: string | null;
|
|
4804
|
+
@references sharedColumns: columnDefinition[];
|
|
4805
|
+
@references welcomePageColumns: columnDefinition[];
|
|
4806
|
+
}
|
|
4807
|
+
|
|
4808
|
+
@complex model documentSetContent {
|
|
4809
|
+
contentType: contentTypeInfo | null;
|
|
4810
|
+
fileName: string | null;
|
|
4811
|
+
folderName: string | null;
|
|
4812
|
+
}
|
|
4813
|
+
|
|
4814
|
+
@complex model documentSetVersionItem {
|
|
4815
|
+
itemId: string | null;
|
|
4816
|
+
title: string | null;
|
|
4817
|
+
versionId: string | null;
|
|
4818
|
+
}
|
|
4819
|
+
|
|
4536
4820
|
@complex model domainState {
|
|
4537
4821
|
@computed lastActionDateTime: offsetDateTime | null;
|
|
4538
4822
|
operation: string | null;
|
|
4539
4823
|
status: string | null;
|
|
4540
4824
|
}
|
|
4541
4825
|
|
|
4826
|
+
@complex model driveItemAccessOperationsViewpoint {
|
|
4827
|
+
canComment: boolean | null;
|
|
4828
|
+
canCreateFile: boolean | null;
|
|
4829
|
+
canCreateFolder: boolean | null;
|
|
4830
|
+
canDelete: boolean | null;
|
|
4831
|
+
canDownload: boolean | null;
|
|
4832
|
+
canRead: boolean | null;
|
|
4833
|
+
canUpdate: boolean | null;
|
|
4834
|
+
}
|
|
4835
|
+
|
|
4836
|
+
@complex model driveItemSource {
|
|
4837
|
+
application: driveItemSourceApplication | null;
|
|
4838
|
+
externalId: string | null;
|
|
4839
|
+
}
|
|
4840
|
+
|
|
4841
|
+
@complex model driveItemUploadableProperties {
|
|
4842
|
+
description: string | null;
|
|
4843
|
+
driveItemSource: driveItemSource | null;
|
|
4844
|
+
fileSize: int64 | null;
|
|
4845
|
+
fileSystemInfo: fileSystemInfo | null;
|
|
4846
|
+
mediaSource: mediaSource | null;
|
|
4847
|
+
name: string | null;
|
|
4848
|
+
}
|
|
4849
|
+
|
|
4850
|
+
@complex model driveItemViewpoint {
|
|
4851
|
+
accessOperations: driveItemAccessOperationsViewpoint | null;
|
|
4852
|
+
sharing: sharingViewpoint | null;
|
|
4853
|
+
}
|
|
4854
|
+
|
|
4855
|
+
@complex model driveRecipient {
|
|
4856
|
+
`alias`: string | null;
|
|
4857
|
+
email: string | null;
|
|
4858
|
+
objectId: string | null;
|
|
4859
|
+
}
|
|
4860
|
+
|
|
4542
4861
|
/**
|
|
4543
4862
|
* The home button configuration base class used to identify the available options
|
|
4544
4863
|
*/
|
|
@@ -4601,6 +4920,9 @@ namespace reference.`microsoft.graph` {
|
|
|
4601
4920
|
edgeSearchEngineOpenSearchXmlUrl: string;
|
|
4602
4921
|
}
|
|
4603
4922
|
|
|
4923
|
+
@complex model editAction {
|
|
4924
|
+
}
|
|
4925
|
+
|
|
4604
4926
|
@complex model educationalActivityDetail {
|
|
4605
4927
|
abbreviation: string | null;
|
|
4606
4928
|
activities: string[] | null;
|
|
@@ -4910,6 +5232,10 @@ namespace reference.`microsoft.graph` {
|
|
|
4910
5232
|
type: string | null;
|
|
4911
5233
|
}
|
|
4912
5234
|
|
|
5235
|
+
@complex model extractSensitivityLabelsResult {
|
|
5236
|
+
labels: sensitivityLabelAssignment[] | null;
|
|
5237
|
+
}
|
|
5238
|
+
|
|
4913
5239
|
@complex model featureTarget {
|
|
4914
5240
|
id: string | null;
|
|
4915
5241
|
targetType: featureTargetType | null;
|
|
@@ -4926,6 +5252,13 @@ namespace reference.`microsoft.graph` {
|
|
|
4926
5252
|
isEnforced: boolean | null;
|
|
4927
5253
|
}
|
|
4928
5254
|
|
|
5255
|
+
@complex model file {
|
|
5256
|
+
archiveStatus: fileArchiveStatus;
|
|
5257
|
+
hashes: hashes | null;
|
|
5258
|
+
mimeType: string | null;
|
|
5259
|
+
processingMetadata: boolean | null;
|
|
5260
|
+
}
|
|
5261
|
+
|
|
4929
5262
|
/**
|
|
4930
5263
|
* Contains properties for file encryption information for the content version of a line-of-business app.
|
|
4931
5264
|
*/
|
|
@@ -4960,6 +5293,76 @@ namespace reference.`microsoft.graph` {
|
|
|
4960
5293
|
profileIdentifier: string | null;
|
|
4961
5294
|
}
|
|
4962
5295
|
|
|
5296
|
+
@open
|
|
5297
|
+
@complex model fileStorageContainerCustomPropertyDictionary extends Dictionary {
|
|
5298
|
+
}
|
|
5299
|
+
|
|
5300
|
+
@complex model fileStorageContainerCustomPropertyValue {
|
|
5301
|
+
isSearchable: boolean | null;
|
|
5302
|
+
value: string;
|
|
5303
|
+
}
|
|
5304
|
+
|
|
5305
|
+
@complex model fileStorageContainerSettings {
|
|
5306
|
+
isItemVersioningEnabled: boolean | null;
|
|
5307
|
+
isOcrEnabled: boolean | null;
|
|
5308
|
+
itemDefaultSensitivityLabelId: string | null;
|
|
5309
|
+
itemMajorVersionLimit: int32 | null;
|
|
5310
|
+
}
|
|
5311
|
+
|
|
5312
|
+
@complex model fileStorageContainerTypeAgentSettings {
|
|
5313
|
+
chatEmbedAllowedHosts: string[];
|
|
5314
|
+
}
|
|
5315
|
+
|
|
5316
|
+
@complex model fileStorageContainerTypeRegistrationSettings {
|
|
5317
|
+
agent: fileStorageContainerTypeAgentSettings | null;
|
|
5318
|
+
isDiscoverabilityEnabled: boolean | null;
|
|
5319
|
+
isItemVersioningEnabled: boolean | null;
|
|
5320
|
+
isSearchEnabled: boolean | null;
|
|
5321
|
+
isSharingRestricted: boolean | null;
|
|
5322
|
+
itemMajorVersionLimit: int64 | null;
|
|
5323
|
+
maxStoragePerContainerInBytes: int64 | null;
|
|
5324
|
+
sharingCapability: sharingCapabilities | null;
|
|
5325
|
+
urlTemplate: string | null;
|
|
5326
|
+
}
|
|
5327
|
+
|
|
5328
|
+
@complex model fileStorageContainerTypeSettings {
|
|
5329
|
+
agent: fileStorageContainerTypeAgentSettings | null;
|
|
5330
|
+
consumingTenantOverridables: fileStorageContainerTypeSettingsOverride | null;
|
|
5331
|
+
isDiscoverabilityEnabled: boolean | null;
|
|
5332
|
+
isItemVersioningEnabled: boolean | null;
|
|
5333
|
+
isSearchEnabled: boolean | null;
|
|
5334
|
+
isSharingRestricted: boolean | null;
|
|
5335
|
+
itemMajorVersionLimit: int64 | null;
|
|
5336
|
+
maxStoragePerContainerInBytes: int64 | null;
|
|
5337
|
+
sharingCapability: sharingCapabilities | null;
|
|
5338
|
+
urlTemplate: string | null;
|
|
5339
|
+
}
|
|
5340
|
+
|
|
5341
|
+
@complex model fileStorageContainerViewpoint {
|
|
5342
|
+
effectiveRole: string;
|
|
5343
|
+
}
|
|
5344
|
+
|
|
5345
|
+
@complex model fileSystemInfo {
|
|
5346
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
5347
|
+
@computed lastAccessedDateTime: offsetDateTime | null;
|
|
5348
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
5349
|
+
}
|
|
5350
|
+
|
|
5351
|
+
@open
|
|
5352
|
+
@complex model flexSchemaContainer {
|
|
5353
|
+
}
|
|
5354
|
+
|
|
5355
|
+
@complex model folder {
|
|
5356
|
+
childCount: int32 | null;
|
|
5357
|
+
view: folderView | null;
|
|
5358
|
+
}
|
|
5359
|
+
|
|
5360
|
+
@complex model folderView {
|
|
5361
|
+
sortBy: string | null;
|
|
5362
|
+
sortOrder: string | null;
|
|
5363
|
+
viewType: string | null;
|
|
5364
|
+
}
|
|
5365
|
+
|
|
4963
5366
|
@complex model followupFlag {
|
|
4964
5367
|
completedDateTime: dateTimeTimeZone | null;
|
|
4965
5368
|
dueDateTime: dateTimeTimeZone | null;
|
|
@@ -4983,6 +5386,9 @@ namespace reference.`microsoft.graph` {
|
|
|
4983
5386
|
longitude: float64 | null;
|
|
4984
5387
|
}
|
|
4985
5388
|
|
|
5389
|
+
@complex model geolocationColumn {
|
|
5390
|
+
}
|
|
5391
|
+
|
|
4986
5392
|
/**
|
|
4987
5393
|
* Represents an assignment to a group.
|
|
4988
5394
|
*/
|
|
@@ -4993,6 +5399,11 @@ namespace reference.`microsoft.graph` {
|
|
|
4993
5399
|
groupId: string | null;
|
|
4994
5400
|
}
|
|
4995
5401
|
|
|
5402
|
+
@open
|
|
5403
|
+
@complex model groupIdentity extends identity {
|
|
5404
|
+
mailNickname: string | null;
|
|
5405
|
+
}
|
|
5406
|
+
|
|
4996
5407
|
@complex model groupPolicyPresentationDropdownListItem {
|
|
4997
5408
|
/**
|
|
4998
5409
|
* Localized display name for the drop-down list item.
|
|
@@ -5200,6 +5611,13 @@ namespace reference.`microsoft.graph` {
|
|
|
5200
5611
|
wiredIPv4Addresses: string[] | null;
|
|
5201
5612
|
}
|
|
5202
5613
|
|
|
5614
|
+
@complex model hashes {
|
|
5615
|
+
crc32Hash: string | null;
|
|
5616
|
+
quickXorHash: string | null;
|
|
5617
|
+
sha1Hash: string | null;
|
|
5618
|
+
sha256Hash: string | null;
|
|
5619
|
+
}
|
|
5620
|
+
|
|
5203
5621
|
/**
|
|
5204
5622
|
* A class containing the result of HasPayloadLinks action.
|
|
5205
5623
|
*/
|
|
@@ -5228,6 +5646,10 @@ namespace reference.`microsoft.graph` {
|
|
|
5228
5646
|
updateWindow: updateWindow | null;
|
|
5229
5647
|
}
|
|
5230
5648
|
|
|
5649
|
+
@complex model hyperlinkOrPictureColumn {
|
|
5650
|
+
isPicture: boolean | null;
|
|
5651
|
+
}
|
|
5652
|
+
|
|
5231
5653
|
@complex model identifierUriConfiguration {
|
|
5232
5654
|
nonDefaultUriAddition: identifierUriRestriction | null;
|
|
5233
5655
|
uriAdditionWithoutUniqueTenantIdentifier: identifierUriRestriction | null;
|
|
@@ -5248,25 +5670,30 @@ namespace reference.`microsoft.graph` {
|
|
|
5248
5670
|
id: string | null;
|
|
5249
5671
|
}
|
|
5250
5672
|
|
|
5251
|
-
|
|
5252
|
-
|
|
5253
|
-
|
|
5673
|
+
@complex model identityInput {
|
|
5674
|
+
`alias`: string | null;
|
|
5675
|
+
email: string | null;
|
|
5676
|
+
objectId: string | null;
|
|
5677
|
+
}
|
|
5678
|
+
|
|
5254
5679
|
@open
|
|
5255
5680
|
@complex model identitySet {
|
|
5256
|
-
/**
|
|
5257
|
-
* The Identity of the Application. This property is read-only.
|
|
5258
|
-
*/
|
|
5259
5681
|
application: identity | null;
|
|
5260
|
-
/**
|
|
5261
|
-
* The Identity of the Device. This property is read-only.
|
|
5262
|
-
*/
|
|
5263
5682
|
device: identity | null;
|
|
5264
|
-
/**
|
|
5265
|
-
* The Identity of the User. This property is read-only.
|
|
5266
|
-
*/
|
|
5267
5683
|
user: identity | null;
|
|
5268
5684
|
}
|
|
5269
5685
|
|
|
5686
|
+
@complex model idleSessionSignOut {
|
|
5687
|
+
isEnabled: boolean | null;
|
|
5688
|
+
signOutAfterInSeconds: int64 | null;
|
|
5689
|
+
warnAfterInSeconds: int64 | null;
|
|
5690
|
+
}
|
|
5691
|
+
|
|
5692
|
+
@complex model image {
|
|
5693
|
+
height: int32 | null;
|
|
5694
|
+
width: int32 | null;
|
|
5695
|
+
}
|
|
5696
|
+
|
|
5270
5697
|
@complex model implicitGrantSettings {
|
|
5271
5698
|
enableAccessTokenIssuance: boolean | null;
|
|
5272
5699
|
enableIdTokenIssuance: boolean | null;
|
|
@@ -5301,6 +5728,12 @@ namespace reference.`microsoft.graph` {
|
|
|
5301
5728
|
targetType: authenticationMethodTargetType;
|
|
5302
5729
|
}
|
|
5303
5730
|
|
|
5731
|
+
@open
|
|
5732
|
+
@complex model incompleteData {
|
|
5733
|
+
missingDataBeforeDateTime: offsetDateTime | null;
|
|
5734
|
+
wasThrottled: boolean | null;
|
|
5735
|
+
}
|
|
5736
|
+
|
|
5304
5737
|
@complex model inferenceData {
|
|
5305
5738
|
confidenceScore: float64 | null;
|
|
5306
5739
|
userHasVerifiedAccuracy: boolean | null;
|
|
@@ -5319,11 +5752,21 @@ namespace reference.`microsoft.graph` {
|
|
|
5319
5752
|
singleSignOnDocumentationUrl: string | null;
|
|
5320
5753
|
}
|
|
5321
5754
|
|
|
5755
|
+
@complex model informationBarrier {
|
|
5756
|
+
mode: informationBarrierMode;
|
|
5757
|
+
segmentIds: guid;
|
|
5758
|
+
}
|
|
5759
|
+
|
|
5322
5760
|
@abstract
|
|
5323
5761
|
@complex model inheritableScopes {
|
|
5324
5762
|
kind: scopeCollectionKind;
|
|
5325
5763
|
}
|
|
5326
5764
|
|
|
5765
|
+
@open
|
|
5766
|
+
@complex model initiator extends identity {
|
|
5767
|
+
initiatorType: initiatorType | null;
|
|
5768
|
+
}
|
|
5769
|
+
|
|
5327
5770
|
/**
|
|
5328
5771
|
* The value in an user experience analytics insight.
|
|
5329
5772
|
*/
|
|
@@ -5356,6 +5799,17 @@ namespace reference.`microsoft.graph` {
|
|
|
5356
5799
|
webUrl: string | null;
|
|
5357
5800
|
}
|
|
5358
5801
|
|
|
5802
|
+
@complex model integerRange {
|
|
5803
|
+
end: int64 | null;
|
|
5804
|
+
|
|
5805
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
5806
|
+
maximum: int64 | null;
|
|
5807
|
+
|
|
5808
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
5809
|
+
minimum: int64 | null;
|
|
5810
|
+
start: int64 | null;
|
|
5811
|
+
}
|
|
5812
|
+
|
|
5359
5813
|
@complex model internetMessageHeader {
|
|
5360
5814
|
name: string | null;
|
|
5361
5815
|
value: string | null;
|
|
@@ -6222,14 +6676,53 @@ namespace reference.`microsoft.graph` {
|
|
|
6222
6676
|
upperAddress: string;
|
|
6223
6677
|
}
|
|
6224
6678
|
|
|
6679
|
+
@complex model itemActionSet {
|
|
6680
|
+
comment: commentAction | null;
|
|
6681
|
+
create: createAction | null;
|
|
6682
|
+
delete: deleteAction | null;
|
|
6683
|
+
edit: editAction | null;
|
|
6684
|
+
mention: mentionAction | null;
|
|
6685
|
+
move: moveAction | null;
|
|
6686
|
+
rename: renameAction | null;
|
|
6687
|
+
restore: restoreAction | null;
|
|
6688
|
+
share: shareAction | null;
|
|
6689
|
+
version: versionAction | null;
|
|
6690
|
+
}
|
|
6691
|
+
|
|
6692
|
+
@open
|
|
6693
|
+
@complex model itemActionStat {
|
|
6694
|
+
actionCount: int32 | null;
|
|
6695
|
+
actorCount: int32 | null;
|
|
6696
|
+
}
|
|
6697
|
+
|
|
6698
|
+
@complex model itemActivityTimeSet {
|
|
6699
|
+
@computed lastRecordedDateTime: offsetDateTime | null;
|
|
6700
|
+
observedDateTime: offsetDateTime | null;
|
|
6701
|
+
recordedDateTime: offsetDateTime | null;
|
|
6702
|
+
}
|
|
6703
|
+
|
|
6225
6704
|
@complex model itemBody {
|
|
6226
6705
|
content: string | null;
|
|
6227
6706
|
contentType: bodyType | null;
|
|
6228
6707
|
}
|
|
6229
6708
|
|
|
6230
|
-
|
|
6231
|
-
|
|
6232
|
-
|
|
6709
|
+
@complex model itemPreviewInfo {
|
|
6710
|
+
getUrl: string | null;
|
|
6711
|
+
postParameters: string | null;
|
|
6712
|
+
postUrl: string | null;
|
|
6713
|
+
}
|
|
6714
|
+
|
|
6715
|
+
@complex model itemReference {
|
|
6716
|
+
driveId: string | null;
|
|
6717
|
+
driveType: string | null;
|
|
6718
|
+
id: string | null;
|
|
6719
|
+
name: string | null;
|
|
6720
|
+
path: string | null;
|
|
6721
|
+
shareId: string | null;
|
|
6722
|
+
sharepointIds: sharepointIds | null;
|
|
6723
|
+
siteId: string | null;
|
|
6724
|
+
}
|
|
6725
|
+
|
|
6233
6726
|
@complex model Json {
|
|
6234
6727
|
}
|
|
6235
6728
|
|
|
@@ -6425,6 +6918,11 @@ namespace reference.`microsoft.graph` {
|
|
|
6425
6918
|
value: string | null;
|
|
6426
6919
|
}
|
|
6427
6920
|
|
|
6921
|
+
@complex model lastSignIn {
|
|
6922
|
+
interactiveDateTime: offsetDateTime | null;
|
|
6923
|
+
nonInteractiveDateTime: offsetDateTime | null;
|
|
6924
|
+
}
|
|
6925
|
+
|
|
6428
6926
|
@complex model licenseAssignmentState {
|
|
6429
6927
|
assignedByGroup: string | null;
|
|
6430
6928
|
disabledPlans: guid | null;
|
|
@@ -6444,6 +6942,39 @@ namespace reference.`microsoft.graph` {
|
|
|
6444
6942
|
warning: int32 | null;
|
|
6445
6943
|
}
|
|
6446
6944
|
|
|
6945
|
+
@complex model linkableIdentifiers {
|
|
6946
|
+
deviceId: string | null;
|
|
6947
|
+
sessionId: string | null;
|
|
6948
|
+
tokenDetails: tokenDetails | null;
|
|
6949
|
+
}
|
|
6950
|
+
|
|
6951
|
+
@complex model linkRoleAbilities {
|
|
6952
|
+
addExistingExternalUsers: sharingOperationStatus | null;
|
|
6953
|
+
addNewExternalUsers: sharingOperationStatus | null;
|
|
6954
|
+
applyVariants: sharingLinkVariants | null;
|
|
6955
|
+
createLink: sharingOperationStatus | null;
|
|
6956
|
+
deleteLink: sharingOperationStatus | null;
|
|
6957
|
+
linkAllowsExternalUsers: sharingOperationStatus | null;
|
|
6958
|
+
linkExpiration: sharingLinkExpirationStatus | null;
|
|
6959
|
+
retrieveLink: sharingOperationStatus | null;
|
|
6960
|
+
updateLink: sharingOperationStatus | null;
|
|
6961
|
+
}
|
|
6962
|
+
|
|
6963
|
+
@complex model linkScopeAbilities {
|
|
6964
|
+
blockDownloadLinkAbilities: linkRoleAbilities | null;
|
|
6965
|
+
editLinkAbilities: linkRoleAbilities;
|
|
6966
|
+
manageListLinkAbilities: linkRoleAbilities | null;
|
|
6967
|
+
readLinkAbilities: linkRoleAbilities;
|
|
6968
|
+
reviewLinkAbilities: linkRoleAbilities | null;
|
|
6969
|
+
submitOnlyLinkAbilities: linkRoleAbilities | null;
|
|
6970
|
+
}
|
|
6971
|
+
|
|
6972
|
+
@complex model listInfo {
|
|
6973
|
+
contentTypesEnabled: boolean | null;
|
|
6974
|
+
hidden: boolean | null;
|
|
6975
|
+
template: string | null;
|
|
6976
|
+
}
|
|
6977
|
+
|
|
6447
6978
|
@complex model localAdminPasswordSettings {
|
|
6448
6979
|
isEnabled: boolean | null;
|
|
6449
6980
|
}
|
|
@@ -6489,6 +7020,13 @@ namespace reference.`microsoft.graph` {
|
|
|
6489
7020
|
resolveAvailability: boolean | null;
|
|
6490
7021
|
}
|
|
6491
7022
|
|
|
7023
|
+
@complex model lockInfo {
|
|
7024
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
7025
|
+
expirationDateTime: offsetDateTime | null;
|
|
7026
|
+
lockType: lockType;
|
|
7027
|
+
owners: userIdentity[];
|
|
7028
|
+
}
|
|
7029
|
+
|
|
6492
7030
|
/**
|
|
6493
7031
|
* Logged On User
|
|
6494
7032
|
*/
|
|
@@ -6524,6 +7062,14 @@ namespace reference.`microsoft.graph` {
|
|
|
6524
7062
|
hideTermsOfUse: boolean | null;
|
|
6525
7063
|
}
|
|
6526
7064
|
|
|
7065
|
+
@complex model lookupColumn {
|
|
7066
|
+
allowMultipleValues: boolean | null;
|
|
7067
|
+
allowUnlimitedLength: boolean | null;
|
|
7068
|
+
columnName: string | null;
|
|
7069
|
+
listId: string | null;
|
|
7070
|
+
primaryLookupColumnId: string | null;
|
|
7071
|
+
}
|
|
7072
|
+
|
|
6527
7073
|
/**
|
|
6528
7074
|
* The identifier for a Mac app.
|
|
6529
7075
|
*/
|
|
@@ -7187,6 +7733,10 @@ namespace reference.`microsoft.graph` {
|
|
|
7187
7733
|
message: string | null;
|
|
7188
7734
|
}
|
|
7189
7735
|
|
|
7736
|
+
@complex model malware {
|
|
7737
|
+
description: string | null;
|
|
7738
|
+
}
|
|
7739
|
+
|
|
7190
7740
|
/**
|
|
7191
7741
|
* Represents diagnostics status.
|
|
7192
7742
|
*/
|
|
@@ -7375,6 +7925,13 @@ namespace reference.`microsoft.graph` {
|
|
|
7375
7925
|
releaseYear: int32;
|
|
7376
7926
|
}
|
|
7377
7927
|
|
|
7928
|
+
@complex model managedIdentity {
|
|
7929
|
+
associatedResourceId: string | null;
|
|
7930
|
+
federatedTokenId: string | null;
|
|
7931
|
+
federatedTokenIssuer: string | null;
|
|
7932
|
+
msiType: msiType | null;
|
|
7933
|
+
}
|
|
7934
|
+
|
|
7378
7935
|
/**
|
|
7379
7936
|
* The request parameter for requesting Android Managed Play Store app configuration schema.
|
|
7380
7937
|
*/
|
|
@@ -7396,6 +7953,11 @@ namespace reference.`microsoft.graph` {
|
|
|
7396
7953
|
thumbprint: string | null;
|
|
7397
7954
|
}
|
|
7398
7955
|
|
|
7956
|
+
@complex model media {
|
|
7957
|
+
isTranscriptionShown: boolean | null;
|
|
7958
|
+
mediaSource: mediaSource | null;
|
|
7959
|
+
}
|
|
7960
|
+
|
|
7399
7961
|
@complex model mediaContentRatingAustralia {
|
|
7400
7962
|
/**
|
|
7401
7963
|
* Movies rating selected for Australia
|
|
@@ -7495,6 +8057,10 @@ namespace reference.`microsoft.graph` {
|
|
|
7495
8057
|
tvRating: ratingUnitedStatesTelevisionType;
|
|
7496
8058
|
}
|
|
7497
8059
|
|
|
8060
|
+
@complex model mediaSource {
|
|
8061
|
+
contentCategory: mediaSourceContentCategory | null;
|
|
8062
|
+
}
|
|
8063
|
+
|
|
7498
8064
|
@complex model meetingTimeSuggestion {
|
|
7499
8065
|
attendeeAvailability: attendeeAvailability[] | null;
|
|
7500
8066
|
confidence: float64 | null;
|
|
@@ -7520,6 +8086,10 @@ namespace reference.`microsoft.graph` {
|
|
|
7520
8086
|
status: MembershipRuleProcessingStatusDetails | null;
|
|
7521
8087
|
}
|
|
7522
8088
|
|
|
8089
|
+
@complex model mentionAction {
|
|
8090
|
+
mentionees: identitySet[] | null;
|
|
8091
|
+
}
|
|
8092
|
+
|
|
7523
8093
|
@complex model mentionsPreview {
|
|
7524
8094
|
isMentioned: boolean | null;
|
|
7525
8095
|
}
|
|
@@ -7571,6 +8141,16 @@ namespace reference.`microsoft.graph` {
|
|
|
7571
8141
|
withinSizeRange: sizeRange | null;
|
|
7572
8142
|
}
|
|
7573
8143
|
|
|
8144
|
+
@complex model metaDataKeyStringPair {
|
|
8145
|
+
key: string | null;
|
|
8146
|
+
value: string | null;
|
|
8147
|
+
}
|
|
8148
|
+
|
|
8149
|
+
@complex model metaDataKeyValuePair {
|
|
8150
|
+
key: string | null;
|
|
8151
|
+
value: Json | null;
|
|
8152
|
+
}
|
|
8153
|
+
|
|
7574
8154
|
/**
|
|
7575
8155
|
* Metric Time series data point
|
|
7576
8156
|
*/
|
|
@@ -7585,6 +8165,11 @@ namespace reference.`microsoft.graph` {
|
|
|
7585
8165
|
value: int64;
|
|
7586
8166
|
}
|
|
7587
8167
|
|
|
8168
|
+
@complex model mfaDetail {
|
|
8169
|
+
authDetail: string | null;
|
|
8170
|
+
authMethod: string | null;
|
|
8171
|
+
}
|
|
8172
|
+
|
|
7588
8173
|
@complex model microsoftAuthenticatorFeatureSettings {
|
|
7589
8174
|
companionAppAllowedState: authenticationMethodFeatureConfiguration | null;
|
|
7590
8175
|
displayAppInformationRequiredState: authenticationMethodFeatureConfiguration | null;
|
|
@@ -7782,12 +8367,35 @@ namespace reference.`microsoft.graph` {
|
|
|
7782
8367
|
troubleshootingErrorDetails: deviceManagementTroubleshootingErrorDetails | null;
|
|
7783
8368
|
}
|
|
7784
8369
|
|
|
8370
|
+
@complex model modifiedProperty {
|
|
8371
|
+
displayName: string | null;
|
|
8372
|
+
newValue: string | null;
|
|
8373
|
+
oldValue: string | null;
|
|
8374
|
+
}
|
|
8375
|
+
|
|
8376
|
+
@complex model moveAction {
|
|
8377
|
+
from: string | null;
|
|
8378
|
+
to: string | null;
|
|
8379
|
+
}
|
|
8380
|
+
|
|
8381
|
+
@complex model networkLocationDetail {
|
|
8382
|
+
networkNames: string[] | null;
|
|
8383
|
+
networkType: networkType | null;
|
|
8384
|
+
}
|
|
8385
|
+
|
|
7785
8386
|
@complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
7786
8387
|
}
|
|
7787
8388
|
|
|
7788
8389
|
@complex model noScopes extends inheritableScopes {
|
|
7789
8390
|
}
|
|
7790
8391
|
|
|
8392
|
+
@complex model numberColumn {
|
|
8393
|
+
decimalPlaces: string | null;
|
|
8394
|
+
displayAs: string | null;
|
|
8395
|
+
maximum: float64 | null;
|
|
8396
|
+
minimum: float64 | null;
|
|
8397
|
+
}
|
|
8398
|
+
|
|
7791
8399
|
/**
|
|
7792
8400
|
* Number Range definition.
|
|
7793
8401
|
*/
|
|
@@ -7943,6 +8551,7 @@ namespace reference.`microsoft.graph` {
|
|
|
7943
8551
|
}
|
|
7944
8552
|
|
|
7945
8553
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
8554
|
+
allowOnPremUpdateOfOnPremisesObjectIdentifierEnabled: boolean | null;
|
|
7946
8555
|
blockCloudObjectTakeoverThroughHardMatchEnabled: boolean | null;
|
|
7947
8556
|
blockSoftMatchEnabled: boolean | null;
|
|
7948
8557
|
bypassDirSyncOverridesEnabled: boolean | null;
|
|
@@ -8189,6 +8798,10 @@ namespace reference.`microsoft.graph` {
|
|
|
8189
8798
|
userType: windowsUserType;
|
|
8190
8799
|
}
|
|
8191
8800
|
|
|
8801
|
+
@complex model `package` {
|
|
8802
|
+
type: string | null;
|
|
8803
|
+
}
|
|
8804
|
+
|
|
8192
8805
|
@complex model parentalControlSettings {
|
|
8193
8806
|
countriesBlockedForMinors: string[] | null;
|
|
8194
8807
|
legalAgeGroupRule: string | null;
|
|
@@ -8269,6 +8882,14 @@ namespace reference.`microsoft.graph` {
|
|
|
8269
8882
|
payloadType: associatedAssignmentPayloadType;
|
|
8270
8883
|
}
|
|
8271
8884
|
|
|
8885
|
+
@complex model pendingContentUpdate {
|
|
8886
|
+
queuedDateTime: offsetDateTime | null;
|
|
8887
|
+
}
|
|
8888
|
+
|
|
8889
|
+
@complex model pendingOperations {
|
|
8890
|
+
pendingContentUpdate: pendingContentUpdate | null;
|
|
8891
|
+
}
|
|
8892
|
+
|
|
8272
8893
|
@complex model permissionScope {
|
|
8273
8894
|
adminConsentDescription: string | null;
|
|
8274
8895
|
adminConsentDisplayName: string | null;
|
|
@@ -8301,6 +8922,12 @@ namespace reference.`microsoft.graph` {
|
|
|
8301
8922
|
middle: string | null;
|
|
8302
8923
|
}
|
|
8303
8924
|
|
|
8925
|
+
@complex model personOrGroupColumn {
|
|
8926
|
+
allowMultipleSelection: boolean | null;
|
|
8927
|
+
chooseFromType: string | null;
|
|
8928
|
+
displayAs: string | null;
|
|
8929
|
+
}
|
|
8930
|
+
|
|
8304
8931
|
@complex model perTenantTrafficSegmentsOverride {
|
|
8305
8932
|
percentage: int32;
|
|
8306
8933
|
tenantId: guid;
|
|
@@ -8311,6 +8938,18 @@ namespace reference.`microsoft.graph` {
|
|
|
8311
8938
|
type: phoneType | null;
|
|
8312
8939
|
}
|
|
8313
8940
|
|
|
8941
|
+
@complex model photo {
|
|
8942
|
+
cameraMake: string | null;
|
|
8943
|
+
cameraModel: string | null;
|
|
8944
|
+
exposureDenominator: float64 | null;
|
|
8945
|
+
exposureNumerator: float64 | null;
|
|
8946
|
+
fNumber: float64 | null;
|
|
8947
|
+
focalLength: float64 | null;
|
|
8948
|
+
iso: int32 | null;
|
|
8949
|
+
orientation: int16 | null;
|
|
8950
|
+
takenDateTime: offsetDateTime | null;
|
|
8951
|
+
}
|
|
8952
|
+
|
|
8314
8953
|
@privatePreview("photoEditPolicy")
|
|
8315
8954
|
@complex model photoAllowedOperations {
|
|
8316
8955
|
}
|
|
@@ -8711,23 +9350,77 @@ namespace reference.`microsoft.graph` {
|
|
|
8711
9350
|
statementUrl: string | null;
|
|
8712
9351
|
}
|
|
8713
9352
|
|
|
9353
|
+
@complex model privateLinkDetails {
|
|
9354
|
+
policyId: string | null;
|
|
9355
|
+
policyName: string | null;
|
|
9356
|
+
policyTenantId: string | null;
|
|
9357
|
+
resourceId: string | null;
|
|
9358
|
+
}
|
|
9359
|
+
|
|
9360
|
+
@complex model profileCardAnnotation {
|
|
9361
|
+
displayName: string | null;
|
|
9362
|
+
localizations: displayNameLocalization[] | null;
|
|
9363
|
+
}
|
|
9364
|
+
|
|
8714
9365
|
@complex model profileSourceAnnotation {
|
|
8715
9366
|
isDefaultSource: boolean | null;
|
|
8716
9367
|
properties: string[] | null;
|
|
8717
9368
|
sourceId: string | null;
|
|
8718
9369
|
}
|
|
8719
9370
|
|
|
9371
|
+
@complex model profileSourceLocalization {
|
|
9372
|
+
displayName: string | null;
|
|
9373
|
+
languageTag: string | null;
|
|
9374
|
+
webUrl: string | null;
|
|
9375
|
+
}
|
|
9376
|
+
|
|
8720
9377
|
@complex model propertyToEvaluate {
|
|
8721
9378
|
propertyName: string | null;
|
|
8722
9379
|
propertyValue: string | null;
|
|
8723
9380
|
}
|
|
8724
9381
|
|
|
9382
|
+
@open
|
|
9383
|
+
@complex model provisionedIdentity extends identity {
|
|
9384
|
+
details: detailsInfo | null;
|
|
9385
|
+
identityType: string | null;
|
|
9386
|
+
}
|
|
9387
|
+
|
|
8725
9388
|
@complex model provisionedPlan {
|
|
8726
9389
|
capabilityStatus: string | null;
|
|
8727
9390
|
provisioningStatus: string | null;
|
|
8728
9391
|
service: string | null;
|
|
8729
9392
|
}
|
|
8730
9393
|
|
|
9394
|
+
@complex model provisioningErrorInfo {
|
|
9395
|
+
additionalDetails: string | null;
|
|
9396
|
+
errorCategory: provisioningStatusErrorCategory | null;
|
|
9397
|
+
errorCode: string | null;
|
|
9398
|
+
reason: string | null;
|
|
9399
|
+
recommendedAction: string | null;
|
|
9400
|
+
}
|
|
9401
|
+
|
|
9402
|
+
@open
|
|
9403
|
+
@complex model provisioningServicePrincipal extends identity {
|
|
9404
|
+
}
|
|
9405
|
+
|
|
9406
|
+
@complex model provisioningStatusInfo {
|
|
9407
|
+
errorInformation: provisioningErrorInfo | null;
|
|
9408
|
+
status: provisioningResult | null;
|
|
9409
|
+
}
|
|
9410
|
+
|
|
9411
|
+
@complex model provisioningStep {
|
|
9412
|
+
description: string | null;
|
|
9413
|
+
details: detailsInfo | null;
|
|
9414
|
+
name: string | null;
|
|
9415
|
+
provisioningStepType: provisioningStepType | null;
|
|
9416
|
+
status: provisioningResult | null;
|
|
9417
|
+
}
|
|
9418
|
+
|
|
9419
|
+
@open
|
|
9420
|
+
@complex model provisioningSystem extends identity {
|
|
9421
|
+
details: detailsInfo | null;
|
|
9422
|
+
}
|
|
9423
|
+
|
|
8731
9424
|
/**
|
|
8732
9425
|
* Proxied Domain
|
|
8733
9426
|
*/
|
|
@@ -8742,10 +9435,38 @@ namespace reference.`microsoft.graph` {
|
|
|
8742
9435
|
proxy: string | null;
|
|
8743
9436
|
}
|
|
8744
9437
|
|
|
9438
|
+
@complex model publicationFacet {
|
|
9439
|
+
checkedOutBy: identitySet | null;
|
|
9440
|
+
level: string | null;
|
|
9441
|
+
versionId: string | null;
|
|
9442
|
+
}
|
|
9443
|
+
|
|
8745
9444
|
@complex model publicClientApplication {
|
|
8746
9445
|
redirectUris: string[];
|
|
8747
9446
|
}
|
|
8748
9447
|
|
|
9448
|
+
@complex model publicError {
|
|
9449
|
+
code: string | null;
|
|
9450
|
+
details: publicErrorDetail[] | null;
|
|
9451
|
+
innerError: publicInnerError | null;
|
|
9452
|
+
message: string | null;
|
|
9453
|
+
target: string | null;
|
|
9454
|
+
}
|
|
9455
|
+
|
|
9456
|
+
@complex model publicErrorDetail {
|
|
9457
|
+
code: string | null;
|
|
9458
|
+
message: string | null;
|
|
9459
|
+
target: string | null;
|
|
9460
|
+
}
|
|
9461
|
+
|
|
9462
|
+
@open
|
|
9463
|
+
@complex model publicInnerError {
|
|
9464
|
+
code: string | null;
|
|
9465
|
+
details: publicErrorDetail[] | null;
|
|
9466
|
+
message: string | null;
|
|
9467
|
+
target: string | null;
|
|
9468
|
+
}
|
|
9469
|
+
|
|
8749
9470
|
@complex model qrCodeImageDetails {
|
|
8750
9471
|
binaryValue: binary | null;
|
|
8751
9472
|
errorCorrectionLevel: errorCorrectionLevel | null;
|
|
@@ -8753,11 +9474,26 @@ namespace reference.`microsoft.graph` {
|
|
|
8753
9474
|
version: int32 | null;
|
|
8754
9475
|
}
|
|
8755
9476
|
|
|
9477
|
+
@complex model quota {
|
|
9478
|
+
deleted: int64 | null;
|
|
9479
|
+
remaining: int64 | null;
|
|
9480
|
+
state: string | null;
|
|
9481
|
+
storagePlanInformation: storagePlanInformation | null;
|
|
9482
|
+
total: int64 | null;
|
|
9483
|
+
used: int64 | null;
|
|
9484
|
+
}
|
|
9485
|
+
|
|
8756
9486
|
@complex model rankedEmailAddress {
|
|
8757
9487
|
address: string | null;
|
|
8758
9488
|
rank: float64 | null;
|
|
8759
9489
|
}
|
|
8760
9490
|
|
|
9491
|
+
@complex model reactionsFacet {
|
|
9492
|
+
commentCount: int32 | null;
|
|
9493
|
+
likeCount: int32 | null;
|
|
9494
|
+
shareCount: int32 | null;
|
|
9495
|
+
}
|
|
9496
|
+
|
|
8761
9497
|
@complex model recipient {
|
|
8762
9498
|
emailAddress: emailAddress | null;
|
|
8763
9499
|
}
|
|
@@ -8780,6 +9516,10 @@ namespace reference.`microsoft.graph` {
|
|
|
8780
9516
|
type: recurrenceRangeType | null;
|
|
8781
9517
|
}
|
|
8782
9518
|
|
|
9519
|
+
@complex model recycleBinSettings {
|
|
9520
|
+
retentionPeriodOverrideDays: int32 | null;
|
|
9521
|
+
}
|
|
9522
|
+
|
|
8783
9523
|
/**
|
|
8784
9524
|
* Represents an Apple Single Sign-On Extension.
|
|
8785
9525
|
*/
|
|
@@ -8839,6 +9579,28 @@ namespace reference.`microsoft.graph` {
|
|
|
8839
9579
|
reminderFireTime: dateTimeTimeZone | null;
|
|
8840
9580
|
}
|
|
8841
9581
|
|
|
9582
|
+
@complex model remoteItem {
|
|
9583
|
+
createdBy: identitySet | null;
|
|
9584
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
9585
|
+
file: file | null;
|
|
9586
|
+
fileSystemInfo: fileSystemInfo | null;
|
|
9587
|
+
folder: folder | null;
|
|
9588
|
+
id: string | null;
|
|
9589
|
+
image: image | null;
|
|
9590
|
+
lastModifiedBy: identitySet | null;
|
|
9591
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
9592
|
+
name: string | null;
|
|
9593
|
+
`package`: `package` | null;
|
|
9594
|
+
parentReference: itemReference | null;
|
|
9595
|
+
shared: shared | null;
|
|
9596
|
+
sharepointIds: sharepointIds | null;
|
|
9597
|
+
size: int64 | null;
|
|
9598
|
+
specialFolder: specialFolder | null;
|
|
9599
|
+
video: video | null;
|
|
9600
|
+
webDavUrl: string | null;
|
|
9601
|
+
webUrl: string | null;
|
|
9602
|
+
}
|
|
9603
|
+
|
|
8842
9604
|
/**
|
|
8843
9605
|
* Lock action result with a pin to unlock
|
|
8844
9606
|
*/
|
|
@@ -8849,6 +9611,11 @@ namespace reference.`microsoft.graph` {
|
|
|
8849
9611
|
unlockPin: string | null;
|
|
8850
9612
|
}
|
|
8851
9613
|
|
|
9614
|
+
@complex model renameAction {
|
|
9615
|
+
newName: string | null;
|
|
9616
|
+
oldName: string | null;
|
|
9617
|
+
}
|
|
9618
|
+
|
|
8852
9619
|
/**
|
|
8853
9620
|
* Device Configuration profile History reports.
|
|
8854
9621
|
*/
|
|
@@ -8945,6 +9712,18 @@ namespace reference.`microsoft.graph` {
|
|
|
8945
9712
|
time: offsetDateTime | null;
|
|
8946
9713
|
}
|
|
8947
9714
|
|
|
9715
|
+
@complex model restoreAction {
|
|
9716
|
+
}
|
|
9717
|
+
|
|
9718
|
+
@complex model retentionLabelSettings {
|
|
9719
|
+
behaviorDuringRetentionPeriod: reference.`microsoft.graph.security`.behaviorDuringRetentionPeriod | null;
|
|
9720
|
+
isContentUpdateAllowed: boolean | null;
|
|
9721
|
+
isDeleteAllowed: boolean | null;
|
|
9722
|
+
isLabelUpdateAllowed: boolean | null;
|
|
9723
|
+
isMetadataUpdateAllowed: boolean | null;
|
|
9724
|
+
isRecordLocked: boolean | null;
|
|
9725
|
+
}
|
|
9726
|
+
|
|
8948
9727
|
/**
|
|
8949
9728
|
* ManagedDevices that are scheduled for retire
|
|
8950
9729
|
*/
|
|
@@ -9112,6 +9891,9 @@ namespace reference.`microsoft.graph` {
|
|
|
9112
9891
|
roleScopeTagId: string | null;
|
|
9113
9892
|
}
|
|
9114
9893
|
|
|
9894
|
+
@complex model root {
|
|
9895
|
+
}
|
|
9896
|
+
|
|
9115
9897
|
/**
|
|
9116
9898
|
* RotateBitLockerKeys device action result
|
|
9117
9899
|
*/
|
|
@@ -9212,6 +9994,10 @@ namespace reference.`microsoft.graph` {
|
|
|
9212
9994
|
labelKind: labelKind | null;
|
|
9213
9995
|
}
|
|
9214
9996
|
|
|
9997
|
+
@complex model searchResult {
|
|
9998
|
+
onClickTelemetryUrl: string | null;
|
|
9999
|
+
}
|
|
10000
|
+
|
|
9215
10001
|
@complex model secureSignInSessionControl extends conditionalAccessSessionControl {
|
|
9216
10002
|
}
|
|
9217
10003
|
|
|
@@ -9254,11 +10040,31 @@ namespace reference.`microsoft.graph` {
|
|
|
9254
10040
|
tenantId: string;
|
|
9255
10041
|
}
|
|
9256
10042
|
|
|
10043
|
+
@complex model serverProcessedContent {
|
|
10044
|
+
componentDependencies: metaDataKeyStringPair[] | null;
|
|
10045
|
+
customMetadata: metaDataKeyValuePair[] | null;
|
|
10046
|
+
htmlStrings: metaDataKeyStringPair[] | null;
|
|
10047
|
+
imageSources: metaDataKeyStringPair[] | null;
|
|
10048
|
+
links: metaDataKeyStringPair[] | null;
|
|
10049
|
+
searchablePlainTexts: metaDataKeyStringPair[] | null;
|
|
10050
|
+
}
|
|
10051
|
+
|
|
10052
|
+
@complex model serviceActivityValueMetric {
|
|
10053
|
+
intervalStartDateTime: offsetDateTime;
|
|
10054
|
+
value: int64;
|
|
10055
|
+
}
|
|
10056
|
+
|
|
9257
10057
|
@complex model serviceInformation {
|
|
9258
10058
|
name: string | null;
|
|
9259
10059
|
webUrl: string | null;
|
|
9260
10060
|
}
|
|
9261
10061
|
|
|
10062
|
+
@complex model serviceLevelAgreementAttainment {
|
|
10063
|
+
endDate: offsetDateTime;
|
|
10064
|
+
score: float64;
|
|
10065
|
+
startDate: offsetDateTime;
|
|
10066
|
+
}
|
|
10067
|
+
|
|
9262
10068
|
/**
|
|
9263
10069
|
* An abstract base class for all serviceNow authentication methods.
|
|
9264
10070
|
*/
|
|
@@ -9295,6 +10101,11 @@ namespace reference.`microsoft.graph` {
|
|
|
9295
10101
|
servicePrincipalId: string | null;
|
|
9296
10102
|
}
|
|
9297
10103
|
|
|
10104
|
+
@complex model sessionLifetimePolicy {
|
|
10105
|
+
detail: string | null;
|
|
10106
|
+
expirationRequirement: expirationRequirement | null;
|
|
10107
|
+
}
|
|
10108
|
+
|
|
9298
10109
|
@complex model settingSource {
|
|
9299
10110
|
displayName: string | null;
|
|
9300
10111
|
id: string | null;
|
|
@@ -9313,6 +10124,17 @@ namespace reference.`microsoft.graph` {
|
|
|
9313
10124
|
value: string | null;
|
|
9314
10125
|
}
|
|
9315
10126
|
|
|
10127
|
+
@complex model shareAction {
|
|
10128
|
+
recipients: identitySet[] | null;
|
|
10129
|
+
}
|
|
10130
|
+
|
|
10131
|
+
@complex model shared {
|
|
10132
|
+
owner: identitySet | null;
|
|
10133
|
+
scope: string | null;
|
|
10134
|
+
sharedBy: identitySet | null;
|
|
10135
|
+
sharedDateTime: offsetDateTime | null;
|
|
10136
|
+
}
|
|
10137
|
+
|
|
9316
10138
|
@complex model sharedAppleDeviceUser {
|
|
9317
10139
|
/**
|
|
9318
10140
|
* Data quota
|
|
@@ -9354,6 +10176,143 @@ namespace reference.`microsoft.graph` {
|
|
|
9354
10176
|
removeAccountsBelowDiskFreePercentage: int32 | null;
|
|
9355
10177
|
}
|
|
9356
10178
|
|
|
10179
|
+
@complex model sharePointApiUsageDataPoint {
|
|
10180
|
+
activeApps: int32 | null;
|
|
10181
|
+
appId: string | null;
|
|
10182
|
+
serviceArea: string | null;
|
|
10183
|
+
tenantId: string | null;
|
|
10184
|
+
usageDateTime: offsetDateTime | null;
|
|
10185
|
+
usageMB: int64 | null;
|
|
10186
|
+
usageRequests: int64 | null;
|
|
10187
|
+
}
|
|
10188
|
+
|
|
10189
|
+
@complex model sharePointApiUsageReport {
|
|
10190
|
+
dataPoints: sharePointApiUsageDataPoint[];
|
|
10191
|
+
}
|
|
10192
|
+
|
|
10193
|
+
@open
|
|
10194
|
+
@complex model sharePointGroupIdentity extends identity {
|
|
10195
|
+
principalId: string | null;
|
|
10196
|
+
title: string | null;
|
|
10197
|
+
}
|
|
10198
|
+
|
|
10199
|
+
@complex model sharePointGroupMigrationTaskParameters extends sharePointMigrationTaskParameters {
|
|
10200
|
+
sourceGroupIdentity: groupIdentity | null;
|
|
10201
|
+
targetGroupIdentity: groupIdentity | null;
|
|
10202
|
+
}
|
|
10203
|
+
|
|
10204
|
+
@open
|
|
10205
|
+
@complex model sharePointIdentity extends identity {
|
|
10206
|
+
loginName: string | null;
|
|
10207
|
+
}
|
|
10208
|
+
|
|
10209
|
+
@complex model sharePointIdentityMappingGroupMigrationData {
|
|
10210
|
+
mailNickname: string | null;
|
|
10211
|
+
}
|
|
10212
|
+
|
|
10213
|
+
@complex model sharePointIdentityMappingUserMigrationData {
|
|
10214
|
+
email: string | null;
|
|
10215
|
+
}
|
|
10216
|
+
|
|
10217
|
+
@open
|
|
10218
|
+
@complex model sharePointIdentitySet extends identitySet {
|
|
10219
|
+
group: identity | null;
|
|
10220
|
+
sharePointGroup: sharePointGroupIdentity | null;
|
|
10221
|
+
siteGroup: sharePointIdentity | null;
|
|
10222
|
+
siteUser: sharePointIdentity | null;
|
|
10223
|
+
}
|
|
10224
|
+
|
|
10225
|
+
@complex model sharepointIds {
|
|
10226
|
+
listId: string | null;
|
|
10227
|
+
listItemId: string | null;
|
|
10228
|
+
listItemUniqueId: string | null;
|
|
10229
|
+
siteId: string | null;
|
|
10230
|
+
siteUrl: string | null;
|
|
10231
|
+
tenantId: string | null;
|
|
10232
|
+
webId: string | null;
|
|
10233
|
+
}
|
|
10234
|
+
|
|
10235
|
+
@complex model sharePointMigrationContainerInfo {
|
|
10236
|
+
dataContainerUri: string;
|
|
10237
|
+
encryptionKey: string;
|
|
10238
|
+
metadataContainerUri: string;
|
|
10239
|
+
}
|
|
10240
|
+
|
|
10241
|
+
@complex model sharePointMigrationTaskParameters {
|
|
10242
|
+
preferredLatestStartDateTime: offsetDateTime | null;
|
|
10243
|
+
preferredStartDateTime: offsetDateTime | null;
|
|
10244
|
+
sourceSiteUrl: string | null;
|
|
10245
|
+
targetDataLocationCode: string | null;
|
|
10246
|
+
targetOrganizationHost: string | null;
|
|
10247
|
+
targetOrganizationId: guid | null;
|
|
10248
|
+
targetSiteUrl: string | null;
|
|
10249
|
+
validateOnly: boolean | null;
|
|
10250
|
+
}
|
|
10251
|
+
|
|
10252
|
+
@complex model sharePointSharingAbilities {
|
|
10253
|
+
anyoneLinkAbilities: linkScopeAbilities | null;
|
|
10254
|
+
directSharingAbilities: directSharingAbilities | null;
|
|
10255
|
+
organizationLinkAbilities: linkScopeAbilities | null;
|
|
10256
|
+
specificPeopleLinkAbilities: linkScopeAbilities | null;
|
|
10257
|
+
}
|
|
10258
|
+
|
|
10259
|
+
@complex model sharePointSiteMigrationTaskParameters extends sharePointMigrationTaskParameters {
|
|
10260
|
+
}
|
|
10261
|
+
|
|
10262
|
+
@complex model sharePointUserMigrationTaskParameters extends sharePointMigrationTaskParameters {
|
|
10263
|
+
sourceUserIdentity: userIdentity | null;
|
|
10264
|
+
targetUserIdentity: userIdentity | null;
|
|
10265
|
+
}
|
|
10266
|
+
|
|
10267
|
+
@complex model sharingInvitation {
|
|
10268
|
+
email: string | null;
|
|
10269
|
+
invitedBy: identitySet | null;
|
|
10270
|
+
redeemedBy: string | null;
|
|
10271
|
+
signInRequired: boolean | null;
|
|
10272
|
+
}
|
|
10273
|
+
|
|
10274
|
+
@complex model sharingLink {
|
|
10275
|
+
application: identity | null;
|
|
10276
|
+
configuratorUrl: string | null;
|
|
10277
|
+
preventsDownload: boolean | null;
|
|
10278
|
+
scope: string | null;
|
|
10279
|
+
type: string | null;
|
|
10280
|
+
webHtml: string | null;
|
|
10281
|
+
webUrl: string | null;
|
|
10282
|
+
}
|
|
10283
|
+
|
|
10284
|
+
@complex model sharingLinkExpirationStatus {
|
|
10285
|
+
defaultExpirationInDays: int32 | null;
|
|
10286
|
+
disabledReason: string | null;
|
|
10287
|
+
enabled: boolean | null;
|
|
10288
|
+
}
|
|
10289
|
+
|
|
10290
|
+
@complex model sharingLinkVariants {
|
|
10291
|
+
addressBarLinkPermission: sharingRole | null;
|
|
10292
|
+
allowEmbed: sharingOperationStatus | null;
|
|
10293
|
+
passwordProtected: sharingOperationStatus | null;
|
|
10294
|
+
requiresAuthentication: sharingOperationStatus | null;
|
|
10295
|
+
}
|
|
10296
|
+
|
|
10297
|
+
@complex model sharingOperationStatus {
|
|
10298
|
+
disabledReason: string | null;
|
|
10299
|
+
enabled: boolean | null;
|
|
10300
|
+
}
|
|
10301
|
+
|
|
10302
|
+
@complex model sharingViewpoint {
|
|
10303
|
+
defaultSharingLink: defaultSharingLink;
|
|
10304
|
+
sharingAbilities: sharePointSharingAbilities;
|
|
10305
|
+
}
|
|
10306
|
+
|
|
10307
|
+
@complex model signInActivity {
|
|
10308
|
+
@computed lastNonInteractiveSignInDateTime: offsetDateTime | null;
|
|
10309
|
+
lastNonInteractiveSignInRequestId: string | null;
|
|
10310
|
+
@computed lastSignInDateTime: offsetDateTime | null;
|
|
10311
|
+
lastSignInRequestId: string | null;
|
|
10312
|
+
@computed lastSuccessfulSignInDateTime: offsetDateTime | null;
|
|
10313
|
+
lastSuccessfulSignInRequestId: string | null;
|
|
10314
|
+
}
|
|
10315
|
+
|
|
9357
10316
|
@abstract
|
|
9358
10317
|
@complex model signInAudienceRestrictionsBase {
|
|
9359
10318
|
kind: kind;
|
|
@@ -9375,6 +10334,11 @@ namespace reference.`microsoft.graph` {
|
|
|
9375
10334
|
@complex model signInContext {
|
|
9376
10335
|
}
|
|
9377
10336
|
|
|
10337
|
+
@complex model signInCounts {
|
|
10338
|
+
noSignIn: int32 | null;
|
|
10339
|
+
withSignIn: int32 | null;
|
|
10340
|
+
}
|
|
10341
|
+
|
|
9378
10342
|
@complex model signInFrequencySessionControl extends conditionalAccessSessionControl {
|
|
9379
10343
|
authenticationType: signInFrequencyAuthenticationType | null;
|
|
9380
10344
|
frequencyInterval: signInFrequencyInterval | null;
|
|
@@ -9403,6 +10367,12 @@ namespace reference.`microsoft.graph` {
|
|
|
9403
10367
|
userPreferredMethodForSecondaryAuthentication: userDefaultAuthenticationMethodType | null;
|
|
9404
10368
|
}
|
|
9405
10369
|
|
|
10370
|
+
@complex model signInStatus {
|
|
10371
|
+
additionalDetails: string | null;
|
|
10372
|
+
errorCode: int32 | null;
|
|
10373
|
+
failureReason: string | null;
|
|
10374
|
+
}
|
|
10375
|
+
|
|
9406
10376
|
/**
|
|
9407
10377
|
* Represents an Apple Single Sign-On Extension.
|
|
9408
10378
|
*/
|
|
@@ -9410,6 +10380,24 @@ namespace reference.`microsoft.graph` {
|
|
|
9410
10380
|
@complex model singleSignOnExtension {
|
|
9411
10381
|
}
|
|
9412
10382
|
|
|
10383
|
+
@complex model siteArchivalDetails {
|
|
10384
|
+
archivedBy: identitySet | null;
|
|
10385
|
+
archivedDateTime: offsetDateTime | null;
|
|
10386
|
+
archiveStatus: siteArchiveStatus | null;
|
|
10387
|
+
}
|
|
10388
|
+
|
|
10389
|
+
@complex model siteCollection {
|
|
10390
|
+
archivalDetails: siteArchivalDetails | null;
|
|
10391
|
+
dataLocationCode: string | null;
|
|
10392
|
+
hostname: string | null;
|
|
10393
|
+
root: root | null;
|
|
10394
|
+
}
|
|
10395
|
+
|
|
10396
|
+
@complex model siteSettings {
|
|
10397
|
+
languageTag: string | null;
|
|
10398
|
+
timeZone: string | null;
|
|
10399
|
+
}
|
|
10400
|
+
|
|
9413
10401
|
@complex model sizeRange {
|
|
9414
10402
|
maximumSize: int32 | null;
|
|
9415
10403
|
minimumSize: int32 | null;
|
|
@@ -9419,6 +10407,10 @@ namespace reference.`microsoft.graph` {
|
|
|
9419
10407
|
redirectUris: string[];
|
|
9420
10408
|
}
|
|
9421
10409
|
|
|
10410
|
+
@complex model specialFolder {
|
|
10411
|
+
name: string | null;
|
|
10412
|
+
}
|
|
10413
|
+
|
|
9422
10414
|
/**
|
|
9423
10415
|
* Specifies all the Captive network plugins allowed during the IKEv2 AlwaysOn VPN connection
|
|
9424
10416
|
*/
|
|
@@ -9437,6 +10429,25 @@ namespace reference.`microsoft.graph` {
|
|
|
9437
10429
|
year: int32 | null;
|
|
9438
10430
|
}
|
|
9439
10431
|
|
|
10432
|
+
@graphDeprecated("Reporting")
|
|
10433
|
+
@complex model statusBase {
|
|
10434
|
+
status: provisioningResult | null;
|
|
10435
|
+
}
|
|
10436
|
+
|
|
10437
|
+
@graphDeprecated("Reporting")
|
|
10438
|
+
@graphDeprecated("Reporting")
|
|
10439
|
+
@complex model statusDetails extends statusBase {
|
|
10440
|
+
additionalDetails: string | null;
|
|
10441
|
+
errorCategory: provisioningStatusErrorCategory | null;
|
|
10442
|
+
errorCode: string | null;
|
|
10443
|
+
reason: string | null;
|
|
10444
|
+
recommendedAction: string | null;
|
|
10445
|
+
}
|
|
10446
|
+
|
|
10447
|
+
@complex model storagePlanInformation {
|
|
10448
|
+
upgradeAvailable: boolean | null;
|
|
10449
|
+
}
|
|
10450
|
+
|
|
9440
10451
|
@complex model strongAuthenticationRequirements {
|
|
9441
10452
|
perUserMfaState: perUserMfaState | null;
|
|
9442
10453
|
}
|
|
@@ -9461,6 +10472,18 @@ namespace reference.`microsoft.graph` {
|
|
|
9461
10472
|
state: advancedConfigState;
|
|
9462
10473
|
}
|
|
9463
10474
|
|
|
10475
|
+
@complex model systemFacet {
|
|
10476
|
+
}
|
|
10477
|
+
|
|
10478
|
+
@complex model targetResource {
|
|
10479
|
+
displayName: string | null;
|
|
10480
|
+
groupType: groupType | null;
|
|
10481
|
+
id: string | null;
|
|
10482
|
+
modifiedProperties: modifiedProperty[] | null;
|
|
10483
|
+
type: string | null;
|
|
10484
|
+
userPrincipalName: string | null;
|
|
10485
|
+
}
|
|
10486
|
+
|
|
9464
10487
|
/**
|
|
9465
10488
|
* Represents result of GetState API.
|
|
9466
10489
|
*/
|
|
@@ -9478,6 +10501,38 @@ namespace reference.`microsoft.graph` {
|
|
|
9478
10501
|
tenantId: string;
|
|
9479
10502
|
}
|
|
9480
10503
|
|
|
10504
|
+
@complex model tenantSecureScore {
|
|
10505
|
+
createDateTime: offsetDateTime;
|
|
10506
|
+
tenantMaxScore: int64;
|
|
10507
|
+
tenantScore: int64;
|
|
10508
|
+
}
|
|
10509
|
+
|
|
10510
|
+
@complex model termColumn {
|
|
10511
|
+
allowMultipleValues: boolean | null;
|
|
10512
|
+
showFullyQualifiedName: boolean | null;
|
|
10513
|
+
@references parentTerm: reference.`microsoft.graph.termStore`.term | null;
|
|
10514
|
+
@references termSet: reference.`microsoft.graph.termStore`.set | null;
|
|
10515
|
+
}
|
|
10516
|
+
|
|
10517
|
+
@complex model textColumn {
|
|
10518
|
+
allowMultipleLines: boolean | null;
|
|
10519
|
+
appendChangesToExistingText: boolean | null;
|
|
10520
|
+
linesForEditing: int32 | null;
|
|
10521
|
+
maxLength: int32 | null;
|
|
10522
|
+
textType: string | null;
|
|
10523
|
+
}
|
|
10524
|
+
|
|
10525
|
+
@complex model thumbnail {
|
|
10526
|
+
content: stream | null;
|
|
10527
|
+
height: int32 | null;
|
|
10528
|
+
sourceItemId: string | null;
|
|
10529
|
+
url: string | null;
|
|
10530
|
+
width: int32 | null;
|
|
10531
|
+
}
|
|
10532
|
+
|
|
10533
|
+
@complex model thumbnailColumn {
|
|
10534
|
+
}
|
|
10535
|
+
|
|
9481
10536
|
@complex model timeConstraint {
|
|
9482
10537
|
activityDomain: activityDomain | null;
|
|
9483
10538
|
recurrence: patternedRecurrence | null;
|
|
@@ -9516,6 +10571,30 @@ namespace reference.`microsoft.graph` {
|
|
|
9516
10571
|
displayName: string | null;
|
|
9517
10572
|
}
|
|
9518
10573
|
|
|
10574
|
+
@open
|
|
10575
|
+
@complex model titleArea {
|
|
10576
|
+
alternativeText: string | null;
|
|
10577
|
+
enableGradientEffect: boolean | null;
|
|
10578
|
+
imageWebUrl: string | null;
|
|
10579
|
+
layout: titleAreaLayoutType | null;
|
|
10580
|
+
serverProcessedContent: serverProcessedContent | null;
|
|
10581
|
+
showAuthor: boolean | null;
|
|
10582
|
+
showPublishedDate: boolean | null;
|
|
10583
|
+
showTextBlockAboveTitle: boolean | null;
|
|
10584
|
+
textAboveTitle: string | null;
|
|
10585
|
+
textAlignment: titleAreaTextAlignmentType | null;
|
|
10586
|
+
}
|
|
10587
|
+
|
|
10588
|
+
@complex model tokenDetails {
|
|
10589
|
+
issuedAtDateTime: offsetDateTime | null;
|
|
10590
|
+
uniqueTokenIdentifier: string | null;
|
|
10591
|
+
}
|
|
10592
|
+
|
|
10593
|
+
@complex model tokenProtectionStatusDetails {
|
|
10594
|
+
signInSessionStatus: tokenProtectionStatus | null;
|
|
10595
|
+
signInSessionStatusCode: int32 | null;
|
|
10596
|
+
}
|
|
10597
|
+
|
|
9519
10598
|
@complex model translationLanguageOverride {
|
|
9520
10599
|
languageTag: string | null;
|
|
9521
10600
|
translationBehavior: translationBehavior | null;
|
|
@@ -9902,10 +10981,40 @@ namespace reference.`microsoft.graph` {
|
|
|
9902
10981
|
windows10DevicesWithoutTenantAttach: int32;
|
|
9903
10982
|
}
|
|
9904
10983
|
|
|
10984
|
+
@open
|
|
10985
|
+
@complex model userIdentity extends identity {
|
|
10986
|
+
ipAddress: string | null;
|
|
10987
|
+
userPrincipalName: string | null;
|
|
10988
|
+
}
|
|
10989
|
+
|
|
9905
10990
|
@complex model userPurpose {
|
|
9906
10991
|
value: mailboxRecipientType | null;
|
|
9907
10992
|
}
|
|
9908
10993
|
|
|
10994
|
+
@complex model userRegistrationFeatureCount {
|
|
10995
|
+
feature: authenticationMethodFeature;
|
|
10996
|
+
userCount: int64;
|
|
10997
|
+
}
|
|
10998
|
+
|
|
10999
|
+
@complex model userRegistrationFeatureSummary {
|
|
11000
|
+
totalUserCount: int64;
|
|
11001
|
+
userRegistrationFeatureCounts: userRegistrationFeatureCount[];
|
|
11002
|
+
userRoles: includedUserRoles | null;
|
|
11003
|
+
userTypes: includedUserTypes | null;
|
|
11004
|
+
}
|
|
11005
|
+
|
|
11006
|
+
@complex model userRegistrationMethodCount {
|
|
11007
|
+
authenticationMethod: string;
|
|
11008
|
+
userCount: int64;
|
|
11009
|
+
}
|
|
11010
|
+
|
|
11011
|
+
@complex model userRegistrationMethodSummary {
|
|
11012
|
+
totalUserCount: int64;
|
|
11013
|
+
userRegistrationMethodCounts: userRegistrationMethodCount[];
|
|
11014
|
+
userRoles: includedUserRoles | null;
|
|
11015
|
+
userTypes: includedUserTypes | null;
|
|
11016
|
+
}
|
|
11017
|
+
|
|
9909
11018
|
@complex model userSignIn extends signInIdentity {
|
|
9910
11019
|
externalTenantId: string | null;
|
|
9911
11020
|
externalUserType: conditionalAccessGuestOrExternalUserTypes;
|
|
@@ -9933,6 +11042,23 @@ namespace reference.`microsoft.graph` {
|
|
|
9933
11042
|
type: string | null;
|
|
9934
11043
|
}
|
|
9935
11044
|
|
|
11045
|
+
@complex model versionAction {
|
|
11046
|
+
newVersion: string | null;
|
|
11047
|
+
}
|
|
11048
|
+
|
|
11049
|
+
@complex model video {
|
|
11050
|
+
audioBitsPerSample: int32 | null;
|
|
11051
|
+
audioChannels: int32 | null;
|
|
11052
|
+
audioFormat: string | null;
|
|
11053
|
+
audioSamplesPerSecond: int32 | null;
|
|
11054
|
+
bitrate: int32 | null;
|
|
11055
|
+
`duration`: int64 | null;
|
|
11056
|
+
fourCC: string | null;
|
|
11057
|
+
frameRate: float64 | null;
|
|
11058
|
+
height: int32 | null;
|
|
11059
|
+
width: int32 | null;
|
|
11060
|
+
}
|
|
11061
|
+
|
|
9936
11062
|
/**
|
|
9937
11063
|
* VPN DNS Rule definition.
|
|
9938
11064
|
*/
|
|
@@ -10266,6 +11392,22 @@ namespace reference.`microsoft.graph` {
|
|
|
10266
11392
|
name: string | null;
|
|
10267
11393
|
}
|
|
10268
11394
|
|
|
11395
|
+
@complex model webPartData {
|
|
11396
|
+
audiences: string[] | null;
|
|
11397
|
+
dataVersion: string | null;
|
|
11398
|
+
description: string | null;
|
|
11399
|
+
properties: Json | null;
|
|
11400
|
+
serverProcessedContent: serverProcessedContent | null;
|
|
11401
|
+
title: string | null;
|
|
11402
|
+
}
|
|
11403
|
+
|
|
11404
|
+
@complex model webPartPosition {
|
|
11405
|
+
columnId: float64 | null;
|
|
11406
|
+
horizontalSectionId: float64 | null;
|
|
11407
|
+
isInVerticalSection: boolean | null;
|
|
11408
|
+
webPartIndex: float64 | null;
|
|
11409
|
+
}
|
|
11410
|
+
|
|
10269
11411
|
@complex model webSegmentConfiguration extends segmentConfiguration {
|
|
10270
11412
|
@contains applicationSegments: webApplicationSegment[];
|
|
10271
11413
|
}
|
|
@@ -12351,9 +13493,24 @@ namespace reference.`microsoft.graph` {
|
|
|
12351
13493
|
@contains domainJoinConfiguration: windowsDomainJoinConfiguration | null;
|
|
12352
13494
|
}
|
|
12353
13495
|
|
|
13496
|
+
@entity model activeUsersMetric extends entity {
|
|
13497
|
+
appId: string | null;
|
|
13498
|
+
appName: string | null;
|
|
13499
|
+
count: int64;
|
|
13500
|
+
country: string | null;
|
|
13501
|
+
factDate: offsetDateTime;
|
|
13502
|
+
language: string | null;
|
|
13503
|
+
os: string | null;
|
|
13504
|
+
}
|
|
13505
|
+
|
|
12354
13506
|
@entity model activityBasedTimeoutPolicy extends stsPolicy {
|
|
12355
13507
|
}
|
|
12356
13508
|
|
|
13509
|
+
@entity model admin extends MsGraph.SharedModels.entity {
|
|
13510
|
+
@contains people: peopleAdminSettings | null;
|
|
13511
|
+
@contains sharepoint: sharepoint | null;
|
|
13512
|
+
}
|
|
13513
|
+
|
|
12357
13514
|
@open
|
|
12358
13515
|
@entity model administrativeUnit extends directoryObject {
|
|
12359
13516
|
description: string | null;
|
|
@@ -16548,6 +17705,11 @@ namespace reference.`microsoft.graph` {
|
|
|
16548
17705
|
wiFiSecurityType: aospDeviceOwnerWiFiSecurityType;
|
|
16549
17706
|
}
|
|
16550
17707
|
|
|
17708
|
+
@entity model apiUsageReportEnablementStatus extends MsGraph.SharedModels.entity {
|
|
17709
|
+
@computed @key metric: string;
|
|
17710
|
+
onboardingStatus: apiUsageReportOnboardingStatus;
|
|
17711
|
+
}
|
|
17712
|
+
|
|
16551
17713
|
/**
|
|
16552
17714
|
* Apple device features configuration profile.
|
|
16553
17715
|
*/
|
|
@@ -16816,6 +17978,21 @@ namespace reference.`microsoft.graph` {
|
|
|
16816
17978
|
@entity model applicationSegment extends entity {
|
|
16817
17979
|
}
|
|
16818
17980
|
|
|
17981
|
+
@entity model applicationSignInDetailedSummary extends entity {
|
|
17982
|
+
aggregatedEventDateTime: offsetDateTime | null;
|
|
17983
|
+
appDisplayName: string;
|
|
17984
|
+
appId: string;
|
|
17985
|
+
signInCount: int64 | null;
|
|
17986
|
+
status: signInStatus | null;
|
|
17987
|
+
}
|
|
17988
|
+
|
|
17989
|
+
@entity model applicationSignInSummary extends entity {
|
|
17990
|
+
appDisplayName: string;
|
|
17991
|
+
failedSignInCount: int64 | null;
|
|
17992
|
+
successfulSignInCount: int64 | null;
|
|
17993
|
+
successPercentage: float64 | null;
|
|
17994
|
+
}
|
|
17995
|
+
|
|
16819
17996
|
@entity model applicationTemplate extends entity {
|
|
16820
17997
|
categories: string[] | null;
|
|
16821
17998
|
configurationUris: configurationUri[] | null;
|
|
@@ -16995,6 +18172,12 @@ namespace reference.`microsoft.graph` {
|
|
|
16995
18172
|
maxAttributesPerSet: int32 | null;
|
|
16996
18173
|
}
|
|
16997
18174
|
|
|
18175
|
+
@entity model auditActivityType extends entity {
|
|
18176
|
+
activity: string | null;
|
|
18177
|
+
category: string | null;
|
|
18178
|
+
service: string | null;
|
|
18179
|
+
}
|
|
18180
|
+
|
|
16998
18181
|
/**
|
|
16999
18182
|
* A class containing the properties for Audit Event.
|
|
17000
18183
|
*/
|
|
@@ -17045,6 +18228,16 @@ namespace reference.`microsoft.graph` {
|
|
|
17045
18228
|
resources: auditResource[] | null;
|
|
17046
18229
|
}
|
|
17047
18230
|
|
|
18231
|
+
@entity model auditLogRoot extends MsGraph.SharedModels.entity {
|
|
18232
|
+
@contains auditActivityTypes: auditActivityType[];
|
|
18233
|
+
@contains customSecurityAttributeAudits: customSecurityAttributeAudit[];
|
|
18234
|
+
@contains directoryAudits: directoryAudit[];
|
|
18235
|
+
@contains provisioning: provisioningObjectSummary[];
|
|
18236
|
+
@contains signInEventsAppSummary: signInEventsAppActivity[];
|
|
18237
|
+
@contains signInEventsSummary: signInEventsActivity[];
|
|
18238
|
+
@contains signIns: signIn[];
|
|
18239
|
+
}
|
|
18240
|
+
|
|
17048
18241
|
@abstract
|
|
17049
18242
|
@entity model authenticationCombinationConfiguration extends entity {
|
|
17050
18243
|
appliesToCombinations: authenticationMethodModes[];
|
|
@@ -17056,6 +18249,12 @@ namespace reference.`microsoft.graph` {
|
|
|
17056
18249
|
isAvailable: boolean | null;
|
|
17057
18250
|
}
|
|
17058
18251
|
|
|
18252
|
+
@entity model authenticationFailure extends entity {
|
|
18253
|
+
count: int64;
|
|
18254
|
+
reason: string;
|
|
18255
|
+
reasonCode: authenticationFailureReasonCode;
|
|
18256
|
+
}
|
|
18257
|
+
|
|
17059
18258
|
@entity model authenticationMethodDevice extends entity {
|
|
17060
18259
|
displayName: string | null;
|
|
17061
18260
|
@contains hardwareOathDevices: hardwareOathTokenAuthenticationMethodDevice[];
|
|
@@ -17066,11 +18265,32 @@ namespace reference.`microsoft.graph` {
|
|
|
17066
18265
|
displayName: string;
|
|
17067
18266
|
}
|
|
17068
18267
|
|
|
18268
|
+
@entity model authenticationMethodsRoot extends entity {
|
|
18269
|
+
@contains userEventsSummary: userEventsSummary[];
|
|
18270
|
+
@contains userMfaSignInSummary: userMfaSignInSummary[];
|
|
18271
|
+
@contains userPasswordResetsAndChangesSummary: userPasswordResetsAndChangesSummary[];
|
|
18272
|
+
@contains userRegistrationDetails: userRegistrationDetails[];
|
|
18273
|
+
}
|
|
18274
|
+
|
|
17069
18275
|
@entity model authenticationMethodTarget extends entity {
|
|
17070
18276
|
isRegistrationRequired: boolean;
|
|
17071
18277
|
targetType: authenticationMethodTargetType;
|
|
17072
18278
|
}
|
|
17073
18279
|
|
|
18280
|
+
@entity model authenticationsMetric extends entity {
|
|
18281
|
+
appid: string | null;
|
|
18282
|
+
attemptsCount: int64;
|
|
18283
|
+
authFlow: string | null;
|
|
18284
|
+
browser: string | null;
|
|
18285
|
+
country: string | null;
|
|
18286
|
+
factDate: offsetDateTime | null;
|
|
18287
|
+
identityProvider: string | null;
|
|
18288
|
+
language: string | null;
|
|
18289
|
+
os: string | null;
|
|
18290
|
+
successCount: int64;
|
|
18291
|
+
@references failures: authenticationFailure[];
|
|
18292
|
+
}
|
|
18293
|
+
|
|
17074
18294
|
@entity model authenticationStrengthPolicy extends entity {
|
|
17075
18295
|
allowedCombinations: authenticationMethodModes[];
|
|
17076
18296
|
@computed createdDateTime: offsetDateTime;
|
|
@@ -17095,12 +18315,44 @@ namespace reference.`microsoft.graph` {
|
|
|
17095
18315
|
permissionGrantPolicyIdsAssignedToDefaultUserRole: string[] | null;
|
|
17096
18316
|
}
|
|
17097
18317
|
|
|
18318
|
+
@entity model azureADAuthentication extends entity {
|
|
18319
|
+
attainments: serviceLevelAgreementAttainment[];
|
|
18320
|
+
}
|
|
18321
|
+
|
|
17098
18322
|
/**
|
|
17099
18323
|
* Windows Autopilot Deployment Profile
|
|
17100
18324
|
*/
|
|
17101
18325
|
@entity model azureADWindowsAutopilotDeploymentProfile extends windowsAutopilotDeploymentProfile {
|
|
17102
18326
|
}
|
|
17103
18327
|
|
|
18328
|
+
@abstract
|
|
18329
|
+
@entity model baseItem extends entity {
|
|
18330
|
+
createdBy: identitySet | null;
|
|
18331
|
+
@computed createdDateTime: offsetDateTime;
|
|
18332
|
+
description: string | null;
|
|
18333
|
+
eTag: string | null;
|
|
18334
|
+
lastModifiedBy: identitySet | null;
|
|
18335
|
+
@computed lastModifiedDateTime: offsetDateTime;
|
|
18336
|
+
name: string | null;
|
|
18337
|
+
parentReference: itemReference | null;
|
|
18338
|
+
webUrl: string | null;
|
|
18339
|
+
@references createdByUser: user | null;
|
|
18340
|
+
@references lastModifiedByUser: user | null;
|
|
18341
|
+
}
|
|
18342
|
+
|
|
18343
|
+
@abstract
|
|
18344
|
+
@entity model baseItemVersion extends entity {
|
|
18345
|
+
lastModifiedBy: identitySet | null;
|
|
18346
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
18347
|
+
publication: publicationFacet | null;
|
|
18348
|
+
}
|
|
18349
|
+
|
|
18350
|
+
@entity model baseSitePage extends baseItem {
|
|
18351
|
+
pageLayout: pageLayoutType | null;
|
|
18352
|
+
publishingState: publicationFacet | null;
|
|
18353
|
+
title: string | null;
|
|
18354
|
+
}
|
|
18355
|
+
|
|
17104
18356
|
@entity model bitlocker extends entity {
|
|
17105
18357
|
@contains recoveryKeys: bitlockerRecoveryKey[];
|
|
17106
18358
|
}
|
|
@@ -17158,6 +18410,11 @@ namespace reference.`microsoft.graph` {
|
|
|
17158
18410
|
suggestedCalendarName: string | null;
|
|
17159
18411
|
}
|
|
17160
18412
|
|
|
18413
|
+
@entity model canvasLayout extends entity {
|
|
18414
|
+
@contains horizontalSections: horizontalSection[];
|
|
18415
|
+
@contains verticalSection: verticalSection | null;
|
|
18416
|
+
}
|
|
18417
|
+
|
|
17161
18418
|
/**
|
|
17162
18419
|
* CartToClassAssociation for associating device carts with classrooms.
|
|
17163
18420
|
*/
|
|
@@ -17632,6 +18889,45 @@ namespace reference.`microsoft.graph` {
|
|
|
17632
18889
|
userId: string | null;
|
|
17633
18890
|
}
|
|
17634
18891
|
|
|
18892
|
+
@entity model columnDefinition extends entity {
|
|
18893
|
+
`boolean`: booleanColumn | null;
|
|
18894
|
+
calculated: calculatedColumn | null;
|
|
18895
|
+
choice: choiceColumn | null;
|
|
18896
|
+
columnGroup: string | null;
|
|
18897
|
+
contentApprovalStatus: contentApprovalStatusColumn | null;
|
|
18898
|
+
currency: currencyColumn | null;
|
|
18899
|
+
dateTime: dateTimeColumn | null;
|
|
18900
|
+
defaultValue: defaultColumnValue | null;
|
|
18901
|
+
description: string | null;
|
|
18902
|
+
displayName: string | null;
|
|
18903
|
+
enforceUniqueValues: boolean | null;
|
|
18904
|
+
geolocation: geolocationColumn | null;
|
|
18905
|
+
hidden: boolean | null;
|
|
18906
|
+
hyperlinkOrPicture: hyperlinkOrPictureColumn | null;
|
|
18907
|
+
indexed: boolean | null;
|
|
18908
|
+
isDeletable: boolean | null;
|
|
18909
|
+
isReorderable: boolean | null;
|
|
18910
|
+
isSealed: boolean | null;
|
|
18911
|
+
lookup: lookupColumn | null;
|
|
18912
|
+
name: string | null;
|
|
18913
|
+
number: numberColumn | null;
|
|
18914
|
+
personOrGroup: personOrGroupColumn | null;
|
|
18915
|
+
propagateChanges: boolean | null;
|
|
18916
|
+
readOnly: boolean | null;
|
|
18917
|
+
required: boolean | null;
|
|
18918
|
+
sourceContentType: contentTypeInfo | null;
|
|
18919
|
+
term: termColumn | null;
|
|
18920
|
+
text: textColumn | null;
|
|
18921
|
+
thumbnail: thumbnailColumn | null;
|
|
18922
|
+
type: columnTypes | null;
|
|
18923
|
+
validation: columnValidation | null;
|
|
18924
|
+
@references sourceColumn: columnDefinition | null;
|
|
18925
|
+
}
|
|
18926
|
+
|
|
18927
|
+
@entity model columnLink extends entity {
|
|
18928
|
+
name: string | null;
|
|
18929
|
+
}
|
|
18930
|
+
|
|
17635
18931
|
/**
|
|
17636
18932
|
* Device Co-Management eligibility state
|
|
17637
18933
|
*/
|
|
@@ -17912,6 +19208,37 @@ namespace reference.`microsoft.graph` {
|
|
|
17912
19208
|
isEnabled: boolean | null;
|
|
17913
19209
|
}
|
|
17914
19210
|
|
|
19211
|
+
@entity model contentModel extends entity {
|
|
19212
|
+
createdBy: identitySet | null;
|
|
19213
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
19214
|
+
lastModifiedBy: identitySet | null;
|
|
19215
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
19216
|
+
modelType: contentModelType | null;
|
|
19217
|
+
name: string | null;
|
|
19218
|
+
}
|
|
19219
|
+
|
|
19220
|
+
@entity model contentType extends entity {
|
|
19221
|
+
associatedHubsUrls: string[] | null;
|
|
19222
|
+
description: string | null;
|
|
19223
|
+
documentSet: documentSet | null;
|
|
19224
|
+
documentTemplate: documentSetContent | null;
|
|
19225
|
+
group: string | null;
|
|
19226
|
+
hidden: boolean | null;
|
|
19227
|
+
inheritedFrom: itemReference | null;
|
|
19228
|
+
isBuiltIn: boolean | null;
|
|
19229
|
+
name: string | null;
|
|
19230
|
+
order: contentTypeOrder | null;
|
|
19231
|
+
parentId: string | null;
|
|
19232
|
+
propagateChanges: boolean | null;
|
|
19233
|
+
readOnly: boolean | null;
|
|
19234
|
+
sealed: boolean | null;
|
|
19235
|
+
@references base: contentType | null;
|
|
19236
|
+
@references baseTypes: contentType[];
|
|
19237
|
+
@contains columnLinks: columnLink[];
|
|
19238
|
+
@references columnPositions: columnDefinition[];
|
|
19239
|
+
@contains columns: columnDefinition[];
|
|
19240
|
+
}
|
|
19241
|
+
|
|
17915
19242
|
@open
|
|
17916
19243
|
@entity model contract extends directoryObject {
|
|
17917
19244
|
contractType: string | null;
|
|
@@ -17991,6 +19318,21 @@ namespace reference.`microsoft.graph` {
|
|
|
17991
19318
|
userSyncInbound: crossTenantUserSyncInbound | null;
|
|
17992
19319
|
}
|
|
17993
19320
|
|
|
19321
|
+
@entity model customSecurityAttributeAudit extends entity {
|
|
19322
|
+
activityDateTime: offsetDateTime;
|
|
19323
|
+
activityDisplayName: string;
|
|
19324
|
+
additionalDetails: keyValue[] | null;
|
|
19325
|
+
category: string;
|
|
19326
|
+
correlationId: string | null;
|
|
19327
|
+
initiatedBy: auditActivityInitiator;
|
|
19328
|
+
loggedByService: string | null;
|
|
19329
|
+
operationType: string | null;
|
|
19330
|
+
result: operationResult | null;
|
|
19331
|
+
resultReason: string | null;
|
|
19332
|
+
targetResources: targetResource[] | null;
|
|
19333
|
+
userAgent: string | null;
|
|
19334
|
+
}
|
|
19335
|
+
|
|
17994
19336
|
@entity model customSecurityAttributeDefinition extends entity {
|
|
17995
19337
|
attributeSet: string;
|
|
17996
19338
|
description: string | null;
|
|
@@ -18003,6 +19345,21 @@ namespace reference.`microsoft.graph` {
|
|
|
18003
19345
|
@contains allowedValues: allowedValue[];
|
|
18004
19346
|
}
|
|
18005
19347
|
|
|
19348
|
+
@entity model dailyInactiveUsersMetric extends inactiveUsersMetricBase {
|
|
19349
|
+
inactive1DayCount: int64 | null;
|
|
19350
|
+
}
|
|
19351
|
+
|
|
19352
|
+
@entity model dailyUserInsightMetricsRoot extends entity {
|
|
19353
|
+
@references activeUsers: activeUsersMetric[];
|
|
19354
|
+
@references authentications: authenticationsMetric[];
|
|
19355
|
+
@references inactiveUsers: dailyInactiveUsersMetric[];
|
|
19356
|
+
@references mfaCompletions: mfaCompletionMetric[];
|
|
19357
|
+
@contains mfaTelecomFraud: mfaTelecomFraudMetric[];
|
|
19358
|
+
@references signUps: userSignUpMetric[];
|
|
19359
|
+
@references summary: insightSummary[];
|
|
19360
|
+
@references userCount: userCountMetric[];
|
|
19361
|
+
}
|
|
19362
|
+
|
|
18006
19363
|
/**
|
|
18007
19364
|
* Data sharing consent information.
|
|
18008
19365
|
*/
|
|
@@ -20740,9 +22097,6 @@ namespace reference.`microsoft.graph` {
|
|
|
20740
22097
|
status: appLogUploadState;
|
|
20741
22098
|
}
|
|
20742
22099
|
|
|
20743
|
-
/**
|
|
20744
|
-
* Singleton that acts as container for a collection of Resource Access entities.
|
|
20745
|
-
*/
|
|
20746
22100
|
@entity model deviceManagement extends entity {
|
|
20747
22101
|
/**
|
|
20748
22102
|
* The date & time when tenant data moved between scaleunits.
|
|
@@ -23283,11 +24637,27 @@ namespace reference.`microsoft.graph` {
|
|
|
23283
24637
|
@graphDeprecated("DirectoryFeatureRolloutPolicies")
|
|
23284
24638
|
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
23285
24639
|
@contains federationConfigurations: identityProviderBase[];
|
|
24640
|
+
@contains impactedResources: impactedResource[];
|
|
23286
24641
|
@contains onPremisesSynchronization: onPremisesDirectorySynchronization[];
|
|
23287
24642
|
@contains publicKeyInfrastructure: publicKeyInfrastructureRoot | null;
|
|
24643
|
+
@contains recommendations: recommendation[];
|
|
23288
24644
|
@contains subscriptions: companySubscription[];
|
|
23289
24645
|
}
|
|
23290
24646
|
|
|
24647
|
+
@entity model directoryAudit extends entity {
|
|
24648
|
+
activityDateTime: offsetDateTime;
|
|
24649
|
+
activityDisplayName: string;
|
|
24650
|
+
additionalDetails: keyValue[] | null;
|
|
24651
|
+
category: string;
|
|
24652
|
+
correlationId: string | null;
|
|
24653
|
+
initiatedBy: auditActivityInitiator;
|
|
24654
|
+
loggedByService: string | null;
|
|
24655
|
+
operationType: string | null;
|
|
24656
|
+
result: operationResult | null;
|
|
24657
|
+
resultReason: string | null;
|
|
24658
|
+
targetResources: targetResource[] | null;
|
|
24659
|
+
}
|
|
24660
|
+
|
|
23291
24661
|
@open
|
|
23292
24662
|
@entity model directoryObject extends entity {
|
|
23293
24663
|
deletedDateTime: offsetDateTime | null;
|
|
@@ -23329,6 +24699,21 @@ namespace reference.`microsoft.graph` {
|
|
|
23329
24699
|
values: settingTemplateValue[];
|
|
23330
24700
|
}
|
|
23331
24701
|
|
|
24702
|
+
@entity model documentProcessingJob extends entity {
|
|
24703
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
24704
|
+
jobType: documentProcessingJobType | null;
|
|
24705
|
+
listItemUniqueId: string;
|
|
24706
|
+
status: documentProcessingJobStatus | null;
|
|
24707
|
+
}
|
|
24708
|
+
|
|
24709
|
+
@entity model documentSetVersion extends listItemVersion {
|
|
24710
|
+
comment: string | null;
|
|
24711
|
+
createdBy: identitySet | null;
|
|
24712
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
24713
|
+
items: documentSetVersionItem[] | null;
|
|
24714
|
+
shouldCaptureMinorVersion: boolean | null;
|
|
24715
|
+
}
|
|
24716
|
+
|
|
23332
24717
|
@entity model domain extends entity {
|
|
23333
24718
|
authenticationType: string;
|
|
23334
24719
|
availabilityStatus: string | null;
|
|
@@ -23382,6 +24767,71 @@ namespace reference.`microsoft.graph` {
|
|
|
23382
24767
|
description: string | null;
|
|
23383
24768
|
}
|
|
23384
24769
|
|
|
24770
|
+
@entity model drive extends baseItem {
|
|
24771
|
+
driveType: string | null;
|
|
24772
|
+
owner: identitySet | null;
|
|
24773
|
+
quota: quota | null;
|
|
24774
|
+
sharePointIds: sharepointIds | null;
|
|
24775
|
+
system: systemFacet | null;
|
|
24776
|
+
@contains activities: itemActivityOLD[];
|
|
24777
|
+
@contains bundles: driveItem[];
|
|
24778
|
+
@contains following: driveItem[];
|
|
24779
|
+
@contains items: driveItem[];
|
|
24780
|
+
@contains list: list | null;
|
|
24781
|
+
@contains root: driveItem | null;
|
|
24782
|
+
@contains special: driveItem[];
|
|
24783
|
+
}
|
|
24784
|
+
|
|
24785
|
+
@open
|
|
24786
|
+
@entity model driveItem extends baseItem {
|
|
24787
|
+
audio: audio | null;
|
|
24788
|
+
bundle: bundle | null;
|
|
24789
|
+
|
|
24790
|
+
@graphDeprecated("Removal")
|
|
24791
|
+
content: stream | null;
|
|
24792
|
+
contentStream: stream | null;
|
|
24793
|
+
cTag: string | null;
|
|
24794
|
+
deleted: deleted | null;
|
|
24795
|
+
file: file | null;
|
|
24796
|
+
fileSystemInfo: fileSystemInfo | null;
|
|
24797
|
+
folder: folder | null;
|
|
24798
|
+
image: image | null;
|
|
24799
|
+
location: geoCoordinates | null;
|
|
24800
|
+
lockInfo: lockInfo | null;
|
|
24801
|
+
malware: malware | null;
|
|
24802
|
+
media: media | null;
|
|
24803
|
+
`package`: `package` | null;
|
|
24804
|
+
pendingOperations: pendingOperations | null;
|
|
24805
|
+
photo: photo | null;
|
|
24806
|
+
publication: publicationFacet | null;
|
|
24807
|
+
remoteItem: remoteItem | null;
|
|
24808
|
+
root: root | null;
|
|
24809
|
+
searchResult: searchResult | null;
|
|
24810
|
+
shared: shared | null;
|
|
24811
|
+
sharepointIds: sharepointIds | null;
|
|
24812
|
+
size: int64 | null;
|
|
24813
|
+
source: driveItemSource | null;
|
|
24814
|
+
specialFolder: specialFolder | null;
|
|
24815
|
+
video: video | null;
|
|
24816
|
+
viewpoint: driveItemViewpoint | null;
|
|
24817
|
+
webDavUrl: string | null;
|
|
24818
|
+
@contains activities: itemActivityOLD[];
|
|
24819
|
+
@references analytics: itemAnalytics | null;
|
|
24820
|
+
@contains children: driveItem[];
|
|
24821
|
+
@contains extensions: extension[];
|
|
24822
|
+
@contains listItem: listItem | null;
|
|
24823
|
+
@contains permissions: permission[];
|
|
24824
|
+
@contains retentionLabel: itemRetentionLabel | null;
|
|
24825
|
+
@contains subscriptions: subscription[];
|
|
24826
|
+
@contains thumbnails: thumbnailSet[];
|
|
24827
|
+
@contains versions: driveItemVersion[];
|
|
24828
|
+
}
|
|
24829
|
+
|
|
24830
|
+
@entity model driveItemVersion extends baseItemVersion {
|
|
24831
|
+
content: stream | null;
|
|
24832
|
+
size: int64 | null;
|
|
24833
|
+
}
|
|
24834
|
+
|
|
23385
24835
|
/**
|
|
23386
24836
|
* Apple device features configuration profile.
|
|
23387
24837
|
*/
|
|
@@ -23835,12 +25285,82 @@ namespace reference.`microsoft.graph` {
|
|
|
23835
25285
|
allowedAAGUIDs: string[];
|
|
23836
25286
|
}
|
|
23837
25287
|
|
|
25288
|
+
@open
|
|
25289
|
+
@entity model fieldValueSet extends entity {
|
|
25290
|
+
}
|
|
25291
|
+
|
|
23838
25292
|
@entity model fileAttachment extends attachment {
|
|
23839
25293
|
contentBytes: binary | null;
|
|
23840
25294
|
contentId: string | null;
|
|
23841
25295
|
contentLocation: string | null;
|
|
23842
25296
|
}
|
|
23843
25297
|
|
|
25298
|
+
@entity model fileStorage extends entity {
|
|
25299
|
+
@contains containers: fileStorageContainer[];
|
|
25300
|
+
@contains containerTypeRegistrations: fileStorageContainerTypeRegistration[];
|
|
25301
|
+
@contains containerTypes: fileStorageContainerType[];
|
|
25302
|
+
@contains deletedContainers: fileStorageContainer[];
|
|
25303
|
+
}
|
|
25304
|
+
|
|
25305
|
+
@entity model fileStorageContainer extends entity {
|
|
25306
|
+
archivalDetails: siteArchivalDetails | null;
|
|
25307
|
+
assignedSensitivityLabel: assignedLabel | null;
|
|
25308
|
+
containerTypeId: guid;
|
|
25309
|
+
@computed createdDateTime: offsetDateTime;
|
|
25310
|
+
customProperties: fileStorageContainerCustomPropertyDictionary | null;
|
|
25311
|
+
description: string | null;
|
|
25312
|
+
displayName: string;
|
|
25313
|
+
externalGroupId: guid | null;
|
|
25314
|
+
informationBarrier: informationBarrier | null;
|
|
25315
|
+
lockState: siteLockState | null;
|
|
25316
|
+
owners: userIdentity[] | null;
|
|
25317
|
+
ownershipType: fileStorageContainerOwnershipType | null;
|
|
25318
|
+
settings: fileStorageContainerSettings;
|
|
25319
|
+
status: fileStorageContainerStatus | null;
|
|
25320
|
+
storageUsedInBytes: int64 | null;
|
|
25321
|
+
viewpoint: fileStorageContainerViewpoint | null;
|
|
25322
|
+
@contains columns: columnDefinition[];
|
|
25323
|
+
@contains drive: drive | null;
|
|
25324
|
+
@contains migrationJobs: sharePointMigrationJob[];
|
|
25325
|
+
@contains permissions: permission[];
|
|
25326
|
+
@contains recycleBin: recycleBin | null;
|
|
25327
|
+
@contains sharePointGroups: sharePointGroup[];
|
|
25328
|
+
}
|
|
25329
|
+
|
|
25330
|
+
@entity model fileStorageContainerType extends entity {
|
|
25331
|
+
billingClassification: fileStorageContainerBillingClassification;
|
|
25332
|
+
billingStatus: fileStorageContainerBillingStatus;
|
|
25333
|
+
@computed createdDateTime: offsetDateTime;
|
|
25334
|
+
etag: string;
|
|
25335
|
+
expirationDateTime: offsetDateTime;
|
|
25336
|
+
name: string;
|
|
25337
|
+
owningAppId: guid;
|
|
25338
|
+
settings: fileStorageContainerTypeSettings;
|
|
25339
|
+
@contains permissions: permission[];
|
|
25340
|
+
}
|
|
25341
|
+
|
|
25342
|
+
@entity model fileStorageContainerTypeAppPermissionGrant extends MsGraph.SharedModels.entity {
|
|
25343
|
+
@computed @key appId: string;
|
|
25344
|
+
applicationPermissions: fileStorageContainerTypeAppPermission[] | null;
|
|
25345
|
+
delegatedPermissions: fileStorageContainerTypeAppPermission[] | null;
|
|
25346
|
+
}
|
|
25347
|
+
|
|
25348
|
+
@entity model fileStorageContainerTypeRegistration extends entity {
|
|
25349
|
+
billingClassification: fileStorageContainerBillingClassification;
|
|
25350
|
+
billingStatus: fileStorageContainerBillingStatus;
|
|
25351
|
+
etag: string;
|
|
25352
|
+
expirationDateTime: offsetDateTime;
|
|
25353
|
+
name: string;
|
|
25354
|
+
owningAppId: guid;
|
|
25355
|
+
registeredDateTime: offsetDateTime;
|
|
25356
|
+
settings: fileStorageContainerTypeRegistrationSettings;
|
|
25357
|
+
@contains applicationPermissionGrants: fileStorageContainerTypeAppPermissionGrant[];
|
|
25358
|
+
}
|
|
25359
|
+
|
|
25360
|
+
@abstract
|
|
25361
|
+
@entity model governanceInsight extends entity {
|
|
25362
|
+
}
|
|
25363
|
+
|
|
23844
25364
|
@open
|
|
23845
25365
|
@entity model group extends directoryObject {
|
|
23846
25366
|
accessType: groupAccessType | null;
|
|
@@ -23901,6 +25421,8 @@ namespace reference.`microsoft.graph` {
|
|
|
23901
25421
|
@contains calendarView: event[];
|
|
23902
25422
|
@contains conversations: conversation[];
|
|
23903
25423
|
@references createdOnBehalfOf: directoryObject | null;
|
|
25424
|
+
@contains drive: drive | null;
|
|
25425
|
+
@contains drives: drive[];
|
|
23904
25426
|
@contains endpoints: endpoint[];
|
|
23905
25427
|
@contains events: event[];
|
|
23906
25428
|
@contains extensions: extension[];
|
|
@@ -23916,6 +25438,7 @@ namespace reference.`microsoft.graph` {
|
|
|
23916
25438
|
@contains planner: plannerGroup | null;
|
|
23917
25439
|
@contains rejectedSenders: directoryObject[];
|
|
23918
25440
|
@contains settings: directorySetting[];
|
|
25441
|
+
@contains sites: site[];
|
|
23919
25442
|
@contains threads: conversationThread[];
|
|
23920
25443
|
@references transitiveMemberOf: directoryObject[];
|
|
23921
25444
|
@references transitiveMembers: directoryObject[];
|
|
@@ -24944,10 +26467,24 @@ namespace reference.`microsoft.graph` {
|
|
|
24944
26467
|
@entity model homeRealmDiscoveryPolicy extends stsPolicy {
|
|
24945
26468
|
}
|
|
24946
26469
|
|
|
26470
|
+
@entity model horizontalSection extends entity {
|
|
26471
|
+
emphasis: sectionEmphasisType | null;
|
|
26472
|
+
layout: horizontalSectionLayoutType | null;
|
|
26473
|
+
@contains columns: horizontalSectionColumn[];
|
|
26474
|
+
}
|
|
26475
|
+
|
|
26476
|
+
@entity model horizontalSectionColumn extends entity {
|
|
26477
|
+
width: int32 | null;
|
|
26478
|
+
@contains webparts: webPart[];
|
|
26479
|
+
}
|
|
26480
|
+
|
|
24947
26481
|
@entity model identityContainer extends MsGraph.SharedModels.entity {
|
|
24948
26482
|
@contains conditionalAccess: conditionalAccessRoot | null;
|
|
24949
26483
|
}
|
|
24950
26484
|
|
|
26485
|
+
@entity model identityGovernance extends MsGraph.SharedModels.entity {
|
|
26486
|
+
}
|
|
26487
|
+
|
|
24951
26488
|
@entity model identityProtectionRoot extends MsGraph.SharedModels.entity {
|
|
24952
26489
|
@contains agentRiskDetections: agentRiskDetection[];
|
|
24953
26490
|
@contains riskDetections: riskDetection[];
|
|
@@ -24966,6 +26503,23 @@ namespace reference.`microsoft.graph` {
|
|
|
24966
26503
|
isEnabled: boolean;
|
|
24967
26504
|
}
|
|
24968
26505
|
|
|
26506
|
+
@entity model impactedResource extends entity {
|
|
26507
|
+
addedDateTime: offsetDateTime;
|
|
26508
|
+
additionalDetails: keyValue[] | null;
|
|
26509
|
+
apiUrl: string | null;
|
|
26510
|
+
displayName: string;
|
|
26511
|
+
lastModifiedBy: string;
|
|
26512
|
+
@computed lastModifiedDateTime: string;
|
|
26513
|
+
owner: string | null;
|
|
26514
|
+
portalUrl: string | null;
|
|
26515
|
+
postponeUntilDateTime: offsetDateTime | null;
|
|
26516
|
+
rank: int32 | null;
|
|
26517
|
+
recommendationId: string;
|
|
26518
|
+
resourceType: string;
|
|
26519
|
+
status: recommendationStatus;
|
|
26520
|
+
subjectId: string;
|
|
26521
|
+
}
|
|
26522
|
+
|
|
24969
26523
|
/**
|
|
24970
26524
|
* The importedAppleDeviceIdentity resource represents the imported device identity of an Apple device .
|
|
24971
26525
|
*/
|
|
@@ -25126,6 +26680,14 @@ namespace reference.`microsoft.graph` {
|
|
|
25126
26680
|
@contains deviceIdentities: importedWindowsAutopilotDeviceIdentity[];
|
|
25127
26681
|
}
|
|
25128
26682
|
|
|
26683
|
+
@entity model inactiveUsersMetricBase extends entity {
|
|
26684
|
+
appId: string | null;
|
|
26685
|
+
factDate: offsetDateTime;
|
|
26686
|
+
inactive30DayCount: int64 | null;
|
|
26687
|
+
inactive60DayCount: int64 | null;
|
|
26688
|
+
inactive90DayCount: int64 | null;
|
|
26689
|
+
}
|
|
26690
|
+
|
|
25129
26691
|
@entity model inboundSharedUserProfile extends MsGraph.SharedModels.entity {
|
|
25130
26692
|
displayName: string;
|
|
25131
26693
|
homeTenantId: string;
|
|
@@ -25156,6 +26718,19 @@ namespace reference.`microsoft.graph` {
|
|
|
25156
26718
|
isEnabledInOrganization: boolean | null;
|
|
25157
26719
|
}
|
|
25158
26720
|
|
|
26721
|
+
@entity model insightSummary extends entity {
|
|
26722
|
+
activeUsers: int64;
|
|
26723
|
+
appId: string;
|
|
26724
|
+
authenticationCompletions: int64;
|
|
26725
|
+
authenticationRequests: int64;
|
|
26726
|
+
factDate: offsetDateTime;
|
|
26727
|
+
os: string;
|
|
26728
|
+
securityTextCompletions: int64;
|
|
26729
|
+
securityTextRequests: int64;
|
|
26730
|
+
securityVoiceCompletions: int64;
|
|
26731
|
+
securityVoiceRequests: int64;
|
|
26732
|
+
}
|
|
26733
|
+
|
|
25159
26734
|
@entity model internalDomainFederation extends samlOrWsFedProvider {
|
|
25160
26735
|
activeSignInUri: string | null;
|
|
25161
26736
|
federatedIdpMfaBehavior: federatedIdpMfaBehavior | null;
|
|
@@ -27377,12 +28952,49 @@ namespace reference.`microsoft.graph` {
|
|
|
27377
28952
|
isTrusted: boolean;
|
|
27378
28953
|
}
|
|
27379
28954
|
|
|
28955
|
+
@open
|
|
28956
|
+
@entity model itemActivity extends entity {
|
|
28957
|
+
access: accessAction | null;
|
|
28958
|
+
activityDateTime: offsetDateTime | null;
|
|
28959
|
+
actor: identitySet | null;
|
|
28960
|
+
@contains driveItem: driveItem | null;
|
|
28961
|
+
}
|
|
28962
|
+
|
|
28963
|
+
@entity model itemActivityOLD extends entity {
|
|
28964
|
+
action: itemActionSet | null;
|
|
28965
|
+
actor: identitySet | null;
|
|
28966
|
+
times: itemActivityTimeSet | null;
|
|
28967
|
+
@contains driveItem: driveItem | null;
|
|
28968
|
+
@contains listItem: listItem | null;
|
|
28969
|
+
}
|
|
28970
|
+
|
|
28971
|
+
@open
|
|
28972
|
+
@entity model itemActivityStat extends entity {
|
|
28973
|
+
access: itemActionStat | null;
|
|
28974
|
+
create: itemActionStat | null;
|
|
28975
|
+
delete: itemActionStat | null;
|
|
28976
|
+
edit: itemActionStat | null;
|
|
28977
|
+
endDateTime: offsetDateTime | null;
|
|
28978
|
+
incompleteData: incompleteData | null;
|
|
28979
|
+
isTrending: boolean | null;
|
|
28980
|
+
move: itemActionStat | null;
|
|
28981
|
+
startDateTime: offsetDateTime | null;
|
|
28982
|
+
@references activities: itemActivity[];
|
|
28983
|
+
}
|
|
28984
|
+
|
|
27380
28985
|
@entity model itemAddress extends itemFacet {
|
|
27381
28986
|
detail: physicalAddress | null;
|
|
27382
28987
|
displayName: string | null;
|
|
27383
28988
|
geoCoordinates: geoCoordinates | null;
|
|
27384
28989
|
}
|
|
27385
28990
|
|
|
28991
|
+
@open
|
|
28992
|
+
@entity model itemAnalytics extends entity {
|
|
28993
|
+
@references allTime: itemActivityStat | null;
|
|
28994
|
+
@contains itemActivityStats: itemActivityStat[];
|
|
28995
|
+
@references lastSevenDays: itemActivityStat | null;
|
|
28996
|
+
}
|
|
28997
|
+
|
|
27386
28998
|
@entity model itemAttachment extends attachment {
|
|
27387
28999
|
@contains item: outlookItem | null;
|
|
27388
29000
|
}
|
|
@@ -27431,6 +29043,14 @@ namespace reference.`microsoft.graph` {
|
|
|
27431
29043
|
webUrl: string | null;
|
|
27432
29044
|
}
|
|
27433
29045
|
|
|
29046
|
+
@entity model itemRetentionLabel extends entity {
|
|
29047
|
+
isLabelAppliedExplicitly: boolean | null;
|
|
29048
|
+
labelAppliedBy: identitySet | null;
|
|
29049
|
+
labelAppliedDateTime: offsetDateTime | null;
|
|
29050
|
+
name: string | null;
|
|
29051
|
+
retentionSettings: retentionLabelSettings | null;
|
|
29052
|
+
}
|
|
29053
|
+
|
|
27434
29054
|
@entity model languageProficiency extends itemFacet {
|
|
27435
29055
|
displayName: string | null;
|
|
27436
29056
|
proficiency: languageProficiencyLevel | null;
|
|
@@ -27447,6 +29067,39 @@ namespace reference.`microsoft.graph` {
|
|
|
27447
29067
|
skuPartNumber: string | null;
|
|
27448
29068
|
}
|
|
27449
29069
|
|
|
29070
|
+
@entity model list extends baseItem {
|
|
29071
|
+
displayName: string | null;
|
|
29072
|
+
itemCount: int32 | null;
|
|
29073
|
+
list: listInfo | null;
|
|
29074
|
+
sharepointIds: sharepointIds | null;
|
|
29075
|
+
system: systemFacet | null;
|
|
29076
|
+
@contains activities: itemActivityOLD[];
|
|
29077
|
+
@contains columns: columnDefinition[];
|
|
29078
|
+
@contains contentTypes: contentType[];
|
|
29079
|
+
@contains drive: drive | null;
|
|
29080
|
+
@contains items: listItem[];
|
|
29081
|
+
@contains operations: richLongRunningOperation[];
|
|
29082
|
+
@contains permissions: permission[];
|
|
29083
|
+
@contains subscriptions: subscription[];
|
|
29084
|
+
}
|
|
29085
|
+
|
|
29086
|
+
@entity model listItem extends baseItem {
|
|
29087
|
+
contentType: contentTypeInfo | null;
|
|
29088
|
+
deleted: deleted | null;
|
|
29089
|
+
sharepointIds: sharepointIds | null;
|
|
29090
|
+
@contains activities: itemActivityOLD[];
|
|
29091
|
+
@references analytics: itemAnalytics | null;
|
|
29092
|
+
@contains documentSetVersions: documentSetVersion[];
|
|
29093
|
+
@contains driveItem: driveItem | null;
|
|
29094
|
+
@contains fields: fieldValueSet | null;
|
|
29095
|
+
@contains permissions: permission[];
|
|
29096
|
+
@contains versions: listItemVersion[];
|
|
29097
|
+
}
|
|
29098
|
+
|
|
29099
|
+
@entity model listItemVersion extends baseItemVersion {
|
|
29100
|
+
@contains fields: fieldValueSet | null;
|
|
29101
|
+
}
|
|
29102
|
+
|
|
27450
29103
|
/**
|
|
27451
29104
|
* The text content of a Notification Message Template for the specified locale.
|
|
27452
29105
|
*/
|
|
@@ -30530,6 +32183,15 @@ namespace reference.`microsoft.graph` {
|
|
|
30530
32183
|
@entity model mdmWindowsInformationProtectionPolicyPolicySetItem extends policySetItem {
|
|
30531
32184
|
}
|
|
30532
32185
|
|
|
32186
|
+
@entity model membershipOutlierInsight extends governanceInsight {
|
|
32187
|
+
containerId: string;
|
|
32188
|
+
memberId: string;
|
|
32189
|
+
outlierContainerType: outlierContainerType;
|
|
32190
|
+
outlierMemberType: outlierMemberType;
|
|
32191
|
+
@references container: directoryObject | null;
|
|
32192
|
+
@references member: directoryObject | null;
|
|
32193
|
+
}
|
|
32194
|
+
|
|
30533
32195
|
@entity model mention extends entity {
|
|
30534
32196
|
application: string | null;
|
|
30535
32197
|
clientReference: string | null;
|
|
@@ -30590,6 +32252,42 @@ namespace reference.`microsoft.graph` {
|
|
|
30590
32252
|
sequence: int32 | null;
|
|
30591
32253
|
}
|
|
30592
32254
|
|
|
32255
|
+
@entity model mfaCompletionMetric extends entity {
|
|
32256
|
+
appId: string | null;
|
|
32257
|
+
attemptsCount: int64;
|
|
32258
|
+
country: string | null;
|
|
32259
|
+
factDate: offsetDateTime | null;
|
|
32260
|
+
identityProvider: string | null;
|
|
32261
|
+
language: string | null;
|
|
32262
|
+
mfaMethod: string | null;
|
|
32263
|
+
os: string | null;
|
|
32264
|
+
successCount: int64;
|
|
32265
|
+
@references mfaFailures: mfaFailure[];
|
|
32266
|
+
}
|
|
32267
|
+
|
|
32268
|
+
@entity model mfaFailure extends entity {
|
|
32269
|
+
count: int64 | null;
|
|
32270
|
+
reason: string | null;
|
|
32271
|
+
reasonCode: mfaFailureReasonCode;
|
|
32272
|
+
}
|
|
32273
|
+
|
|
32274
|
+
@open
|
|
32275
|
+
@entity model mfaTelecomFraudMetric extends entity {
|
|
32276
|
+
captchaFailureCount: int64 | null;
|
|
32277
|
+
captchaNotTriggeredUserCount: int64 | null;
|
|
32278
|
+
captchaShownUserCount: int64 | null;
|
|
32279
|
+
captchaSuccessCount: int64 | null;
|
|
32280
|
+
factDate: offsetDateTime | null;
|
|
32281
|
+
telecomBlockedUserCount: int64 | null;
|
|
32282
|
+
}
|
|
32283
|
+
|
|
32284
|
+
@open
|
|
32285
|
+
@entity model mfaUserCountMetric extends entity {
|
|
32286
|
+
count: int64;
|
|
32287
|
+
factDate: offsetDateTime;
|
|
32288
|
+
mfaType: mfaType;
|
|
32289
|
+
}
|
|
32290
|
+
|
|
30593
32291
|
/**
|
|
30594
32292
|
* Microsoft Store for Business Apps. This class does not support Create, Delete, or Update.
|
|
30595
32293
|
*/
|
|
@@ -31476,6 +33174,21 @@ namespace reference.`microsoft.graph` {
|
|
|
31476
33174
|
windowsMobileApplicationManagementEnabled: boolean;
|
|
31477
33175
|
}
|
|
31478
33176
|
|
|
33177
|
+
@entity model monthlyInactiveUsersMetric extends inactiveUsersMetricBase {
|
|
33178
|
+
inactiveCalendarMonthCount: int64 | null;
|
|
33179
|
+
}
|
|
33180
|
+
|
|
33181
|
+
@entity model monthlyUserInsightMetricsRoot extends entity {
|
|
33182
|
+
@references activeUsers: activeUsersMetric[];
|
|
33183
|
+
@references authentications: authenticationsMetric[];
|
|
33184
|
+
@references inactiveUsers: monthlyInactiveUsersMetric[];
|
|
33185
|
+
@references mfaCompletions: mfaCompletionMetric[];
|
|
33186
|
+
@contains mfaRegisteredUsers: mfaUserCountMetric[];
|
|
33187
|
+
@references requests: userRequestsMetric[];
|
|
33188
|
+
@references signUps: userSignUpMetric[];
|
|
33189
|
+
@references summary: insightSummary[];
|
|
33190
|
+
}
|
|
33191
|
+
|
|
31479
33192
|
@entity model multiValueLegacyExtendedProperty extends entity {
|
|
31480
33193
|
value: string[] | null;
|
|
31481
33194
|
}
|
|
@@ -31520,6 +33233,12 @@ namespace reference.`microsoft.graph` {
|
|
|
31520
33233
|
state: ndesConnectorState;
|
|
31521
33234
|
}
|
|
31522
33235
|
|
|
33236
|
+
@entity model newsLinkPage extends baseSitePage {
|
|
33237
|
+
bannerImageWebUrl: string | null;
|
|
33238
|
+
newsSharepointIds: sharepointIds | null;
|
|
33239
|
+
newsWebUrl: string | null;
|
|
33240
|
+
}
|
|
33241
|
+
|
|
31523
33242
|
/**
|
|
31524
33243
|
* Notification messages are messages that are sent to end users who are determined to be not-compliant with the compliance policies defined by the administrator. Administrators choose notifications and configure them in the Intune Admin Console using the compliance policy creation page under the “Actions for non-compliance” section. Use the notificationMessageTemplate object to create your own custom notifications for administrators to choose while configuring actions for non-compliance.
|
|
31525
33244
|
*/
|
|
@@ -31948,6 +33667,12 @@ namespace reference.`microsoft.graph` {
|
|
|
31948
33667
|
@contains tasks: outlookTask[];
|
|
31949
33668
|
}
|
|
31950
33669
|
|
|
33670
|
+
@entity model pageTemplate extends baseSitePage {
|
|
33671
|
+
titleArea: titleArea | null;
|
|
33672
|
+
@contains canvasLayout: canvasLayout | null;
|
|
33673
|
+
@contains webParts: webPart[];
|
|
33674
|
+
}
|
|
33675
|
+
|
|
31951
33676
|
@entity model partnerInformation extends MsGraph.SharedModels.entity {
|
|
31952
33677
|
commerceUrl: string | null;
|
|
31953
33678
|
companyName: string | null;
|
|
@@ -31975,6 +33700,28 @@ namespace reference.`microsoft.graph` {
|
|
|
31975
33700
|
|
|
31976
33701
|
@entity model peopleAdminSettings extends entity {
|
|
31977
33702
|
@contains itemInsights: insightsSettings | null;
|
|
33703
|
+
@contains profileCardProperties: profileCardProperty[];
|
|
33704
|
+
@contains profilePropertySettings: profilePropertySetting[];
|
|
33705
|
+
@contains profileSources: profileSource[];
|
|
33706
|
+
@contains pronouns: pronounsSettings | null;
|
|
33707
|
+
}
|
|
33708
|
+
|
|
33709
|
+
@entity model permission extends entity {
|
|
33710
|
+
expirationDateTime: offsetDateTime | null;
|
|
33711
|
+
|
|
33712
|
+
@graphDeprecated("Removal")
|
|
33713
|
+
grantedTo: identitySet | null;
|
|
33714
|
+
|
|
33715
|
+
@graphDeprecated("Removal")
|
|
33716
|
+
grantedToIdentities: identitySet[] | null;
|
|
33717
|
+
grantedToIdentitiesV2: sharePointIdentitySet[] | null;
|
|
33718
|
+
grantedToV2: sharePointIdentitySet | null;
|
|
33719
|
+
hasPassword: boolean | null;
|
|
33720
|
+
inheritedFrom: itemReference | null;
|
|
33721
|
+
invitation: sharingInvitation | null;
|
|
33722
|
+
link: sharingLink | null;
|
|
33723
|
+
roles: string[] | null;
|
|
33724
|
+
shareId: string | null;
|
|
31978
33725
|
}
|
|
31979
33726
|
|
|
31980
33727
|
@entity model permissionGrantConditionSet extends entity {
|
|
@@ -32568,12 +34315,29 @@ namespace reference.`microsoft.graph` {
|
|
|
32568
34315
|
@contains websites: personWebsite[];
|
|
32569
34316
|
}
|
|
32570
34317
|
|
|
34318
|
+
@entity model profileCardProperty extends entity {
|
|
34319
|
+
annotations: profileCardAnnotation[] | null;
|
|
34320
|
+
directoryPropertyName: string | null;
|
|
34321
|
+
isVisible: boolean;
|
|
34322
|
+
}
|
|
34323
|
+
|
|
32571
34324
|
@entity model profilePhoto extends entity {
|
|
32572
34325
|
height: int32 | null;
|
|
32573
34326
|
width: int32 | null;
|
|
32574
34327
|
}
|
|
32575
34328
|
|
|
34329
|
+
@entity model profilePropertySetting extends entity {
|
|
34330
|
+
displayName: string | null;
|
|
34331
|
+
name: string | null;
|
|
34332
|
+
prioritizedSourceUrls: string[];
|
|
34333
|
+
}
|
|
34334
|
+
|
|
32576
34335
|
@entity model profileSource extends entity {
|
|
34336
|
+
displayName: string | null;
|
|
34337
|
+
kind: string | null;
|
|
34338
|
+
localizations: profileSourceLocalization[];
|
|
34339
|
+
sourceId: string | null;
|
|
34340
|
+
webUrl: string | null;
|
|
32577
34341
|
}
|
|
32578
34342
|
|
|
32579
34343
|
@entity model projectParticipation extends itemFacet {
|
|
@@ -32587,6 +34351,33 @@ namespace reference.`microsoft.graph` {
|
|
|
32587
34351
|
thumbnailUrl: string | null;
|
|
32588
34352
|
}
|
|
32589
34353
|
|
|
34354
|
+
@entity model pronounsSettings extends entity {
|
|
34355
|
+
isEnabledInOrganization: boolean;
|
|
34356
|
+
}
|
|
34357
|
+
|
|
34358
|
+
@entity model provisioningObjectSummary extends entity {
|
|
34359
|
+
|
|
34360
|
+
@graphDeprecated("Reporting")
|
|
34361
|
+
action: string | null;
|
|
34362
|
+
activityDateTime: offsetDateTime;
|
|
34363
|
+
changeId: string | null;
|
|
34364
|
+
cycleId: string | null;
|
|
34365
|
+
durationInMilliseconds: int32 | null;
|
|
34366
|
+
initiatedBy: initiator | null;
|
|
34367
|
+
jobId: string | null;
|
|
34368
|
+
modifiedProperties: modifiedProperty[] | null;
|
|
34369
|
+
provisioningAction: provisioningAction | null;
|
|
34370
|
+
provisioningStatusInfo: provisioningStatusInfo | null;
|
|
34371
|
+
provisioningSteps: provisioningStep[] | null;
|
|
34372
|
+
servicePrincipal: provisioningServicePrincipal | null;
|
|
34373
|
+
sourceIdentity: provisionedIdentity | null;
|
|
34374
|
+
sourceSystem: provisioningSystem | null;
|
|
34375
|
+
statusInfo: statusBase | null;
|
|
34376
|
+
targetIdentity: provisionedIdentity | null;
|
|
34377
|
+
targetSystem: provisioningSystem | null;
|
|
34378
|
+
tenantId: string | null;
|
|
34379
|
+
}
|
|
34380
|
+
|
|
32590
34381
|
@entity model publicKeyInfrastructureRoot extends entity {
|
|
32591
34382
|
@contains certificateBasedAuthConfigurations: certificateBasedAuthPki[];
|
|
32592
34383
|
}
|
|
@@ -32618,6 +34409,47 @@ namespace reference.`microsoft.graph` {
|
|
|
32618
34409
|
@contains roleDefinitions: unifiedRoleDefinition[];
|
|
32619
34410
|
}
|
|
32620
34411
|
|
|
34412
|
+
@entity model recommendation extends recommendationBase {
|
|
34413
|
+
}
|
|
34414
|
+
|
|
34415
|
+
@entity model recommendationBase extends entity {
|
|
34416
|
+
actionSteps: actionStep[] | null;
|
|
34417
|
+
benefits: string | null;
|
|
34418
|
+
category: recommendationCategory;
|
|
34419
|
+
@computed createdDateTime: offsetDateTime;
|
|
34420
|
+
currentScore: float64 | null;
|
|
34421
|
+
displayName: string;
|
|
34422
|
+
featureAreas: recommendationFeatureAreas[] | null;
|
|
34423
|
+
impactStartDateTime: offsetDateTime | null;
|
|
34424
|
+
impactType: string | null;
|
|
34425
|
+
insights: string | null;
|
|
34426
|
+
@computed lastCheckedDateTime: offsetDateTime | null;
|
|
34427
|
+
lastModifiedBy: string | null;
|
|
34428
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
34429
|
+
maxScore: float64 | null;
|
|
34430
|
+
postponeUntilDateTime: offsetDateTime | null;
|
|
34431
|
+
priority: recommendationPriority;
|
|
34432
|
+
recommendationType: recommendationType | null;
|
|
34433
|
+
releaseType: string | null;
|
|
34434
|
+
remediationImpact: string | null;
|
|
34435
|
+
requiredLicenses: requiredLicenses | null;
|
|
34436
|
+
status: recommendationStatus;
|
|
34437
|
+
@contains impactedResources: impactedResource[];
|
|
34438
|
+
}
|
|
34439
|
+
|
|
34440
|
+
@open
|
|
34441
|
+
@entity model recycleBin extends baseItem {
|
|
34442
|
+
settings: recycleBinSettings | null;
|
|
34443
|
+
@contains items: recycleBinItem[];
|
|
34444
|
+
}
|
|
34445
|
+
|
|
34446
|
+
@open
|
|
34447
|
+
@entity model recycleBinItem extends baseItem {
|
|
34448
|
+
deletedDateTime: offsetDateTime | null;
|
|
34449
|
+
deletedFromLocation: string | null;
|
|
34450
|
+
size: int64 | null;
|
|
34451
|
+
}
|
|
34452
|
+
|
|
32621
34453
|
@entity model referenceAttachment extends attachment {
|
|
32622
34454
|
isFolder: boolean | null;
|
|
32623
34455
|
permission: referenceAttachmentPermission | null;
|
|
@@ -32738,6 +34570,11 @@ namespace reference.`microsoft.graph` {
|
|
|
32738
34570
|
}
|
|
32739
34571
|
|
|
32740
34572
|
@entity model reportRoot extends MsGraph.SharedModels.entity {
|
|
34573
|
+
@contains applicationSignInDetailedSummary: applicationSignInDetailedSummary[];
|
|
34574
|
+
@contains authenticationMethods: authenticationMethodsRoot | null;
|
|
34575
|
+
@contains serviceActivity: serviceActivity | null;
|
|
34576
|
+
@contains sla: serviceLevelAgreementRoot | null;
|
|
34577
|
+
@contains userInsights: userInsightsRoot | null;
|
|
32741
34578
|
}
|
|
32742
34579
|
|
|
32743
34580
|
/**
|
|
@@ -32816,6 +34653,13 @@ namespace reference.`microsoft.graph` {
|
|
|
32816
34653
|
userName: string | null;
|
|
32817
34654
|
}
|
|
32818
34655
|
|
|
34656
|
+
@entity model richLongRunningOperation extends longRunningOperation {
|
|
34657
|
+
error: publicError | null;
|
|
34658
|
+
percentageComplete: int32 | null;
|
|
34659
|
+
resourceId: string | null;
|
|
34660
|
+
type: string | null;
|
|
34661
|
+
}
|
|
34662
|
+
|
|
32819
34663
|
@entity model riskDetection extends entity {
|
|
32820
34664
|
activity: activityType | null;
|
|
32821
34665
|
activityDateTime: offsetDateTime | null;
|
|
@@ -33220,6 +35064,13 @@ namespace reference.`microsoft.graph` {
|
|
|
33220
35064
|
@references managedDevices: vulnerableManagedDevice[];
|
|
33221
35065
|
}
|
|
33222
35066
|
|
|
35067
|
+
@entity model serviceActivity extends entity {
|
|
35068
|
+
}
|
|
35069
|
+
|
|
35070
|
+
@entity model serviceLevelAgreementRoot extends entity {
|
|
35071
|
+
@contains azureADAuthentication: azureADAuthentication | null;
|
|
35072
|
+
}
|
|
35073
|
+
|
|
33223
35074
|
/**
|
|
33224
35075
|
* ServiceNow properties including the ServiceNow instanceUrl, connection credentials and other metadata.
|
|
33225
35076
|
*/
|
|
@@ -33382,6 +35233,17 @@ namespace reference.`microsoft.graph` {
|
|
|
33382
35233
|
unknownDeviceCount: int32;
|
|
33383
35234
|
}
|
|
33384
35235
|
|
|
35236
|
+
@entity model sharedDriveItem extends baseItem {
|
|
35237
|
+
owner: identitySet | null;
|
|
35238
|
+
@contains driveItem: driveItem | null;
|
|
35239
|
+
@contains items: driveItem[];
|
|
35240
|
+
@contains list: list | null;
|
|
35241
|
+
@contains listItem: listItem | null;
|
|
35242
|
+
@contains permission: permission | null;
|
|
35243
|
+
@contains root: driveItem | null;
|
|
35244
|
+
@contains site: site | null;
|
|
35245
|
+
}
|
|
35246
|
+
|
|
33385
35247
|
/**
|
|
33386
35248
|
* This topic provides descriptions of the declared methods, properties and relationships exposed by the sharedPCConfiguration resource.
|
|
33387
35249
|
*/
|
|
@@ -33460,10 +35322,305 @@ namespace reference.`microsoft.graph` {
|
|
|
33460
35322
|
signInOnResume: enablement;
|
|
33461
35323
|
}
|
|
33462
35324
|
|
|
35325
|
+
@entity model sharepoint extends entity {
|
|
35326
|
+
@contains settings: sharepointSettings | null;
|
|
35327
|
+
}
|
|
35328
|
+
|
|
35329
|
+
@entity model sharePointGroup extends entity {
|
|
35330
|
+
description: string | null;
|
|
35331
|
+
principalId: string | null;
|
|
35332
|
+
title: string;
|
|
35333
|
+
@contains members: sharePointGroupMember[];
|
|
35334
|
+
}
|
|
35335
|
+
|
|
35336
|
+
@entity model sharePointGroupIdentityMapping extends sharePointIdentityMapping {
|
|
35337
|
+
groupType: sharePointIdentityMappingGroupType;
|
|
35338
|
+
sourceGroupIdentity: identity | null;
|
|
35339
|
+
targetGroupIdentity: identity | null;
|
|
35340
|
+
targetGroupMigrationData: sharePointIdentityMappingGroupMigrationData | null;
|
|
35341
|
+
}
|
|
35342
|
+
|
|
35343
|
+
@entity model sharePointGroupMember extends entity {
|
|
35344
|
+
identity: sharePointIdentitySet | null;
|
|
35345
|
+
}
|
|
35346
|
+
|
|
35347
|
+
@entity model sharePointIdentityMapping extends entity {
|
|
35348
|
+
deleted: deleted | null;
|
|
35349
|
+
sourceOrganizationId: guid;
|
|
35350
|
+
}
|
|
35351
|
+
|
|
35352
|
+
@entity model sharePointMigrationEvent extends entity {
|
|
35353
|
+
correlationId: string;
|
|
35354
|
+
eventDateTime: offsetDateTime;
|
|
35355
|
+
jobId: string;
|
|
35356
|
+
}
|
|
35357
|
+
|
|
35358
|
+
@entity model sharePointMigrationFinishManifestFileUploadEvent extends sharePointMigrationEvent {
|
|
35359
|
+
manifestFileName: string;
|
|
35360
|
+
}
|
|
35361
|
+
|
|
35362
|
+
@entity model sharePointMigrationJob extends entity {
|
|
35363
|
+
containerInfo: sharePointMigrationContainerInfo;
|
|
35364
|
+
@contains progressEvents: sharePointMigrationEvent[];
|
|
35365
|
+
}
|
|
35366
|
+
|
|
35367
|
+
@entity model sharePointMigrationJobCancelledEvent extends sharePointMigrationEvent {
|
|
35368
|
+
isCancelledByUser: boolean;
|
|
35369
|
+
totalRetryCount: int32;
|
|
35370
|
+
}
|
|
35371
|
+
|
|
35372
|
+
@entity model sharePointMigrationJobDeletedEvent extends sharePointMigrationEvent {
|
|
35373
|
+
}
|
|
35374
|
+
|
|
35375
|
+
@entity model sharePointMigrationJobErrorEvent extends sharePointMigrationEvent {
|
|
35376
|
+
error: publicError;
|
|
35377
|
+
errorLevel: sharePointMigrationJobErrorLevel;
|
|
35378
|
+
objectId: string;
|
|
35379
|
+
objectType: sharePointMigrationObjectType;
|
|
35380
|
+
objectUrl: string;
|
|
35381
|
+
totalRetryCount: int32;
|
|
35382
|
+
}
|
|
35383
|
+
|
|
35384
|
+
@entity model sharePointMigrationJobPostponedEvent extends sharePointMigrationEvent {
|
|
35385
|
+
jobsInQueue: int64;
|
|
35386
|
+
nextPickupDateTime: offsetDateTime;
|
|
35387
|
+
reason: string;
|
|
35388
|
+
totalRetryCount: int32;
|
|
35389
|
+
}
|
|
35390
|
+
|
|
35391
|
+
@entity model sharePointMigrationJobProgressEvent extends sharePointMigrationEvent {
|
|
35392
|
+
bytesProcessed: int64;
|
|
35393
|
+
bytesProcessedOnlyCurrentVersion: int64;
|
|
35394
|
+
cpuDurationMs: int64;
|
|
35395
|
+
filesProcessed: int64;
|
|
35396
|
+
filesProcessedOnlyCurrentVersion: int64;
|
|
35397
|
+
isCompleted: boolean;
|
|
35398
|
+
lastProcessedObjectId: string;
|
|
35399
|
+
objectsProcessed: int64;
|
|
35400
|
+
sqlDurationMs: int64;
|
|
35401
|
+
sqlQueryCount: int64;
|
|
35402
|
+
totalDurationMs: int64;
|
|
35403
|
+
totalErrors: int64;
|
|
35404
|
+
totalExpectedBytes: int64;
|
|
35405
|
+
totalExpectedObjects: int64;
|
|
35406
|
+
totalRetryCount: int32;
|
|
35407
|
+
totalWarnings: int64;
|
|
35408
|
+
waitTimeOnSqlThrottlingMs: int64;
|
|
35409
|
+
}
|
|
35410
|
+
|
|
35411
|
+
@entity model sharePointMigrationJobQueuedEvent extends sharePointMigrationEvent {
|
|
35412
|
+
}
|
|
35413
|
+
|
|
35414
|
+
@entity model sharePointMigrationJobStartEvent extends sharePointMigrationEvent {
|
|
35415
|
+
isRestarted: boolean;
|
|
35416
|
+
totalRetryCount: int32;
|
|
35417
|
+
}
|
|
35418
|
+
|
|
35419
|
+
@entity model sharePointMigrationsRoot extends entity {
|
|
35420
|
+
@contains crossOrganizationGroupMappings: sharePointGroupIdentityMapping[];
|
|
35421
|
+
@contains crossOrganizationMigrationTasks: sharePointMigrationTask[];
|
|
35422
|
+
@contains crossOrganizationUserMappings: sharePointUserIdentityMapping[];
|
|
35423
|
+
}
|
|
35424
|
+
|
|
35425
|
+
@entity model sharePointMigrationTask extends entity {
|
|
35426
|
+
error: publicError;
|
|
35427
|
+
finishedDateTime: offsetDateTime;
|
|
35428
|
+
@computed lastUpdatedDateTime: offsetDateTime;
|
|
35429
|
+
parameters: sharePointMigrationTaskParameters;
|
|
35430
|
+
startedDateTime: offsetDateTime;
|
|
35431
|
+
status: sharePointMigrationTaskStatus;
|
|
35432
|
+
}
|
|
35433
|
+
|
|
35434
|
+
@entity model sharePointReportSettings extends entity {
|
|
35435
|
+
@contains apiUsageReportMetrics: apiUsageReportEnablementStatus[];
|
|
35436
|
+
}
|
|
35437
|
+
|
|
35438
|
+
@entity model sharePointRoot extends entity {
|
|
35439
|
+
@contains migrations: sharePointMigrationsRoot | null;
|
|
35440
|
+
}
|
|
35441
|
+
|
|
35442
|
+
@entity model sharepointSettings extends entity {
|
|
35443
|
+
allowedDomainGuidsForSyncApp: guid | null;
|
|
35444
|
+
availableManagedPathsForSiteCreation: string[];
|
|
35445
|
+
deletedUserPersonalSiteRetentionPeriodInDays: int32 | null;
|
|
35446
|
+
excludedFileExtensionsForSyncApp: string[] | null;
|
|
35447
|
+
idleSessionSignOut: idleSessionSignOut | null;
|
|
35448
|
+
imageTaggingOption: imageTaggingChoice | null;
|
|
35449
|
+
isCommentingOnSitePagesEnabled: boolean | null;
|
|
35450
|
+
isFileActivityNotificationEnabled: boolean | null;
|
|
35451
|
+
isLegacyAuthProtocolsEnabled: boolean | null;
|
|
35452
|
+
isLoopEnabled: boolean | null;
|
|
35453
|
+
isMacSyncAppEnabled: boolean | null;
|
|
35454
|
+
isRequireAcceptingUserToMatchInvitedUserEnabled: boolean | null;
|
|
35455
|
+
isResharingByExternalUsersEnabled: boolean | null;
|
|
35456
|
+
isSharePointMobileNotificationEnabled: boolean | null;
|
|
35457
|
+
isSharePointNewsfeedEnabled: boolean | null;
|
|
35458
|
+
isSiteCreationEnabled: boolean | null;
|
|
35459
|
+
isSiteCreationUIEnabled: boolean | null;
|
|
35460
|
+
isSitePagesCreationEnabled: boolean | null;
|
|
35461
|
+
isSitesStorageLimitAutomatic: boolean | null;
|
|
35462
|
+
isSyncButtonHiddenOnPersonalSite: boolean | null;
|
|
35463
|
+
isUnmanagedSyncAppForTenantRestricted: boolean | null;
|
|
35464
|
+
personalSiteDefaultStorageLimitInMB: int64 | null;
|
|
35465
|
+
sharingAllowedDomainList: string[] | null;
|
|
35466
|
+
sharingBlockedDomainList: string[] | null;
|
|
35467
|
+
sharingCapability: sharingCapabilities | null;
|
|
35468
|
+
sharingDomainRestrictionMode: sharingDomainRestrictionMode | null;
|
|
35469
|
+
siteCreationDefaultManagedPath: string;
|
|
35470
|
+
siteCreationDefaultStorageLimitInMB: int32 | null;
|
|
35471
|
+
tenantDefaultTimezone: string | null;
|
|
35472
|
+
}
|
|
35473
|
+
|
|
35474
|
+
@entity model sharePointUserIdentityMapping extends sharePointIdentityMapping {
|
|
35475
|
+
sourceUserIdentity: userIdentity | null;
|
|
35476
|
+
targetUserIdentity: userIdentity | null;
|
|
35477
|
+
targetUserMigrationData: sharePointIdentityMappingUserMigrationData | null;
|
|
35478
|
+
userType: sharePointIdentityMappingUserType;
|
|
35479
|
+
}
|
|
35480
|
+
|
|
35481
|
+
@entity model signIn extends entity {
|
|
35482
|
+
appDisplayName: string | null;
|
|
35483
|
+
appId: string | null;
|
|
35484
|
+
appliedConditionalAccessPolicies: appliedConditionalAccessPolicy[] | null;
|
|
35485
|
+
appliedEventListeners: appliedAuthenticationEventListener[] | null;
|
|
35486
|
+
appOwnerTenantId: string | null;
|
|
35487
|
+
|
|
35488
|
+
@graphDeprecated("SignIn")
|
|
35489
|
+
appTokenProtectionStatus: tokenProtectionStatus | null;
|
|
35490
|
+
authenticationAppDeviceDetails: authenticationAppDeviceDetails | null;
|
|
35491
|
+
authenticationAppPolicyEvaluationDetails: authenticationAppPolicyDetails[] | null;
|
|
35492
|
+
authenticationContextClassReferences: authenticationContext[] | null;
|
|
35493
|
+
authenticationDetails: authenticationDetail[] | null;
|
|
35494
|
+
authenticationMethodsUsed: string[] | null;
|
|
35495
|
+
authenticationProcessingDetails: keyValue[] | null;
|
|
35496
|
+
authenticationProtocol: protocolType | null;
|
|
35497
|
+
authenticationRequirement: string | null;
|
|
35498
|
+
authenticationRequirementPolicies: authenticationRequirementPolicy[] | null;
|
|
35499
|
+
autonomousSystemNumber: int32 | null;
|
|
35500
|
+
azureResourceId: string | null;
|
|
35501
|
+
clientAppUsed: string | null;
|
|
35502
|
+
clientCredentialType: clientCredentialType | null;
|
|
35503
|
+
clientSessionId: string | null;
|
|
35504
|
+
conditionalAccessAudiences: string[] | null;
|
|
35505
|
+
conditionalAccessStatus: conditionalAccessStatus | null;
|
|
35506
|
+
correlationId: string | null;
|
|
35507
|
+
@computed createdDateTime: offsetDateTime;
|
|
35508
|
+
crossTenantAccessType: signInAccessType | null;
|
|
35509
|
+
deviceDetail: deviceDetail | null;
|
|
35510
|
+
federatedCredentialId: string | null;
|
|
35511
|
+
flaggedForReview: boolean | null;
|
|
35512
|
+
globalSecureAccessIpAddress: string | null;
|
|
35513
|
+
homeTenantId: string | null;
|
|
35514
|
+
homeTenantName: string | null;
|
|
35515
|
+
incomingTokenType: incomingTokenType | null;
|
|
35516
|
+
ipAddress: string | null;
|
|
35517
|
+
ipAddressFromResourceProvider: string | null;
|
|
35518
|
+
isInteractive: boolean | null;
|
|
35519
|
+
isTenantRestricted: boolean | null;
|
|
35520
|
+
isThroughGlobalSecureAccess: boolean | null;
|
|
35521
|
+
location: signInLocation | null;
|
|
35522
|
+
managedServiceIdentity: managedIdentity | null;
|
|
35523
|
+
mfaDetail: mfaDetail | null;
|
|
35524
|
+
networkLocationDetails: networkLocationDetail[] | null;
|
|
35525
|
+
originalRequestId: string | null;
|
|
35526
|
+
originalTransferMethod: originalTransferMethods | null;
|
|
35527
|
+
privateLinkDetails: privateLinkDetails | null;
|
|
35528
|
+
processingTimeInMilliseconds: int32 | null;
|
|
35529
|
+
resourceDisplayName: string | null;
|
|
35530
|
+
resourceId: string | null;
|
|
35531
|
+
resourceOwnerTenantId: string | null;
|
|
35532
|
+
resourceServicePrincipalId: string | null;
|
|
35533
|
+
resourceTenantId: string | null;
|
|
35534
|
+
riskDetail: riskDetail | null;
|
|
35535
|
+
riskEventTypes_v2: string[] | null;
|
|
35536
|
+
riskLevelAggregated: riskLevel | null;
|
|
35537
|
+
riskLevelDuringSignIn: riskLevel | null;
|
|
35538
|
+
riskState: riskState | null;
|
|
35539
|
+
servicePrincipalCredentialKeyId: string | null;
|
|
35540
|
+
servicePrincipalCredentialThumbprint: string | null;
|
|
35541
|
+
servicePrincipalId: string;
|
|
35542
|
+
servicePrincipalName: string | null;
|
|
35543
|
+
sessionId: string | null;
|
|
35544
|
+
sessionLifetimePolicies: sessionLifetimePolicy[] | null;
|
|
35545
|
+
signInEventTypes: string[] | null;
|
|
35546
|
+
signInIdentifier: string | null;
|
|
35547
|
+
signInIdentifierType: signInIdentifierType | null;
|
|
35548
|
+
|
|
35549
|
+
@graphDeprecated("SignIn")
|
|
35550
|
+
signInTokenProtectionStatus: tokenProtectionStatus | null;
|
|
35551
|
+
status: signInStatus | null;
|
|
35552
|
+
tokenIssuerName: string | null;
|
|
35553
|
+
tokenIssuerType: tokenIssuerType | null;
|
|
35554
|
+
tokenProtectionStatusDetails: tokenProtectionStatusDetails | null;
|
|
35555
|
+
uniqueTokenIdentifier: string | null;
|
|
35556
|
+
userAgent: string | null;
|
|
35557
|
+
userDisplayName: string | null;
|
|
35558
|
+
userId: string;
|
|
35559
|
+
userPrincipalName: string | null;
|
|
35560
|
+
userType: signInUserType | null;
|
|
35561
|
+
}
|
|
35562
|
+
|
|
35563
|
+
@entity model signInEventsActivity extends entity {
|
|
35564
|
+
activityDateTime: offsetDateTime | null;
|
|
35565
|
+
signInCount: int32 | null;
|
|
35566
|
+
}
|
|
35567
|
+
|
|
35568
|
+
@entity model signInEventsAppActivity extends MsGraph.SharedModels.entity {
|
|
35569
|
+
@computed @key appId: string;
|
|
35570
|
+
signInCount: int32;
|
|
35571
|
+
tenantId: string;
|
|
35572
|
+
@references application: application;
|
|
35573
|
+
}
|
|
35574
|
+
|
|
33463
35575
|
@entity model singleValueLegacyExtendedProperty extends entity {
|
|
33464
35576
|
value: string | null;
|
|
33465
35577
|
}
|
|
33466
35578
|
|
|
35579
|
+
@entity model site extends baseItem {
|
|
35580
|
+
deleted: deleted | null;
|
|
35581
|
+
displayName: string | null;
|
|
35582
|
+
isPersonalSite: boolean | null;
|
|
35583
|
+
locale: string | null;
|
|
35584
|
+
lockState: siteLockState | null;
|
|
35585
|
+
ownerIdentityToResolve: identityInput | null;
|
|
35586
|
+
root: root | null;
|
|
35587
|
+
settings: siteSettings | null;
|
|
35588
|
+
shareByEmailEnabled: boolean | null;
|
|
35589
|
+
sharepointIds: sharepointIds | null;
|
|
35590
|
+
siteCollection: siteCollection | null;
|
|
35591
|
+
template: siteTemplateType | null;
|
|
35592
|
+
@references analytics: itemAnalytics | null;
|
|
35593
|
+
@contains columns: columnDefinition[];
|
|
35594
|
+
@contains contentModels: contentModel[];
|
|
35595
|
+
@contains contentTypes: contentType[];
|
|
35596
|
+
@contains documentProcessingJobs: documentProcessingJob[];
|
|
35597
|
+
@contains drive: drive | null;
|
|
35598
|
+
@contains drives: drive[];
|
|
35599
|
+
@contains extensions: extension[];
|
|
35600
|
+
@references externalColumns: columnDefinition[];
|
|
35601
|
+
@contains items: baseItem[];
|
|
35602
|
+
@contains lists: list[];
|
|
35603
|
+
@contains operations: richLongRunningOperation[];
|
|
35604
|
+
@contains pages: baseSitePage[];
|
|
35605
|
+
@contains pageTemplates: pageTemplate[];
|
|
35606
|
+
@contains permissions: permission[];
|
|
35607
|
+
@contains recycleBin: recycleBin | null;
|
|
35608
|
+
@contains sites: site[];
|
|
35609
|
+
@contains termStore: reference.`microsoft.graph.termStore`.store | null;
|
|
35610
|
+
}
|
|
35611
|
+
|
|
35612
|
+
@open
|
|
35613
|
+
@entity model sitePage extends baseSitePage {
|
|
35614
|
+
promotionKind: pagePromotionType | null;
|
|
35615
|
+
reactions: reactionsFacet | null;
|
|
35616
|
+
showComments: boolean | null;
|
|
35617
|
+
showRecommendedPages: boolean | null;
|
|
35618
|
+
thumbnailWebUrl: string | null;
|
|
35619
|
+
titleArea: titleArea | null;
|
|
35620
|
+
@contains canvasLayout: canvasLayout | null;
|
|
35621
|
+
@contains webParts: webPart[];
|
|
35622
|
+
}
|
|
35623
|
+
|
|
33467
35624
|
@entity model skillProficiency extends itemFacet {
|
|
33468
35625
|
categories: string[] | null;
|
|
33469
35626
|
collaborationTags: string[] | null;
|
|
@@ -33536,6 +35693,16 @@ namespace reference.`microsoft.graph` {
|
|
|
33536
35693
|
unknownUserCount: int32;
|
|
33537
35694
|
}
|
|
33538
35695
|
|
|
35696
|
+
@entity model standardWebPart extends webPart {
|
|
35697
|
+
containerTextWebPartId: string | null;
|
|
35698
|
+
data: webPartData | null;
|
|
35699
|
+
webPartType: string | null;
|
|
35700
|
+
}
|
|
35701
|
+
|
|
35702
|
+
@entity model storage extends MsGraph.SharedModels.entity {
|
|
35703
|
+
@contains fileStorage: fileStorage | null;
|
|
35704
|
+
}
|
|
35705
|
+
|
|
33539
35706
|
@abstract
|
|
33540
35707
|
@entity model stsPolicy extends policyBase {
|
|
33541
35708
|
definition: string[];
|
|
@@ -33571,6 +35738,26 @@ namespace reference.`microsoft.graph` {
|
|
|
33571
35738
|
resource: string;
|
|
33572
35739
|
}
|
|
33573
35740
|
|
|
35741
|
+
@entity model summarizedSignIn extends entity {
|
|
35742
|
+
agent: reference.`microsoft.graph.agentic`.agentSignIn | null;
|
|
35743
|
+
aggregationDateTime: offsetDateTime | null;
|
|
35744
|
+
appDisplayName: string | null;
|
|
35745
|
+
appId: string | null;
|
|
35746
|
+
conditionalAccessStatus: conditionalAccessStatus | null;
|
|
35747
|
+
firstSignInDateTime: offsetDateTime | null;
|
|
35748
|
+
ipAddress: string | null;
|
|
35749
|
+
managedServiceIdentity: managedIdentity | null;
|
|
35750
|
+
resourceDisplayName: string | null;
|
|
35751
|
+
resourceId: string | null;
|
|
35752
|
+
servicePrincipalId: string | null;
|
|
35753
|
+
servicePrincipalName: string | null;
|
|
35754
|
+
signInCount: int64 | null;
|
|
35755
|
+
status: signInStatus | null;
|
|
35756
|
+
tenantId: string | null;
|
|
35757
|
+
tokenIssuerType: tokenIssuerType;
|
|
35758
|
+
userPrincipalName: string | null;
|
|
35759
|
+
}
|
|
35760
|
+
|
|
33574
35761
|
@entity model symantecCodeSigningCertificate extends entity {
|
|
33575
35762
|
/**
|
|
33576
35763
|
* The Windows Symantec Code-Signing Certificate in the raw data format.
|
|
@@ -33827,6 +36014,18 @@ namespace reference.`microsoft.graph` {
|
|
|
33827
36014
|
@references termsAndConditions: termsAndConditions | null;
|
|
33828
36015
|
}
|
|
33829
36016
|
|
|
36017
|
+
@entity model textWebPart extends webPart {
|
|
36018
|
+
innerHtml: string | null;
|
|
36019
|
+
}
|
|
36020
|
+
|
|
36021
|
+
@open
|
|
36022
|
+
@entity model thumbnailSet extends entity {
|
|
36023
|
+
large: thumbnail | null;
|
|
36024
|
+
medium: thumbnail | null;
|
|
36025
|
+
small: thumbnail | null;
|
|
36026
|
+
source: thumbnail | null;
|
|
36027
|
+
}
|
|
36028
|
+
|
|
33830
36029
|
@entity model tokenIssuancePolicy extends stsPolicy {
|
|
33831
36030
|
}
|
|
33832
36031
|
|
|
@@ -34026,6 +36225,7 @@ namespace reference.`microsoft.graph` {
|
|
|
34026
36225
|
schools: string[] | null;
|
|
34027
36226
|
securityIdentifier: string | null;
|
|
34028
36227
|
showInAddressList: boolean | null;
|
|
36228
|
+
signInActivity: signInActivity | null;
|
|
34029
36229
|
signInSessionsValidFromDateTime: offsetDateTime | null;
|
|
34030
36230
|
skills: string[] | null;
|
|
34031
36231
|
state: string | null;
|
|
@@ -34049,8 +36249,11 @@ namespace reference.`microsoft.graph` {
|
|
|
34049
36249
|
*/
|
|
34050
36250
|
@contains deviceManagementTroubleshootingEvents: deviceManagementTroubleshootingEvent[];
|
|
34051
36251
|
@references directReports: directoryObject[];
|
|
36252
|
+
@contains drive: drive | null;
|
|
36253
|
+
@contains drives: drive[];
|
|
34052
36254
|
@contains events: event[];
|
|
34053
36255
|
@contains extensions: extension[];
|
|
36256
|
+
@references followedSites: site[];
|
|
34054
36257
|
@contains inferenceClassification: inferenceClassification | null;
|
|
34055
36258
|
@contains joinedGroups: group[];
|
|
34056
36259
|
@contains licenseDetails: licenseDetails[];
|
|
@@ -34145,6 +36348,22 @@ namespace reference.`microsoft.graph` {
|
|
|
34145
36348
|
binaryData: binary | null;
|
|
34146
36349
|
}
|
|
34147
36350
|
|
|
36351
|
+
@entity model userCountMetric extends entity {
|
|
36352
|
+
count: int64;
|
|
36353
|
+
factDate: offsetDateTime;
|
|
36354
|
+
language: string | null;
|
|
36355
|
+
}
|
|
36356
|
+
|
|
36357
|
+
@entity model userEventsSummary extends entity {
|
|
36358
|
+
authMethod: usageAuthMethod;
|
|
36359
|
+
eventDateTime: offsetDateTime;
|
|
36360
|
+
failureReason: string;
|
|
36361
|
+
feature: featureType;
|
|
36362
|
+
isSuccess: boolean;
|
|
36363
|
+
userDisplayName: string;
|
|
36364
|
+
userPrincipalName: string;
|
|
36365
|
+
}
|
|
36366
|
+
|
|
34148
36367
|
/**
|
|
34149
36368
|
* The user experience analytics anomaly entity contains anomaly details.
|
|
34150
36369
|
*/
|
|
@@ -35915,6 +38134,11 @@ namespace reference.`microsoft.graph` {
|
|
|
35915
38134
|
workFromAnywhereScore: float64;
|
|
35916
38135
|
}
|
|
35917
38136
|
|
|
38137
|
+
@entity model userInsightsRoot extends entity {
|
|
38138
|
+
@contains daily: dailyUserInsightMetricsRoot | null;
|
|
38139
|
+
@contains monthly: monthlyUserInsightMetricsRoot | null;
|
|
38140
|
+
}
|
|
38141
|
+
|
|
35918
38142
|
@entity model userInsightsSettings extends entity {
|
|
35919
38143
|
isEnabled: boolean;
|
|
35920
38144
|
}
|
|
@@ -35945,6 +38169,20 @@ namespace reference.`microsoft.graph` {
|
|
|
35945
38169
|
@contains deviceStates: deviceInstallState[];
|
|
35946
38170
|
}
|
|
35947
38171
|
|
|
38172
|
+
@entity model userMfaSignInSummary extends entity {
|
|
38173
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
38174
|
+
multiFactorSignIns: int64 | null;
|
|
38175
|
+
singleFactorSignIns: int64 | null;
|
|
38176
|
+
totalSignIns: int64 | null;
|
|
38177
|
+
}
|
|
38178
|
+
|
|
38179
|
+
@entity model userPasswordResetsAndChangesSummary extends entity {
|
|
38180
|
+
aggregatedDateTime: offsetDateTime | null;
|
|
38181
|
+
changePasswordSelfServiceCount: int64 | null;
|
|
38182
|
+
passwordResetsByAdminCount: int64 | null;
|
|
38183
|
+
passwordResetsSelfServiceCount: int64 | null;
|
|
38184
|
+
}
|
|
38185
|
+
|
|
35948
38186
|
/**
|
|
35949
38187
|
* Entity that encapsulates all information required for a user's PFX certificates.
|
|
35950
38188
|
*/
|
|
@@ -35999,12 +38237,73 @@ namespace reference.`microsoft.graph` {
|
|
|
35999
38237
|
userPrincipalName: string | null;
|
|
36000
38238
|
}
|
|
36001
38239
|
|
|
38240
|
+
@entity model userRegistrationActivitySummary extends entity {
|
|
38241
|
+
authMethod: usageAuthMethod;
|
|
38242
|
+
failureActivityCount: int64;
|
|
38243
|
+
feature: featureType;
|
|
38244
|
+
successfulActivityCount: int64;
|
|
38245
|
+
}
|
|
38246
|
+
|
|
38247
|
+
@entity model userRegistrationDetails extends entity {
|
|
38248
|
+
defaultMfaMethod: defaultMfaMethodType | null;
|
|
38249
|
+
isAdmin: boolean | null;
|
|
38250
|
+
isMfaCapable: boolean;
|
|
38251
|
+
isMfaRegistered: boolean;
|
|
38252
|
+
isPasswordlessCapable: boolean;
|
|
38253
|
+
isSsprCapable: boolean;
|
|
38254
|
+
isSsprEnabled: boolean;
|
|
38255
|
+
isSsprRegistered: boolean;
|
|
38256
|
+
isSystemPreferredAuthenticationMethodEnabled: boolean | null;
|
|
38257
|
+
@computed lastUpdatedDateTime: offsetDateTime;
|
|
38258
|
+
methodsRegistered: string[] | null;
|
|
38259
|
+
systemPreferredAuthenticationMethods: string[] | null;
|
|
38260
|
+
userDisplayName: string;
|
|
38261
|
+
userPreferredMethodForSecondaryAuthentication: userDefaultAuthenticationMethod | null;
|
|
38262
|
+
userPrincipalName: string;
|
|
38263
|
+
userType: signInUserType | null;
|
|
38264
|
+
}
|
|
38265
|
+
|
|
38266
|
+
@entity model userRequestsMetric extends entity {
|
|
38267
|
+
appId: string | null;
|
|
38268
|
+
browser: string | null;
|
|
38269
|
+
country: string | null;
|
|
38270
|
+
factDate: offsetDateTime | null;
|
|
38271
|
+
identityProvider: string | null;
|
|
38272
|
+
language: string | null;
|
|
38273
|
+
requestCount: int64;
|
|
38274
|
+
}
|
|
38275
|
+
|
|
36002
38276
|
@entity model userSettings extends entity {
|
|
36003
38277
|
@contains contactMergeSuggestions: contactMergeSuggestions | null;
|
|
36004
38278
|
@contains itemInsights: userInsightsSettings | null;
|
|
36005
38279
|
@contains regionalAndLanguageSettings: regionalAndLanguageSettings | null;
|
|
36006
38280
|
}
|
|
36007
38281
|
|
|
38282
|
+
@entity model userSignInUsageByAuthMethodActivity extends MsGraph.SharedModels.entity {
|
|
38283
|
+
@computed @key authenticationMethod: string;
|
|
38284
|
+
successActivityCount: int64;
|
|
38285
|
+
}
|
|
38286
|
+
|
|
38287
|
+
@entity model userSignUpMetric extends entity {
|
|
38288
|
+
appId: string | null;
|
|
38289
|
+
count: int64;
|
|
38290
|
+
country: string | null;
|
|
38291
|
+
factDate: offsetDateTime | null;
|
|
38292
|
+
os: string | null;
|
|
38293
|
+
}
|
|
38294
|
+
|
|
38295
|
+
@entity model verticalSection extends entity {
|
|
38296
|
+
emphasis: sectionEmphasisType | null;
|
|
38297
|
+
@contains webparts: webPart[];
|
|
38298
|
+
}
|
|
38299
|
+
|
|
38300
|
+
@entity model videoNewsLinkPage extends baseSitePage {
|
|
38301
|
+
bannerImageWebUrl: string | null;
|
|
38302
|
+
newsSharepointIds: sharepointIds | null;
|
|
38303
|
+
newsWebUrl: string | null;
|
|
38304
|
+
videoDuration: duration | null;
|
|
38305
|
+
}
|
|
38306
|
+
|
|
36008
38307
|
/**
|
|
36009
38308
|
* Base VPN Configuration profile.
|
|
36010
38309
|
*/
|
|
@@ -36154,6 +38453,10 @@ namespace reference.`microsoft.graph` {
|
|
|
36154
38453
|
@contains corsConfigurations: corsConfiguration_v2[];
|
|
36155
38454
|
}
|
|
36156
38455
|
|
|
38456
|
+
@abstract
|
|
38457
|
+
@entity model webPart extends entity {
|
|
38458
|
+
}
|
|
38459
|
+
|
|
36157
38460
|
@entity model whatIfAnalysisResult extends conditionalAccessPolicy {
|
|
36158
38461
|
analysisReasons: whatIfAnalysisReasons;
|
|
36159
38462
|
policyApplies: boolean;
|
|
@@ -42645,6 +44948,20 @@ namespace reference.`microsoft.graph` {
|
|
|
42645
44948
|
inactive: 1,
|
|
42646
44949
|
}
|
|
42647
44950
|
|
|
44951
|
+
enum aggregationPeriod {
|
|
44952
|
+
d1: 0,
|
|
44953
|
+
d7: 1,
|
|
44954
|
+
d30: 2,
|
|
44955
|
+
unknownFutureValue: 3,
|
|
44956
|
+
}
|
|
44957
|
+
|
|
44958
|
+
enum aggregationWindow {
|
|
44959
|
+
h1: 0,
|
|
44960
|
+
h6: 1,
|
|
44961
|
+
d1: 2,
|
|
44962
|
+
unknownFutureValue: 3,
|
|
44963
|
+
}
|
|
44964
|
+
|
|
42648
44965
|
@graphFlags
|
|
42649
44966
|
enum allowedAudiences {
|
|
42650
44967
|
me: 0,
|
|
@@ -43958,6 +46275,14 @@ namespace reference.`microsoft.graph` {
|
|
|
43958
46275
|
wep: 2,
|
|
43959
46276
|
}
|
|
43960
46277
|
|
|
46278
|
+
enum apiUsageReportOnboardingStatus {
|
|
46279
|
+
enabling: 0,
|
|
46280
|
+
enabled: 1,
|
|
46281
|
+
disabling: 2,
|
|
46282
|
+
disabled: 3,
|
|
46283
|
+
unknownFutureValue: 4,
|
|
46284
|
+
}
|
|
46285
|
+
|
|
43961
46286
|
enum appCredentialRestrictionType {
|
|
43962
46287
|
passwordAddition: 0,
|
|
43963
46288
|
passwordLifetime: 1,
|
|
@@ -44264,6 +46589,19 @@ namespace reference.`microsoft.graph` {
|
|
|
44264
46589
|
desktop: 2,
|
|
44265
46590
|
}
|
|
44266
46591
|
|
|
46592
|
+
enum appliedConditionalAccessPolicyResult {
|
|
46593
|
+
success: 0,
|
|
46594
|
+
failure: 1,
|
|
46595
|
+
notApplied: 2,
|
|
46596
|
+
notEnabled: 3,
|
|
46597
|
+
`unknown`: 4,
|
|
46598
|
+
unknownFutureValue: 5,
|
|
46599
|
+
reportOnlySuccess: 6,
|
|
46600
|
+
reportOnlyFailure: 7,
|
|
46601
|
+
reportOnlyNotApplied: 8,
|
|
46602
|
+
reportOnlyInterrupted: 9,
|
|
46603
|
+
}
|
|
46604
|
+
|
|
44267
46605
|
/**
|
|
44268
46606
|
* Possible values of the compliance app list.
|
|
44269
46607
|
*/
|
|
@@ -44611,6 +46949,73 @@ namespace reference.`microsoft.graph` {
|
|
|
44611
46949
|
unknownFutureValue: 2,
|
|
44612
46950
|
}
|
|
44613
46951
|
|
|
46952
|
+
enum authenticationAppAdminConfiguration {
|
|
46953
|
+
notApplicable: 0,
|
|
46954
|
+
enabled: 1,
|
|
46955
|
+
disabled: 2,
|
|
46956
|
+
unknownFutureValue: 3,
|
|
46957
|
+
}
|
|
46958
|
+
|
|
46959
|
+
enum authenticationAppEvaluation {
|
|
46960
|
+
success: 0,
|
|
46961
|
+
failure: 1,
|
|
46962
|
+
unknownFutureValue: 2,
|
|
46963
|
+
}
|
|
46964
|
+
|
|
46965
|
+
enum authenticationAppPolicyStatus {
|
|
46966
|
+
`unknown`: 0,
|
|
46967
|
+
appLockOutOfDate: 1,
|
|
46968
|
+
appLockEnabled: 2,
|
|
46969
|
+
appLockDisabled: 3,
|
|
46970
|
+
appContextOutOfDate: 4,
|
|
46971
|
+
appContextShown: 5,
|
|
46972
|
+
appContextNotShown: 6,
|
|
46973
|
+
locationContextOutOfDate: 7,
|
|
46974
|
+
locationContextShown: 8,
|
|
46975
|
+
locationContextNotShown: 9,
|
|
46976
|
+
numberMatchOutOfDate: 10,
|
|
46977
|
+
numberMatchCorrectNumberEntered: 11,
|
|
46978
|
+
numberMatchIncorrectNumberEntered: 12,
|
|
46979
|
+
numberMatchDeny: 13,
|
|
46980
|
+
tamperResistantHardwareOutOfDate: 14,
|
|
46981
|
+
tamperResistantHardwareUsed: 15,
|
|
46982
|
+
tamperResistantHardwareNotUsed: 16,
|
|
46983
|
+
unknownFutureValue: 17,
|
|
46984
|
+
}
|
|
46985
|
+
|
|
46986
|
+
enum authenticationContextDetail {
|
|
46987
|
+
required: 0,
|
|
46988
|
+
previouslySatisfied: 1,
|
|
46989
|
+
notApplicable: 2,
|
|
46990
|
+
unknownFutureValue: 3,
|
|
46991
|
+
}
|
|
46992
|
+
|
|
46993
|
+
enum authenticationEventType {
|
|
46994
|
+
tokenIssuanceStart: 0,
|
|
46995
|
+
pageRenderStart: 1,
|
|
46996
|
+
unknownFutureValue: 2,
|
|
46997
|
+
}
|
|
46998
|
+
|
|
46999
|
+
enum authenticationFailureReasonCode {
|
|
47000
|
+
incomplete: 0,
|
|
47001
|
+
denied: 1,
|
|
47002
|
+
systemFailure: 2,
|
|
47003
|
+
badRequest: 3,
|
|
47004
|
+
other: 4,
|
|
47005
|
+
unknownFutureValue: 5,
|
|
47006
|
+
userError: 6,
|
|
47007
|
+
configError: 7,
|
|
47008
|
+
}
|
|
47009
|
+
|
|
47010
|
+
enum authenticationMethodFeature {
|
|
47011
|
+
ssprRegistered: 0,
|
|
47012
|
+
ssprEnabled: 1,
|
|
47013
|
+
ssprCapable: 2,
|
|
47014
|
+
passwordlessCapable: 3,
|
|
47015
|
+
mfaCapable: 4,
|
|
47016
|
+
unknownFutureValue: 5,
|
|
47017
|
+
}
|
|
47018
|
+
|
|
44614
47019
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
44615
47020
|
enum authenticationMethodKeyStrength {
|
|
44616
47021
|
normal: 0,
|
|
@@ -44705,6 +47110,19 @@ namespace reference.`microsoft.graph` {
|
|
|
44705
47110
|
unknownFutureValue: 2,
|
|
44706
47111
|
}
|
|
44707
47112
|
|
|
47113
|
+
enum authenticationStrengthResult {
|
|
47114
|
+
notSet: 0,
|
|
47115
|
+
skippedForProofUp: 1,
|
|
47116
|
+
satisfied: 2,
|
|
47117
|
+
singleChallengeRequired: 3,
|
|
47118
|
+
multipleChallengesRequired: 4,
|
|
47119
|
+
singleRegistrationRequired: 5,
|
|
47120
|
+
multipleRegistrationsRequired: 6,
|
|
47121
|
+
cannotSatisfyDueToCombinationConfiguration: 7,
|
|
47122
|
+
cannotSatisfy: 8,
|
|
47123
|
+
unknownFutureValue: 9,
|
|
47124
|
+
}
|
|
47125
|
+
|
|
44708
47126
|
/**
|
|
44709
47127
|
* Authentication transform values for Windows10 VPN policies with IKEv2 connection type.
|
|
44710
47128
|
*/
|
|
@@ -45213,6 +47631,16 @@ namespace reference.`microsoft.graph` {
|
|
|
45213
47631
|
unknownFutureValue: 99,
|
|
45214
47632
|
}
|
|
45215
47633
|
|
|
47634
|
+
enum clientCredentialType {
|
|
47635
|
+
none: 0,
|
|
47636
|
+
clientSecret: 1,
|
|
47637
|
+
clientAssertion: 2,
|
|
47638
|
+
federatedIdentityCredential: 3,
|
|
47639
|
+
managedIdentity: 4,
|
|
47640
|
+
certificate: 5,
|
|
47641
|
+
unknownFutureValue: 6,
|
|
47642
|
+
}
|
|
47643
|
+
|
|
45216
47644
|
enum cloudAppSecuritySessionControlType {
|
|
45217
47645
|
mcasConfigured: 0,
|
|
45218
47646
|
monitorOnly: 1,
|
|
@@ -45556,6 +47984,28 @@ namespace reference.`microsoft.graph` {
|
|
|
45556
47984
|
remediationStringsMissing: 31,
|
|
45557
47985
|
}
|
|
45558
47986
|
|
|
47987
|
+
enum columnTypes {
|
|
47988
|
+
note: 0,
|
|
47989
|
+
text: 1,
|
|
47990
|
+
choice: 2,
|
|
47991
|
+
multichoice: 3,
|
|
47992
|
+
number: 4,
|
|
47993
|
+
currency: 5,
|
|
47994
|
+
dateTime: 6,
|
|
47995
|
+
lookup: 7,
|
|
47996
|
+
`boolean`: 8,
|
|
47997
|
+
user: 9,
|
|
47998
|
+
url: 10,
|
|
47999
|
+
calculated: 11,
|
|
48000
|
+
location: 12,
|
|
48001
|
+
geolocation: 13,
|
|
48002
|
+
term: 14,
|
|
48003
|
+
multiterm: 15,
|
|
48004
|
+
thumbnail: 16,
|
|
48005
|
+
approvalStatus: 17,
|
|
48006
|
+
unknownFutureValue: 18,
|
|
48007
|
+
}
|
|
48008
|
+
|
|
45559
48009
|
enum comanagementEligibleType {
|
|
45560
48010
|
comanaged: 1,
|
|
45561
48011
|
eligible: 2,
|
|
@@ -45650,6 +48100,28 @@ namespace reference.`microsoft.graph` {
|
|
|
45650
48100
|
unknownFutureValue: 6,
|
|
45651
48101
|
}
|
|
45652
48102
|
|
|
48103
|
+
@graphFlags
|
|
48104
|
+
enum conditionalAccessConditions {
|
|
48105
|
+
none: 0,
|
|
48106
|
+
application: 1,
|
|
48107
|
+
users: 2,
|
|
48108
|
+
devicePlatform: 4,
|
|
48109
|
+
location: 8,
|
|
48110
|
+
clientType: 16,
|
|
48111
|
+
signInRisk: 32,
|
|
48112
|
+
userRisk: 64,
|
|
48113
|
+
time: 128,
|
|
48114
|
+
deviceState: 256,
|
|
48115
|
+
client: 512,
|
|
48116
|
+
ipAddressSeenByAzureAD: 1024,
|
|
48117
|
+
ipAddressSeenByResourceProvider: 2048,
|
|
48118
|
+
unknownFutureValue: 4096,
|
|
48119
|
+
servicePrincipals: 8192,
|
|
48120
|
+
servicePrincipalRisk: 16384,
|
|
48121
|
+
authenticationFlows: 32768,
|
|
48122
|
+
insiderRisk: 65536,
|
|
48123
|
+
}
|
|
48124
|
+
|
|
45653
48125
|
enum conditionalAccessDevicePlatform {
|
|
45654
48126
|
android: 0,
|
|
45655
48127
|
iOS: 1,
|
|
@@ -45691,6 +48163,15 @@ namespace reference.`microsoft.graph` {
|
|
|
45691
48163
|
unknownFutureValue: 64,
|
|
45692
48164
|
}
|
|
45693
48165
|
|
|
48166
|
+
enum conditionalAccessPolicyResult {
|
|
48167
|
+
success: 0,
|
|
48168
|
+
failure: 1,
|
|
48169
|
+
notApplied: 2,
|
|
48170
|
+
notEnabled: 3,
|
|
48171
|
+
`unknown`: 4,
|
|
48172
|
+
unknownFutureValue: 5,
|
|
48173
|
+
}
|
|
48174
|
+
|
|
45694
48175
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
45695
48176
|
enum conditionalAccessPolicyState {
|
|
45696
48177
|
enabled: 0,
|
|
@@ -45698,6 +48179,53 @@ namespace reference.`microsoft.graph` {
|
|
|
45698
48179
|
enabledForReportingButNotEnforced: 2,
|
|
45699
48180
|
}
|
|
45700
48181
|
|
|
48182
|
+
enum conditionalAccessRule {
|
|
48183
|
+
allApps: 0,
|
|
48184
|
+
firstPartyApps: 1,
|
|
48185
|
+
office365: 2,
|
|
48186
|
+
appId: 3,
|
|
48187
|
+
acr: 4,
|
|
48188
|
+
appFilter: 5,
|
|
48189
|
+
allUsers: 6,
|
|
48190
|
+
guest: 7,
|
|
48191
|
+
groupId: 8,
|
|
48192
|
+
roleId: 9,
|
|
48193
|
+
userId: 10,
|
|
48194
|
+
allDevicePlatforms: 11,
|
|
48195
|
+
devicePlatform: 12,
|
|
48196
|
+
allLocations: 13,
|
|
48197
|
+
insideCorpnet: 14,
|
|
48198
|
+
allTrustedLocations: 15,
|
|
48199
|
+
locationId: 16,
|
|
48200
|
+
allDevices: 17,
|
|
48201
|
+
deviceFilter: 18,
|
|
48202
|
+
deviceState: 19,
|
|
48203
|
+
unknownFutureValue: 20,
|
|
48204
|
+
deviceFilterIncludeRuleNotMatched: 21,
|
|
48205
|
+
allDeviceStates: 22,
|
|
48206
|
+
anonymizedIPAddress: 23,
|
|
48207
|
+
unfamiliarFeatures: 24,
|
|
48208
|
+
nationStateIPAddress: 25,
|
|
48209
|
+
realTimeThreatIntelligence: 26,
|
|
48210
|
+
internalGuest: 27,
|
|
48211
|
+
b2bCollaborationGuest: 28,
|
|
48212
|
+
b2bCollaborationMember: 29,
|
|
48213
|
+
b2bDirectConnectUser: 30,
|
|
48214
|
+
otherExternalUser: 31,
|
|
48215
|
+
serviceProvider: 32,
|
|
48216
|
+
microsoftAdminPortals: 33,
|
|
48217
|
+
deviceCodeFlow: 34,
|
|
48218
|
+
authenticationTransfer: 35,
|
|
48219
|
+
insiderRisk: 36,
|
|
48220
|
+
}
|
|
48221
|
+
|
|
48222
|
+
enum conditionalAccessStatus {
|
|
48223
|
+
success: 0,
|
|
48224
|
+
failure: 1,
|
|
48225
|
+
notApplied: 2,
|
|
48226
|
+
unknownFutureValue: 3,
|
|
48227
|
+
}
|
|
48228
|
+
|
|
45701
48229
|
@graphFlags
|
|
45702
48230
|
enum conditionalAccessTransferMethods {
|
|
45703
48231
|
none: 0,
|
|
@@ -45936,6 +48464,16 @@ namespace reference.`microsoft.graph` {
|
|
|
45936
48464
|
inactive: 1,
|
|
45937
48465
|
}
|
|
45938
48466
|
|
|
48467
|
+
enum contentModelType {
|
|
48468
|
+
teachingMethod: 0,
|
|
48469
|
+
layoutMethod: 1,
|
|
48470
|
+
freeformSelectionMethod: 2,
|
|
48471
|
+
prebuiltContractModel: 3,
|
|
48472
|
+
prebuiltInvoiceModel: 4,
|
|
48473
|
+
prebuiltReceiptModel: 5,
|
|
48474
|
+
unknownFutureValue: 6,
|
|
48475
|
+
}
|
|
48476
|
+
|
|
45939
48477
|
enum continuousAccessEvaluationMode {
|
|
45940
48478
|
strictEnforcement: 0,
|
|
45941
48479
|
disabled: 1,
|
|
@@ -46045,6 +48583,16 @@ namespace reference.`microsoft.graph` {
|
|
|
46045
48583
|
saturday: 6,
|
|
46046
48584
|
}
|
|
46047
48585
|
|
|
48586
|
+
enum defaultMfaMethodType {
|
|
48587
|
+
none: 0,
|
|
48588
|
+
mobilePhone: 1,
|
|
48589
|
+
alternateMobilePhone: 2,
|
|
48590
|
+
officePhone: 3,
|
|
48591
|
+
microsoftAuthenticatorPush: 4,
|
|
48592
|
+
softwareOneTimePasscode: 5,
|
|
48593
|
+
unknownFutureValue: 6,
|
|
48594
|
+
}
|
|
48595
|
+
|
|
46048
48596
|
/**
|
|
46049
48597
|
* Possible values of Defender Attack Surface Reduction Rules
|
|
46050
48598
|
*/
|
|
@@ -49462,6 +52010,19 @@ namespace reference.`microsoft.graph` {
|
|
|
49462
52010
|
allowAll: 2,
|
|
49463
52011
|
}
|
|
49464
52012
|
|
|
52013
|
+
enum documentProcessingJobStatus {
|
|
52014
|
+
inProgress: 0,
|
|
52015
|
+
completed: 1,
|
|
52016
|
+
failed: 2,
|
|
52017
|
+
unknownFutureValue: 3,
|
|
52018
|
+
}
|
|
52019
|
+
|
|
52020
|
+
enum documentProcessingJobType {
|
|
52021
|
+
file: 0,
|
|
52022
|
+
folder: 1,
|
|
52023
|
+
unknownFutureValue: 2,
|
|
52024
|
+
}
|
|
52025
|
+
|
|
49465
52026
|
/**
|
|
49466
52027
|
* Domainname source.
|
|
49467
52028
|
*/
|
|
@@ -49477,6 +52038,20 @@ namespace reference.`microsoft.graph` {
|
|
|
49477
52038
|
netBiosDomainName: 1,
|
|
49478
52039
|
}
|
|
49479
52040
|
|
|
52041
|
+
enum driveItemSourceApplication {
|
|
52042
|
+
teams: 0,
|
|
52043
|
+
yammer: 1,
|
|
52044
|
+
sharePoint: 2,
|
|
52045
|
+
oneDrive: 3,
|
|
52046
|
+
stream: 4,
|
|
52047
|
+
powerPoint: 5,
|
|
52048
|
+
office: 6,
|
|
52049
|
+
loki: 7,
|
|
52050
|
+
loop: 8,
|
|
52051
|
+
other: 9,
|
|
52052
|
+
unknownFutureValue: 10,
|
|
52053
|
+
}
|
|
52054
|
+
|
|
49480
52055
|
/**
|
|
49481
52056
|
* An enum type to represent approval actions of single or list of drivers.
|
|
49482
52057
|
*/
|
|
@@ -50355,6 +52930,16 @@ namespace reference.`microsoft.graph` {
|
|
|
50355
52930
|
restImmutableEntryId: 4,
|
|
50356
52931
|
}
|
|
50357
52932
|
|
|
52933
|
+
enum expirationRequirement {
|
|
52934
|
+
rememberMultifactorAuthenticationOnTrustedDevices: 0,
|
|
52935
|
+
tenantTokenLifetimePolicy: 1,
|
|
52936
|
+
audienceTokenLifetimePolicy: 2,
|
|
52937
|
+
signInFrequencyPeriodicReauthentication: 3,
|
|
52938
|
+
ngcMfa: 4,
|
|
52939
|
+
signInFrequencyEveryTime: 5,
|
|
52940
|
+
unknownFutureValue: 6,
|
|
52941
|
+
}
|
|
52942
|
+
|
|
50358
52943
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
50359
52944
|
enum externalAudienceScope {
|
|
50360
52945
|
none: 0,
|
|
@@ -50382,6 +52967,12 @@ namespace reference.`microsoft.graph` {
|
|
|
50382
52967
|
unknownFutureValue: 3,
|
|
50383
52968
|
}
|
|
50384
52969
|
|
|
52970
|
+
enum featureType {
|
|
52971
|
+
registration: 0,
|
|
52972
|
+
reset: 1,
|
|
52973
|
+
unknownFutureValue: 2,
|
|
52974
|
+
}
|
|
52975
|
+
|
|
50385
52976
|
enum federatedIdpMfaBehavior {
|
|
50386
52977
|
acceptIfMfaDoneByFederatedIdp: 0,
|
|
50387
52978
|
enforceMfaByFederatedIdp: 1,
|
|
@@ -50395,6 +52986,68 @@ namespace reference.`microsoft.graph` {
|
|
|
50395
52986
|
unknownFutureValue: 2,
|
|
50396
52987
|
}
|
|
50397
52988
|
|
|
52989
|
+
enum fileArchiveStatus {
|
|
52990
|
+
notArchived: 0,
|
|
52991
|
+
fullyArchived: 1,
|
|
52992
|
+
reactivating: 2,
|
|
52993
|
+
unknownFutureValue: 3,
|
|
52994
|
+
}
|
|
52995
|
+
|
|
52996
|
+
enum fileStorageContainerBillingClassification {
|
|
52997
|
+
standard: 0,
|
|
52998
|
+
trial: 1,
|
|
52999
|
+
directToCustomer: 2,
|
|
53000
|
+
unknownFutureValue: 3,
|
|
53001
|
+
}
|
|
53002
|
+
|
|
53003
|
+
enum fileStorageContainerBillingStatus {
|
|
53004
|
+
invalid: 0,
|
|
53005
|
+
valid: 1,
|
|
53006
|
+
unknownFutureValue: 2,
|
|
53007
|
+
}
|
|
53008
|
+
|
|
53009
|
+
enum fileStorageContainerOwnershipType {
|
|
53010
|
+
tenantOwned: 0,
|
|
53011
|
+
userOwned: 1,
|
|
53012
|
+
unknownFutureValue: 2,
|
|
53013
|
+
}
|
|
53014
|
+
|
|
53015
|
+
enum fileStorageContainerStatus {
|
|
53016
|
+
inactive: 0,
|
|
53017
|
+
active: 1,
|
|
53018
|
+
unknownFutureValue: 2,
|
|
53019
|
+
}
|
|
53020
|
+
|
|
53021
|
+
enum fileStorageContainerTypeAppPermission {
|
|
53022
|
+
none: 0,
|
|
53023
|
+
readContent: 1,
|
|
53024
|
+
writeContent: 2,
|
|
53025
|
+
manageContent: 3,
|
|
53026
|
+
create: 4,
|
|
53027
|
+
delete: 5,
|
|
53028
|
+
read: 6,
|
|
53029
|
+
write: 7,
|
|
53030
|
+
enumeratePermissions: 8,
|
|
53031
|
+
addPermissions: 9,
|
|
53032
|
+
updatePermissions: 10,
|
|
53033
|
+
deletePermissions: 11,
|
|
53034
|
+
deleteOwnPermission: 12,
|
|
53035
|
+
managePermissions: 13,
|
|
53036
|
+
full: 14,
|
|
53037
|
+
unknownFutureValue: 15,
|
|
53038
|
+
}
|
|
53039
|
+
|
|
53040
|
+
@graphFlags
|
|
53041
|
+
enum fileStorageContainerTypeSettingsOverride {
|
|
53042
|
+
urlTemplate: 0,
|
|
53043
|
+
isDiscoverabilityEnabled: 1,
|
|
53044
|
+
isSearchEnabled: 2,
|
|
53045
|
+
isItemVersioningEnabled: 3,
|
|
53046
|
+
itemMajorVersionLimit: 4,
|
|
53047
|
+
maxStoragePerContainerInBytes: 5,
|
|
53048
|
+
unknownFutureValue: 6,
|
|
53049
|
+
}
|
|
53050
|
+
|
|
50398
53051
|
/**
|
|
50399
53052
|
* FileVault State
|
|
50400
53053
|
*/
|
|
@@ -50956,6 +53609,12 @@ namespace reference.`microsoft.graph` {
|
|
|
50956
53609
|
removalFailed: 6,
|
|
50957
53610
|
}
|
|
50958
53611
|
|
|
53612
|
+
enum groupType {
|
|
53613
|
+
unifiedGroups: 0,
|
|
53614
|
+
azureAD: 1,
|
|
53615
|
+
unknownFutureValue: 2,
|
|
53616
|
+
}
|
|
53617
|
+
|
|
50959
53618
|
/**
|
|
50960
53619
|
* Indicates the supported oems of hardware configuration
|
|
50961
53620
|
*/
|
|
@@ -51024,6 +53683,24 @@ namespace reference.`microsoft.graph` {
|
|
|
51024
53683
|
unhealthy: 2,
|
|
51025
53684
|
}
|
|
51026
53685
|
|
|
53686
|
+
enum horizontalSectionLayoutType {
|
|
53687
|
+
none: 0,
|
|
53688
|
+
oneColumn: 1,
|
|
53689
|
+
twoColumns: 2,
|
|
53690
|
+
threeColumns: 3,
|
|
53691
|
+
oneThirdLeftColumn: 4,
|
|
53692
|
+
oneThirdRightColumn: 5,
|
|
53693
|
+
fullWidth: 6,
|
|
53694
|
+
unknownFutureValue: 7,
|
|
53695
|
+
}
|
|
53696
|
+
|
|
53697
|
+
enum imageTaggingChoice {
|
|
53698
|
+
disabled: 0,
|
|
53699
|
+
basic: 1,
|
|
53700
|
+
enhanced: 2,
|
|
53701
|
+
unknownFutureValue: 3,
|
|
53702
|
+
}
|
|
53703
|
+
|
|
51027
53704
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
51028
53705
|
enum importance {
|
|
51029
53706
|
low: 0,
|
|
@@ -51095,12 +53772,45 @@ namespace reference.`microsoft.graph` {
|
|
|
51095
53772
|
error: 3,
|
|
51096
53773
|
}
|
|
51097
53774
|
|
|
53775
|
+
enum includedUserRoles {
|
|
53776
|
+
all: 0,
|
|
53777
|
+
privilegedAdmin: 1,
|
|
53778
|
+
admin: 2,
|
|
53779
|
+
user: 3,
|
|
53780
|
+
unknownFutureValue: 4,
|
|
53781
|
+
}
|
|
53782
|
+
|
|
53783
|
+
enum includedUserTypes {
|
|
53784
|
+
all: 0,
|
|
53785
|
+
member: 1,
|
|
53786
|
+
guest: 2,
|
|
53787
|
+
unknownFutureValue: 3,
|
|
53788
|
+
}
|
|
53789
|
+
|
|
53790
|
+
@graphFlags
|
|
53791
|
+
enum incomingTokenType {
|
|
53792
|
+
none: 0,
|
|
53793
|
+
primaryRefreshToken: 1,
|
|
53794
|
+
saml11: 2,
|
|
53795
|
+
saml20: 4,
|
|
53796
|
+
unknownFutureValue: 8,
|
|
53797
|
+
remoteDesktopToken: 16,
|
|
53798
|
+
refreshToken: 32,
|
|
53799
|
+
}
|
|
53800
|
+
|
|
51098
53801
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
51099
53802
|
enum inferenceClassificationType {
|
|
51100
53803
|
focused: 0,
|
|
51101
53804
|
other: 1,
|
|
51102
53805
|
}
|
|
51103
53806
|
|
|
53807
|
+
enum informationBarrierMode {
|
|
53808
|
+
open: 0,
|
|
53809
|
+
ownerModerated: 1,
|
|
53810
|
+
explicit: 2,
|
|
53811
|
+
unknownFutureValue: 3,
|
|
53812
|
+
}
|
|
53813
|
+
|
|
51104
53814
|
/**
|
|
51105
53815
|
* Category Ingestion source
|
|
51106
53816
|
*/
|
|
@@ -51120,6 +53830,13 @@ namespace reference.`microsoft.graph` {
|
|
|
51120
53830
|
unknownFutureValue: 3,
|
|
51121
53831
|
}
|
|
51122
53832
|
|
|
53833
|
+
enum initiatorType {
|
|
53834
|
+
user: 0,
|
|
53835
|
+
application: 1,
|
|
53836
|
+
system: 2,
|
|
53837
|
+
unknownFutureValue: 3,
|
|
53838
|
+
}
|
|
53839
|
+
|
|
51123
53840
|
/**
|
|
51124
53841
|
* Values for the InkWorkspaceAccess setting.
|
|
51125
53842
|
*/
|
|
@@ -51859,6 +54576,13 @@ namespace reference.`microsoft.graph` {
|
|
|
51859
54576
|
bing: 4,
|
|
51860
54577
|
}
|
|
51861
54578
|
|
|
54579
|
+
enum lockType {
|
|
54580
|
+
none: 0,
|
|
54581
|
+
exclusive: 1,
|
|
54582
|
+
shared: 2,
|
|
54583
|
+
unknownFutureValue: 3,
|
|
54584
|
+
}
|
|
54585
|
+
|
|
51862
54586
|
enum longRunningOperationStatus {
|
|
51863
54587
|
notStarted: 0,
|
|
51864
54588
|
running: 1,
|
|
@@ -53079,6 +55803,19 @@ namespace reference.`microsoft.graph` {
|
|
|
53079
55803
|
deprecated: 3,
|
|
53080
55804
|
}
|
|
53081
55805
|
|
|
55806
|
+
enum mediaSourceContentCategory {
|
|
55807
|
+
meeting: 0,
|
|
55808
|
+
liveStream: 1,
|
|
55809
|
+
presentation: 2,
|
|
55810
|
+
screenRecording: 3,
|
|
55811
|
+
story: 4,
|
|
55812
|
+
profile: 5,
|
|
55813
|
+
chat: 6,
|
|
55814
|
+
note: 7,
|
|
55815
|
+
comment: 8,
|
|
55816
|
+
unknownFutureValue: 9,
|
|
55817
|
+
}
|
|
55818
|
+
|
|
53082
55819
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
53083
55820
|
enum meetingMessageType {
|
|
53084
55821
|
none: 0,
|
|
@@ -53155,6 +55892,31 @@ namespace reference.`microsoft.graph` {
|
|
|
53155
55892
|
variable: 2,
|
|
53156
55893
|
}
|
|
53157
55894
|
|
|
55895
|
+
enum mfaFailureReasonCode {
|
|
55896
|
+
mfaIncomplete: 0,
|
|
55897
|
+
mfaDenied: 1,
|
|
55898
|
+
systemFailure: 2,
|
|
55899
|
+
badRequest: 3,
|
|
55900
|
+
other: 4,
|
|
55901
|
+
unknownFutureValue: 5,
|
|
55902
|
+
}
|
|
55903
|
+
|
|
55904
|
+
enum mfaType {
|
|
55905
|
+
eotp: 0,
|
|
55906
|
+
oneWaySms: 1,
|
|
55907
|
+
twoWaySms: 2,
|
|
55908
|
+
twoWaySmsOtherMobile: 3,
|
|
55909
|
+
phoneAppNotification: 4,
|
|
55910
|
+
phoneAppOtp: 5,
|
|
55911
|
+
twoWayVoiceMobile: 6,
|
|
55912
|
+
twoWayVoiceOffice: 7,
|
|
55913
|
+
twoWayVoiceOtherMobile: 8,
|
|
55914
|
+
fido: 9,
|
|
55915
|
+
certificate: 10,
|
|
55916
|
+
other: 11,
|
|
55917
|
+
unknownFutureValue: 12,
|
|
55918
|
+
}
|
|
55919
|
+
|
|
53158
55920
|
enum microsoftAuthenticatorAuthenticationMethodClientAppName {
|
|
53159
55921
|
microsoftAuthenticator: 0,
|
|
53160
55922
|
outlookMobile: 1,
|
|
@@ -53641,6 +56403,13 @@ namespace reference.`microsoft.graph` {
|
|
|
53641
56403
|
unknownFutureValue: 6,
|
|
53642
56404
|
}
|
|
53643
56405
|
|
|
56406
|
+
enum msiType {
|
|
56407
|
+
none: 0,
|
|
56408
|
+
userAssigned: 1,
|
|
56409
|
+
systemAssigned: 2,
|
|
56410
|
+
unknownFutureValue: 3,
|
|
56411
|
+
}
|
|
56412
|
+
|
|
53644
56413
|
enum multiFactorAuthConfiguration {
|
|
53645
56414
|
notRequired: 0,
|
|
53646
56415
|
required: 1,
|
|
@@ -53685,6 +56454,15 @@ namespace reference.`microsoft.graph` {
|
|
|
53685
56454
|
postlogon: 2,
|
|
53686
56455
|
}
|
|
53687
56456
|
|
|
56457
|
+
enum networkType {
|
|
56458
|
+
intranet: 0,
|
|
56459
|
+
extranet: 1,
|
|
56460
|
+
namedNetwork: 2,
|
|
56461
|
+
trusted: 3,
|
|
56462
|
+
trustedNamedLocation: 4,
|
|
56463
|
+
unknownFutureValue: 5,
|
|
56464
|
+
}
|
|
56465
|
+
|
|
53688
56466
|
/**
|
|
53689
56467
|
* Non-EAP methods for authentication.
|
|
53690
56468
|
*/
|
|
@@ -54039,6 +56817,13 @@ namespace reference.`microsoft.graph` {
|
|
|
54039
56817
|
unknownFutureValue: 3,
|
|
54040
56818
|
}
|
|
54041
56819
|
|
|
56820
|
+
enum operationResult {
|
|
56821
|
+
success: 0,
|
|
56822
|
+
failure: 1,
|
|
56823
|
+
timeout: 2,
|
|
56824
|
+
unknownFutureValue: 3,
|
|
56825
|
+
}
|
|
56826
|
+
|
|
54042
56827
|
/**
|
|
54043
56828
|
* Operator for rules.
|
|
54044
56829
|
*/
|
|
@@ -54146,6 +56931,23 @@ namespace reference.`microsoft.graph` {
|
|
|
54146
56931
|
excludesAll: 24,
|
|
54147
56932
|
}
|
|
54148
56933
|
|
|
56934
|
+
enum originalTransferMethods {
|
|
56935
|
+
none: 0,
|
|
56936
|
+
deviceCodeFlow: 1,
|
|
56937
|
+
authenticationTransfer: 2,
|
|
56938
|
+
unknownFutureValue: 3,
|
|
56939
|
+
}
|
|
56940
|
+
|
|
56941
|
+
enum outlierContainerType {
|
|
56942
|
+
group: 0,
|
|
56943
|
+
unknownFutureValue: 1,
|
|
56944
|
+
}
|
|
56945
|
+
|
|
56946
|
+
enum outlierMemberType {
|
|
56947
|
+
user: 0,
|
|
56948
|
+
unknownFutureValue: 1,
|
|
56949
|
+
}
|
|
56950
|
+
|
|
54149
56951
|
/**
|
|
54150
56952
|
* Owner type of device.
|
|
54151
56953
|
*/
|
|
@@ -54165,6 +56967,22 @@ namespace reference.`microsoft.graph` {
|
|
|
54165
56967
|
personal: 2,
|
|
54166
56968
|
}
|
|
54167
56969
|
|
|
56970
|
+
enum pageLayoutType {
|
|
56971
|
+
microsoftReserved: 0,
|
|
56972
|
+
article: 1,
|
|
56973
|
+
home: 2,
|
|
56974
|
+
unknownFutureValue: 3,
|
|
56975
|
+
newsLink: 5,
|
|
56976
|
+
videoNewsLink: 6,
|
|
56977
|
+
}
|
|
56978
|
+
|
|
56979
|
+
enum pagePromotionType {
|
|
56980
|
+
microsoftReserved: 0,
|
|
56981
|
+
page: 1,
|
|
56982
|
+
newsPost: 2,
|
|
56983
|
+
unknownFutureValue: 3,
|
|
56984
|
+
}
|
|
56985
|
+
|
|
54168
56986
|
enum partnerTenantType {
|
|
54169
56987
|
microsoftSupport: 1,
|
|
54170
56988
|
syndicatePartner: 2,
|
|
@@ -54663,6 +57481,73 @@ namespace reference.`microsoft.graph` {
|
|
|
54663
57481
|
unknownFutureValue: 3,
|
|
54664
57482
|
}
|
|
54665
57483
|
|
|
57484
|
+
@graphFlags
|
|
57485
|
+
enum protocolType {
|
|
57486
|
+
none: 0,
|
|
57487
|
+
oAuth2: 1,
|
|
57488
|
+
ropc: 2,
|
|
57489
|
+
wsFederation: 4,
|
|
57490
|
+
saml20: 8,
|
|
57491
|
+
deviceCode: 16,
|
|
57492
|
+
unknownFutureValue: 32,
|
|
57493
|
+
authenticationTransfer: 64,
|
|
57494
|
+
nativeAuth: 128,
|
|
57495
|
+
implicitAccessTokenAndGetResponseMode: 256,
|
|
57496
|
+
implicitIdTokenAndGetResponseMode: 512,
|
|
57497
|
+
implicitAccessTokenAndPostResponseMode: 1024,
|
|
57498
|
+
implicitIdTokenAndPostResponseMode: 2048,
|
|
57499
|
+
authorizationCodeWithoutPkce: 4096,
|
|
57500
|
+
authorizationCodeWithPkce: 8192,
|
|
57501
|
+
clientCredentials: 16384,
|
|
57502
|
+
refreshTokenGrant: 32768,
|
|
57503
|
+
encryptedAuthorizeResponse: 65536,
|
|
57504
|
+
directUserGrant: 131072,
|
|
57505
|
+
kerberos: 262144,
|
|
57506
|
+
prtGrant: 524288,
|
|
57507
|
+
seamlessSso: 1048576,
|
|
57508
|
+
prtBrokerBased: 2097152,
|
|
57509
|
+
prtNonBrokerBased: 4194304,
|
|
57510
|
+
onBehalfOf: 8388608,
|
|
57511
|
+
samlOnBehalfOf: 16777216,
|
|
57512
|
+
officeS2S: 33554432,
|
|
57513
|
+
wsTrust: 67108864,
|
|
57514
|
+
}
|
|
57515
|
+
|
|
57516
|
+
enum provisioningAction {
|
|
57517
|
+
other: 0,
|
|
57518
|
+
create: 1,
|
|
57519
|
+
delete: 2,
|
|
57520
|
+
disable: 3,
|
|
57521
|
+
update: 4,
|
|
57522
|
+
stagedDelete: 5,
|
|
57523
|
+
unknownFutureValue: 6,
|
|
57524
|
+
}
|
|
57525
|
+
|
|
57526
|
+
enum provisioningResult {
|
|
57527
|
+
success: 0,
|
|
57528
|
+
failure: 1,
|
|
57529
|
+
skipped: 2,
|
|
57530
|
+
warning: 3,
|
|
57531
|
+
unknownFutureValue: 4,
|
|
57532
|
+
}
|
|
57533
|
+
|
|
57534
|
+
enum provisioningStatusErrorCategory {
|
|
57535
|
+
failure: 0,
|
|
57536
|
+
nonServiceFailure: 1,
|
|
57537
|
+
success: 2,
|
|
57538
|
+
unknownFutureValue: 3,
|
|
57539
|
+
}
|
|
57540
|
+
|
|
57541
|
+
enum provisioningStepType {
|
|
57542
|
+
`import`: 0,
|
|
57543
|
+
scoping: 1,
|
|
57544
|
+
matching: 2,
|
|
57545
|
+
processing: 3,
|
|
57546
|
+
referenceResolution: 4,
|
|
57547
|
+
export: 5,
|
|
57548
|
+
unknownFutureValue: 6,
|
|
57549
|
+
}
|
|
57550
|
+
|
|
54666
57551
|
/**
|
|
54667
57552
|
* Apps rating as in media content
|
|
54668
57553
|
*/
|
|
@@ -55326,6 +58211,87 @@ namespace reference.`microsoft.graph` {
|
|
|
55326
58211
|
externalNonPartner: 8,
|
|
55327
58212
|
}
|
|
55328
58213
|
|
|
58214
|
+
enum recommendationCategory {
|
|
58215
|
+
identityBestPractice: 0,
|
|
58216
|
+
identitySecureScore: 1,
|
|
58217
|
+
unknownFutureValue: 2,
|
|
58218
|
+
mdiSecureScore: 3,
|
|
58219
|
+
}
|
|
58220
|
+
|
|
58221
|
+
enum recommendationFeatureAreas {
|
|
58222
|
+
users: 0,
|
|
58223
|
+
groups: 1,
|
|
58224
|
+
devices: 2,
|
|
58225
|
+
applications: 3,
|
|
58226
|
+
accessReviews: 4,
|
|
58227
|
+
conditionalAccess: 5,
|
|
58228
|
+
governance: 6,
|
|
58229
|
+
unknownFutureValue: 7,
|
|
58230
|
+
}
|
|
58231
|
+
|
|
58232
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
58233
|
+
enum recommendationPriority {
|
|
58234
|
+
low: 0,
|
|
58235
|
+
medium: 1,
|
|
58236
|
+
high: 2,
|
|
58237
|
+
}
|
|
58238
|
+
|
|
58239
|
+
enum recommendationStatus {
|
|
58240
|
+
active: 0,
|
|
58241
|
+
completedBySystem: 1,
|
|
58242
|
+
completedByUser: 2,
|
|
58243
|
+
dismissed: 3,
|
|
58244
|
+
postponed: 4,
|
|
58245
|
+
unknownFutureValue: 5,
|
|
58246
|
+
riskAccepted: 6,
|
|
58247
|
+
thirdParty: 7,
|
|
58248
|
+
planned: 8,
|
|
58249
|
+
alternateMitigation: 9,
|
|
58250
|
+
}
|
|
58251
|
+
|
|
58252
|
+
enum recommendationType {
|
|
58253
|
+
adfsAppsMigration: 0,
|
|
58254
|
+
enableDesktopSSO: 1,
|
|
58255
|
+
enablePHS: 2,
|
|
58256
|
+
enableProvisioning: 3,
|
|
58257
|
+
switchFromPerUserMFA: 4,
|
|
58258
|
+
tenantMFA: 5,
|
|
58259
|
+
thirdPartyApps: 6,
|
|
58260
|
+
turnOffPerUserMFA: 7,
|
|
58261
|
+
useAuthenticatorApp: 8,
|
|
58262
|
+
useMyApps: 9,
|
|
58263
|
+
staleApps: 10,
|
|
58264
|
+
staleAppCreds: 11,
|
|
58265
|
+
applicationCredentialExpiry: 12,
|
|
58266
|
+
servicePrincipalKeyExpiry: 13,
|
|
58267
|
+
adminMFAV2: 14,
|
|
58268
|
+
blockLegacyAuthentication: 15,
|
|
58269
|
+
integratedApps: 16,
|
|
58270
|
+
mfaRegistrationV2: 17,
|
|
58271
|
+
pwagePolicyNew: 18,
|
|
58272
|
+
passwordHashSync: 19,
|
|
58273
|
+
oneAdmin: 20,
|
|
58274
|
+
roleOverlap: 21,
|
|
58275
|
+
selfServicePasswordReset: 22,
|
|
58276
|
+
signinRiskPolicy: 23,
|
|
58277
|
+
userRiskPolicy: 24,
|
|
58278
|
+
verifyAppPublisher: 25,
|
|
58279
|
+
privateLinkForAAD: 26,
|
|
58280
|
+
appRoleAssignmentsGroups: 27,
|
|
58281
|
+
appRoleAssignmentsUsers: 28,
|
|
58282
|
+
managedIdentity: 29,
|
|
58283
|
+
overprivilegedApps: 30,
|
|
58284
|
+
unknownFutureValue: 31,
|
|
58285
|
+
longLivedCredentials: 32,
|
|
58286
|
+
aadConnectDeprecated: 33,
|
|
58287
|
+
adalToMsalMigration: 34,
|
|
58288
|
+
ownerlessApps: 35,
|
|
58289
|
+
inactiveGuests: 36,
|
|
58290
|
+
aadGraphDeprecationApplication: 37,
|
|
58291
|
+
aadGraphDeprecationServicePrincipal: 38,
|
|
58292
|
+
mfaServerDeprecation: 39,
|
|
58293
|
+
}
|
|
58294
|
+
|
|
55329
58295
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
55330
58296
|
enum recurrencePatternType {
|
|
55331
58297
|
daily: 0,
|
|
@@ -55362,6 +58328,12 @@ namespace reference.`microsoft.graph` {
|
|
|
55362
58328
|
dropbox: 3,
|
|
55363
58329
|
}
|
|
55364
58330
|
|
|
58331
|
+
enum releaseType {
|
|
58332
|
+
preview: 0,
|
|
58333
|
+
generallyAvailable: 1,
|
|
58334
|
+
unknownFutureValue: 2,
|
|
58335
|
+
}
|
|
58336
|
+
|
|
55365
58337
|
/**
|
|
55366
58338
|
* Indicates the type of execution status of the device management script.
|
|
55367
58339
|
*/
|
|
@@ -55590,6 +58562,17 @@ namespace reference.`microsoft.graph` {
|
|
|
55590
58562
|
enabled: 2,
|
|
55591
58563
|
}
|
|
55592
58564
|
|
|
58565
|
+
enum requiredLicenses {
|
|
58566
|
+
notApplicable: 0,
|
|
58567
|
+
microsoftEntraIdFree: 1,
|
|
58568
|
+
microsoftEntraIdP1: 2,
|
|
58569
|
+
microsoftEntraIdP2: 3,
|
|
58570
|
+
microsoftEntraIdGovernance: 4,
|
|
58571
|
+
microsoftEntraWorkloadId: 5,
|
|
58572
|
+
unknownFutureValue: 6,
|
|
58573
|
+
aatp: 7,
|
|
58574
|
+
}
|
|
58575
|
+
|
|
55593
58576
|
/**
|
|
55594
58577
|
* Possible values of required passwords.
|
|
55595
58578
|
*/
|
|
@@ -55609,6 +58592,30 @@ namespace reference.`microsoft.graph` {
|
|
|
55609
58592
|
`numeric`: 2,
|
|
55610
58593
|
}
|
|
55611
58594
|
|
|
58595
|
+
enum requirementProvider {
|
|
58596
|
+
user: 0,
|
|
58597
|
+
request: 1,
|
|
58598
|
+
servicePrincipal: 2,
|
|
58599
|
+
v1ConditionalAccess: 3,
|
|
58600
|
+
multiConditionalAccess: 4,
|
|
58601
|
+
tenantSessionRiskPolicy: 5,
|
|
58602
|
+
accountCompromisePolicies: 6,
|
|
58603
|
+
v1ConditionalAccessDependency: 7,
|
|
58604
|
+
v1ConditionalAccessPolicyIdRequested: 8,
|
|
58605
|
+
mfaRegistrationRequiredByIdentityProtectionPolicy: 9,
|
|
58606
|
+
baselineProtection: 10,
|
|
58607
|
+
mfaRegistrationRequiredByBaselineProtection: 11,
|
|
58608
|
+
mfaRegistrationRequiredByMultiConditionalAccess: 12,
|
|
58609
|
+
enforcedForCspAdmins: 13,
|
|
58610
|
+
securityDefaults: 14,
|
|
58611
|
+
mfaRegistrationRequiredBySecurityDefaults: 15,
|
|
58612
|
+
proofUpCodeRequest: 16,
|
|
58613
|
+
crossTenantOutboundRule: 17,
|
|
58614
|
+
gpsLocationCondition: 18,
|
|
58615
|
+
riskBasedPolicy: 19,
|
|
58616
|
+
unknownFutureValue: 20,
|
|
58617
|
+
}
|
|
58618
|
+
|
|
55612
58619
|
enum resourceScopeType {
|
|
55613
58620
|
group: 1,
|
|
55614
58621
|
chat: 2,
|
|
@@ -56029,6 +59036,14 @@ namespace reference.`microsoft.graph` {
|
|
|
56029
59036
|
unknownFutureValue: 2,
|
|
56030
59037
|
}
|
|
56031
59038
|
|
|
59039
|
+
enum sectionEmphasisType {
|
|
59040
|
+
none: 0,
|
|
59041
|
+
neutral: 1,
|
|
59042
|
+
soft: 2,
|
|
59043
|
+
strong: 3,
|
|
59044
|
+
unknownFutureValue: 4,
|
|
59045
|
+
}
|
|
59046
|
+
|
|
56032
59047
|
/**
|
|
56033
59048
|
* Type of accounts that are allowed for Windows10SecureAssessment ConfigurationAccount.
|
|
56034
59049
|
*/
|
|
@@ -56217,6 +59232,98 @@ namespace reference.`microsoft.graph` {
|
|
|
56217
59232
|
domain: 2,
|
|
56218
59233
|
}
|
|
56219
59234
|
|
|
59235
|
+
enum sharePointIdentityMappingGroupType {
|
|
59236
|
+
none: 0,
|
|
59237
|
+
regularGroup: 1,
|
|
59238
|
+
m365Group: 2,
|
|
59239
|
+
unknownFutureValue: 3,
|
|
59240
|
+
}
|
|
59241
|
+
|
|
59242
|
+
enum sharePointIdentityMappingUserType {
|
|
59243
|
+
none: 0,
|
|
59244
|
+
regularUser: 1,
|
|
59245
|
+
adminUser: 2,
|
|
59246
|
+
guestUser: 3,
|
|
59247
|
+
unknownFutureValue: 4,
|
|
59248
|
+
}
|
|
59249
|
+
|
|
59250
|
+
enum sharePointMigrationJobErrorLevel {
|
|
59251
|
+
important: 0,
|
|
59252
|
+
warning: 1,
|
|
59253
|
+
error: 2,
|
|
59254
|
+
fatalError: 3,
|
|
59255
|
+
unknownFutureValue: 4,
|
|
59256
|
+
}
|
|
59257
|
+
|
|
59258
|
+
enum sharePointMigrationObjectType {
|
|
59259
|
+
site: 0,
|
|
59260
|
+
web: 1,
|
|
59261
|
+
folder: 2,
|
|
59262
|
+
list: 3,
|
|
59263
|
+
listItem: 4,
|
|
59264
|
+
file: 5,
|
|
59265
|
+
alert: 6,
|
|
59266
|
+
sharedWithObject: 7,
|
|
59267
|
+
invalid: 8,
|
|
59268
|
+
unknownFutureValue: 9,
|
|
59269
|
+
}
|
|
59270
|
+
|
|
59271
|
+
enum sharePointMigrationTaskStatus {
|
|
59272
|
+
notStarted: 0,
|
|
59273
|
+
inProgress: 1,
|
|
59274
|
+
completed: 2,
|
|
59275
|
+
cancelled: 3,
|
|
59276
|
+
failed: 4,
|
|
59277
|
+
unknownFutureValue: 5,
|
|
59278
|
+
}
|
|
59279
|
+
|
|
59280
|
+
enum sharingCapabilities {
|
|
59281
|
+
disabled: 0,
|
|
59282
|
+
externalUserSharingOnly: 1,
|
|
59283
|
+
externalUserAndGuestSharing: 2,
|
|
59284
|
+
existingExternalUserSharingOnly: 3,
|
|
59285
|
+
unknownFutureValue: 4,
|
|
59286
|
+
}
|
|
59287
|
+
|
|
59288
|
+
enum sharingDomainRestrictionMode {
|
|
59289
|
+
none: 0,
|
|
59290
|
+
allowList: 1,
|
|
59291
|
+
blockList: 2,
|
|
59292
|
+
unknownFutureValue: 3,
|
|
59293
|
+
}
|
|
59294
|
+
|
|
59295
|
+
enum sharingRole {
|
|
59296
|
+
none: 0,
|
|
59297
|
+
view: 1,
|
|
59298
|
+
edit: 2,
|
|
59299
|
+
manageList: 3,
|
|
59300
|
+
review: 4,
|
|
59301
|
+
restrictedView: 5,
|
|
59302
|
+
submitOnly: 6,
|
|
59303
|
+
unknownFutureValue: 7,
|
|
59304
|
+
}
|
|
59305
|
+
|
|
59306
|
+
enum sharingScope {
|
|
59307
|
+
anyone: 0,
|
|
59308
|
+
organization: 1,
|
|
59309
|
+
specificPeople: 2,
|
|
59310
|
+
@graphDeprecated("Removal")
|
|
59311
|
+
anonymous: 3,
|
|
59312
|
+
@graphDeprecated("Removal")
|
|
59313
|
+
users: 4,
|
|
59314
|
+
unknownFutureValue: 5,
|
|
59315
|
+
}
|
|
59316
|
+
|
|
59317
|
+
@graphFlags
|
|
59318
|
+
enum sharingVariant {
|
|
59319
|
+
none: 0,
|
|
59320
|
+
requiresAuthentication: 1,
|
|
59321
|
+
passwordProtected: 2,
|
|
59322
|
+
addressBar: 4,
|
|
59323
|
+
embed: 8,
|
|
59324
|
+
unknownFutureValue: 16,
|
|
59325
|
+
}
|
|
59326
|
+
|
|
56220
59327
|
@graphFlags
|
|
56221
59328
|
enum signInAccessType {
|
|
56222
59329
|
none: 0,
|
|
@@ -56261,6 +59368,21 @@ namespace reference.`microsoft.graph` {
|
|
|
56261
59368
|
hours: 1,
|
|
56262
59369
|
}
|
|
56263
59370
|
|
|
59371
|
+
enum signInIdentifierType {
|
|
59372
|
+
userPrincipalName: 0,
|
|
59373
|
+
phoneNumber: 1,
|
|
59374
|
+
proxyAddress: 2,
|
|
59375
|
+
qrCode: 3,
|
|
59376
|
+
onPremisesUserPrincipalName: 4,
|
|
59377
|
+
unknownFutureValue: 5,
|
|
59378
|
+
}
|
|
59379
|
+
|
|
59380
|
+
enum signInUserType {
|
|
59381
|
+
member: 0,
|
|
59382
|
+
guest: 1,
|
|
59383
|
+
unknownFutureValue: 3,
|
|
59384
|
+
}
|
|
59385
|
+
|
|
56264
59386
|
enum singleSignOnMode {
|
|
56265
59387
|
none: 0,
|
|
56266
59388
|
onPremisesKerberos: 1,
|
|
@@ -56271,6 +59393,21 @@ namespace reference.`microsoft.graph` {
|
|
|
56271
59393
|
unknownFutureValue: 7,
|
|
56272
59394
|
}
|
|
56273
59395
|
|
|
59396
|
+
enum siteArchiveStatus {
|
|
59397
|
+
recentlyArchived: 0,
|
|
59398
|
+
fullyArchived: 1,
|
|
59399
|
+
reactivating: 2,
|
|
59400
|
+
unknownFutureValue: 3,
|
|
59401
|
+
}
|
|
59402
|
+
|
|
59403
|
+
enum siteLockState {
|
|
59404
|
+
unlocked: 0,
|
|
59405
|
+
lockedReadOnly: 1,
|
|
59406
|
+
lockedNoAccess: 2,
|
|
59407
|
+
lockedNoAdditions: 3,
|
|
59408
|
+
unknownFutureValue: 4,
|
|
59409
|
+
}
|
|
59410
|
+
|
|
56274
59411
|
/**
|
|
56275
59412
|
* Possible values for site security level.
|
|
56276
59413
|
*/
|
|
@@ -56302,6 +59439,12 @@ namespace reference.`microsoft.graph` {
|
|
|
56302
59439
|
high: 5,
|
|
56303
59440
|
}
|
|
56304
59441
|
|
|
59442
|
+
enum siteTemplateType {
|
|
59443
|
+
sitepagepublishing: 0,
|
|
59444
|
+
sts: 2,
|
|
59445
|
+
unknownFutureValue: 3,
|
|
59446
|
+
}
|
|
59447
|
+
|
|
56305
59448
|
enum skillProficiencyLevel {
|
|
56306
59449
|
elementary: 0,
|
|
56307
59450
|
limitedWorking: 1,
|
|
@@ -56487,6 +59630,20 @@ namespace reference.`microsoft.graph` {
|
|
|
56487
59630
|
iana: 1,
|
|
56488
59631
|
}
|
|
56489
59632
|
|
|
59633
|
+
enum titleAreaLayoutType {
|
|
59634
|
+
imageAndTitle: 0,
|
|
59635
|
+
plain: 1,
|
|
59636
|
+
colorBlock: 2,
|
|
59637
|
+
overlap: 3,
|
|
59638
|
+
unknownFutureValue: 4,
|
|
59639
|
+
}
|
|
59640
|
+
|
|
59641
|
+
enum titleAreaTextAlignmentType {
|
|
59642
|
+
left: 0,
|
|
59643
|
+
center: 1,
|
|
59644
|
+
unknownFutureValue: 2,
|
|
59645
|
+
}
|
|
59646
|
+
|
|
56490
59647
|
enum tokenIssuerType {
|
|
56491
59648
|
AzureAD: 0,
|
|
56492
59649
|
ADFederationServices: 1,
|
|
@@ -56496,6 +59653,13 @@ namespace reference.`microsoft.graph` {
|
|
|
56496
59653
|
NPSExtension: 5,
|
|
56497
59654
|
}
|
|
56498
59655
|
|
|
59656
|
+
enum tokenProtectionStatus {
|
|
59657
|
+
none: 0,
|
|
59658
|
+
bound: 1,
|
|
59659
|
+
unbound: 2,
|
|
59660
|
+
unknownFutureValue: 3,
|
|
59661
|
+
}
|
|
59662
|
+
|
|
56499
59663
|
enum trafficRoutingMethod {
|
|
56500
59664
|
none: 0,
|
|
56501
59665
|
random: 1,
|
|
@@ -56542,12 +59706,55 @@ namespace reference.`microsoft.graph` {
|
|
|
56542
59706
|
unknownFutureValue: 4,
|
|
56543
59707
|
}
|
|
56544
59708
|
|
|
59709
|
+
enum usageAuthMethod {
|
|
59710
|
+
email: 0,
|
|
59711
|
+
mobileSMS: 1,
|
|
59712
|
+
mobileCall: 2,
|
|
59713
|
+
officePhone: 3,
|
|
59714
|
+
securityQuestion: 4,
|
|
59715
|
+
appNotification: 5,
|
|
59716
|
+
appCode: 6,
|
|
59717
|
+
alternateMobileCall: 7,
|
|
59718
|
+
fido: 8,
|
|
59719
|
+
appPassword: 9,
|
|
59720
|
+
unknownFutureValue: 10,
|
|
59721
|
+
externalAuthMethod: 11,
|
|
59722
|
+
hardwareOneTimePasscode: 12,
|
|
59723
|
+
windowsHelloForBusiness: 13,
|
|
59724
|
+
microsoftAuthenticatorPasswordless: 14,
|
|
59725
|
+
temporaryAccessPass: 15,
|
|
59726
|
+
macOsSecureEnclaveKey: 16,
|
|
59727
|
+
passKeyDeviceBound: 17,
|
|
59728
|
+
passKeyDeviceBoundAuthenticator: 18,
|
|
59729
|
+
passKeyDeviceBoundWindowsHello: 19,
|
|
59730
|
+
softwareOneTimePasscode: 20,
|
|
59731
|
+
microsoftAuthenticatorPush: 21,
|
|
59732
|
+
mobilePhone: 22,
|
|
59733
|
+
sms: 23,
|
|
59734
|
+
alternateMobilePhone: 24,
|
|
59735
|
+
fido2SecurityKey: 25,
|
|
59736
|
+
oneTimePasscode: 26,
|
|
59737
|
+
passKeySynced: 27,
|
|
59738
|
+
qrCode: 28,
|
|
59739
|
+
}
|
|
59740
|
+
|
|
56545
59741
|
enum userAction {
|
|
56546
59742
|
registerSecurityInformation: 0,
|
|
56547
59743
|
registerOrJoinDevices: 1,
|
|
56548
59744
|
unknownFutureValue: 2,
|
|
56549
59745
|
}
|
|
56550
59746
|
|
|
59747
|
+
enum userDefaultAuthenticationMethod {
|
|
59748
|
+
push: 0,
|
|
59749
|
+
oath: 1,
|
|
59750
|
+
voiceMobile: 2,
|
|
59751
|
+
voiceAlternateMobile: 3,
|
|
59752
|
+
voiceOffice: 4,
|
|
59753
|
+
sms: 5,
|
|
59754
|
+
none: 6,
|
|
59755
|
+
unknownFutureValue: 7,
|
|
59756
|
+
}
|
|
59757
|
+
|
|
56551
59758
|
enum userDefaultAuthenticationMethodType {
|
|
56552
59759
|
push: 0,
|
|
56553
59760
|
oath: 1,
|
|
@@ -60310,3 +63517,107 @@ namespace reference.`microsoft.graph` {
|
|
|
60310
63517
|
}
|
|
60311
63518
|
|
|
60312
63519
|
}
|
|
63520
|
+
@publicNamespace("microsoft.graph.agentic")
|
|
63521
|
+
namespace reference.`microsoft.graph.agentic` {
|
|
63522
|
+
@complex model agentSignIn {
|
|
63523
|
+
agentType: agentType;
|
|
63524
|
+
parentAppId: string | null;
|
|
63525
|
+
}
|
|
63526
|
+
|
|
63527
|
+
enum agentType {
|
|
63528
|
+
notAgentic: 0,
|
|
63529
|
+
agenticAppBuilder: 1,
|
|
63530
|
+
agenticApp: 2,
|
|
63531
|
+
agenticAppInstance: 3,
|
|
63532
|
+
unknownFutureValue: 4,
|
|
63533
|
+
}
|
|
63534
|
+
|
|
63535
|
+
}
|
|
63536
|
+
@publicNamespace("microsoft.graph.security")
|
|
63537
|
+
namespace reference.`microsoft.graph.security` {
|
|
63538
|
+
enum behaviorDuringRetentionPeriod {
|
|
63539
|
+
doNotRetain: 0,
|
|
63540
|
+
retain: 1,
|
|
63541
|
+
retainAsRecord: 2,
|
|
63542
|
+
retainAsRegulatoryRecord: 3,
|
|
63543
|
+
unknownFutureValue: 4,
|
|
63544
|
+
}
|
|
63545
|
+
|
|
63546
|
+
}
|
|
63547
|
+
@publicNamespace("microsoft.graph.termstore")
|
|
63548
|
+
namespace reference.`microsoft.graph.termStore` {
|
|
63549
|
+
@complex model localizedDescription {
|
|
63550
|
+
description: string | null;
|
|
63551
|
+
languageTag: string | null;
|
|
63552
|
+
}
|
|
63553
|
+
|
|
63554
|
+
@complex model localizedLabel {
|
|
63555
|
+
isDefault: boolean | null;
|
|
63556
|
+
languageTag: string | null;
|
|
63557
|
+
name: string | null;
|
|
63558
|
+
}
|
|
63559
|
+
|
|
63560
|
+
@complex model localizedName {
|
|
63561
|
+
languageTag: string | null;
|
|
63562
|
+
name: string | null;
|
|
63563
|
+
}
|
|
63564
|
+
|
|
63565
|
+
@entity model group extends reference.`microsoft.graph`.entity {
|
|
63566
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
63567
|
+
description: string | null;
|
|
63568
|
+
displayName: string | null;
|
|
63569
|
+
parentSiteId: string | null;
|
|
63570
|
+
scope: termGroupScope | null;
|
|
63571
|
+
@contains sets: set[];
|
|
63572
|
+
}
|
|
63573
|
+
|
|
63574
|
+
@entity model relation extends reference.`microsoft.graph`.entity {
|
|
63575
|
+
relationship: relationType | null;
|
|
63576
|
+
@references fromTerm: term | null;
|
|
63577
|
+
@references set: set | null;
|
|
63578
|
+
@references toTerm: term | null;
|
|
63579
|
+
}
|
|
63580
|
+
|
|
63581
|
+
@entity model set extends reference.`microsoft.graph`.entity {
|
|
63582
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
63583
|
+
description: string | null;
|
|
63584
|
+
localizedNames: localizedName[] | null;
|
|
63585
|
+
properties: reference.`microsoft.graph`.keyValue[] | null;
|
|
63586
|
+
@contains children: term[];
|
|
63587
|
+
@contains parentGroup: group;
|
|
63588
|
+
@contains relations: relation[];
|
|
63589
|
+
@contains terms: term[];
|
|
63590
|
+
}
|
|
63591
|
+
|
|
63592
|
+
@entity model store extends reference.`microsoft.graph`.entity {
|
|
63593
|
+
defaultLanguageTag: string;
|
|
63594
|
+
languageTags: string[];
|
|
63595
|
+
@contains groups: group[];
|
|
63596
|
+
@contains sets: set[];
|
|
63597
|
+
}
|
|
63598
|
+
|
|
63599
|
+
@entity model term extends reference.`microsoft.graph`.entity {
|
|
63600
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
63601
|
+
descriptions: localizedDescription[] | null;
|
|
63602
|
+
labels: localizedLabel[] | null;
|
|
63603
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
63604
|
+
properties: reference.`microsoft.graph`.keyValue[] | null;
|
|
63605
|
+
@contains children: term[];
|
|
63606
|
+
@contains relations: relation[];
|
|
63607
|
+
@references set: set | null;
|
|
63608
|
+
}
|
|
63609
|
+
|
|
63610
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
63611
|
+
enum relationType {
|
|
63612
|
+
pin: 0,
|
|
63613
|
+
reuse: 1,
|
|
63614
|
+
}
|
|
63615
|
+
|
|
63616
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
63617
|
+
enum termGroupScope {
|
|
63618
|
+
global: 0,
|
|
63619
|
+
system: 1,
|
|
63620
|
+
siteCollection: 2,
|
|
63621
|
+
}
|
|
63622
|
+
|
|
63623
|
+
}
|