@microsoft/typespec-msgraph-reference 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,6 +9,7 @@ scalar binary; //TODO: Enables support for Edm.Binary
9
9
 
10
10
  @deprecatedDefinition("Removal", "<ChangeLogCategory>", "2021-09-03", "2023-10-01", "The grantedToIdentities property is deprecated. Please refer to grantedToIdentitiesV2")
11
11
  // Metadata item DeprecatedDefinition_Removal was already defined with a different value.
12
+ @deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2022-04-25", "2024-04-25", "Owner property is deprecated and will be removed in April 2024. Please use the container property instead.")
12
13
  @publicNamespace("microsoft.graph")
13
14
  namespace reference.`microsoft.graph` {
14
15
  @complex model aadUserConversationMemberResult extends actionResultPart {
@@ -229,6 +230,10 @@ namespace reference.`microsoft.graph` {
229
230
  error: publicError | null;
230
231
  }
231
232
 
233
+ @complex model activityMetadata {
234
+ activity: userActivityType;
235
+ }
236
+
232
237
  @complex model addIn {
233
238
  id: guid | null;
234
239
  properties: keyValue[];
@@ -239,6 +244,19 @@ namespace reference.`microsoft.graph` {
239
244
  data: binary | null;
240
245
  }
241
246
 
247
+ @complex model aiAgentInfo extends aiInteractionEntity {
248
+ blueprintId: string | null;
249
+ }
250
+
251
+ @complex model aiInteractionEntity {
252
+ identifier: string | null;
253
+ name: string | null;
254
+ version: string | null;
255
+ }
256
+
257
+ @complex model aiInteractionPlugin extends aiInteractionEntity {
258
+ }
259
+
242
260
  @complex model album {
243
261
  coverImageItemId: string | null;
244
262
  }
@@ -259,6 +277,9 @@ namespace reference.`microsoft.graph` {
259
277
  value: string | null;
260
278
  }
261
279
 
280
+ @complex model allAllowedScopes extends inheritableScopes {
281
+ }
282
+
262
283
  @complex model allDeviceRegistrationMembership extends deviceRegistrationMembership {
263
284
  }
264
285
 
@@ -311,11 +332,23 @@ namespace reference.`microsoft.graph` {
311
332
  result: appliedConditionalAccessPolicyResult | null;
312
333
  }
313
334
 
335
+ @complex model appManagementApplicationConfiguration extends appManagementConfiguration {
336
+ identifierUris: identifierUriConfiguration | null;
337
+ }
338
+
339
+ @abstract
314
340
  @complex model appManagementConfiguration {
315
341
 
316
342
 
317
343
  }
318
344
 
345
+ @complex model appManagementPolicyActorExemptions {
346
+ customSecurityAttributes: customSecurityAttributeExemption[] | null;
347
+ }
348
+
349
+ @complex model appManagementServicePrincipalConfiguration extends appManagementConfiguration {
350
+ }
351
+
319
352
  @complex model appRole {
320
353
  allowedMemberTypes: string[];
321
354
  description: string | null;
@@ -535,6 +568,7 @@ namespace reference.`microsoft.graph` {
535
568
  @complex model azureADJoinPolicy {
536
569
  allowedToJoin: deviceRegistrationMembership | null;
537
570
  isAdminConfigurable: boolean | null;
571
+ localAdmins: localAdminSettings | null;
538
572
  }
539
573
 
540
574
  @complex model azureAdPopTokenAuthentication extends customExtensionAuthenticationConfiguration {
@@ -545,6 +579,10 @@ namespace reference.`microsoft.graph` {
545
579
  isAdminConfigurable: boolean | null;
546
580
  }
547
581
 
582
+ @complex model binaryContent extends contentBase {
583
+ data: binary;
584
+ }
585
+
548
586
  @complex model booleanColumn {
549
587
  }
550
588
 
@@ -804,6 +842,24 @@ namespace reference.`microsoft.graph` {
804
842
  displayAs: string | null;
805
843
  }
806
844
 
845
+ @complex model classifcationErrorBase {
846
+ code: string | null;
847
+ innerError: classificationInnerError | null;
848
+ message: string | null;
849
+ target: string | null;
850
+ }
851
+
852
+ @complex model classificationError extends classifcationErrorBase {
853
+ details: classifcationErrorBase[] | null;
854
+ }
855
+
856
+ @complex model classificationInnerError {
857
+ activityId: string | null;
858
+ clientRequestId: string | null;
859
+ code: string | null;
860
+ errorDateTime: offsetDateTime | null;
861
+ }
862
+
807
863
  @complex model cloudAppSecuritySessionControl extends conditionalAccessSessionControl {
808
864
  cloudAppSecurityType: cloudAppSecuritySessionControlType | null;
809
865
  }
@@ -967,6 +1023,10 @@ namespace reference.`microsoft.graph` {
967
1023
  @complex model contentApprovalStatusColumn {
968
1024
  }
969
1025
 
1026
+ @abstract
1027
+ @complex model contentBase {
1028
+ }
1029
+
970
1030
  @complex model contentCustomization {
971
1031
  attributeCollection: keyValue[];
972
1032
  attributeCollectionRelativeUrl: string | null;
@@ -1033,6 +1093,14 @@ namespace reference.`microsoft.graph` {
1033
1093
  locale: string | null;
1034
1094
  }
1035
1095
 
1096
+ @complex model customAppManagementApplicationConfiguration {
1097
+ identifierUris: identifierUriConfiguration | null;
1098
+ }
1099
+
1100
+ @complex model customAppManagementConfiguration extends appManagementConfiguration {
1101
+ applicationRestrictions: customAppManagementApplicationConfiguration | null;
1102
+ }
1103
+
1036
1104
  @abstract
1037
1105
  @complex model customExtensionAuthenticationConfiguration {
1038
1106
  }
@@ -1075,6 +1143,20 @@ namespace reference.`microsoft.graph` {
1075
1143
  @complex model customExtensionEndpointConfiguration {
1076
1144
  }
1077
1145
 
1146
+ @open
1147
+ @complex model customMetadataDictionary extends Dictionary {
1148
+ }
1149
+
1150
+ @abstract
1151
+ @complex model customSecurityAttributeExemption {
1152
+ id: string;
1153
+ operator: customSecurityAttributeComparisonOperator;
1154
+ }
1155
+
1156
+ @complex model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
1157
+ value: string | null;
1158
+ }
1159
+
1078
1160
  @open
1079
1161
  @complex model customSecurityAttributeValue {
1080
1162
  }
@@ -1173,9 +1255,19 @@ namespace reference.`microsoft.graph` {
1173
1255
  passwordBase64: string;
1174
1256
  }
1175
1257
 
1258
+ @complex model deviceMetadata {
1259
+ deviceType: string | null;
1260
+ ipAddress: string | null;
1261
+ operatingSystemSpecifications: operatingSystemSpecifications | null;
1262
+ }
1263
+
1176
1264
  @complex model deviceRegistrationMembership {
1177
1265
  }
1178
1266
 
1267
+ @open
1268
+ @complex model Dictionary {
1269
+ }
1270
+
1179
1271
  @complex model disableAndDeleteUserApplyAction extends accessReviewApplyAction {
1180
1272
  }
1181
1273
 
@@ -1184,6 +1276,10 @@ namespace reference.`microsoft.graph` {
1184
1276
  languageTag: string | null;
1185
1277
  }
1186
1278
 
1279
+ @complex model dlpActionInfo {
1280
+ action: dlpAction | null;
1281
+ }
1282
+
1187
1283
  @complex model documentSet {
1188
1284
  allowedContentTypes: contentTypeInfo[] | null;
1189
1285
  defaultContents: documentSetContent[] | null;
@@ -1258,6 +1354,10 @@ namespace reference.`microsoft.graph` {
1258
1354
  users: string[] | null;
1259
1355
  }
1260
1356
 
1357
+ @complex model enumeratedScopes extends inheritableScopes {
1358
+ scopes: string[];
1359
+ }
1360
+
1261
1361
  @complex model evaluateDynamicMembershipResult {
1262
1362
  membershipRule: string | null;
1263
1363
  membershipRuleEvaluationDetails: expressionEvaluationDetails | null;
@@ -1414,6 +1514,9 @@ namespace reference.`microsoft.graph` {
1414
1514
  @complex model groupPeerOutlierRecommendationInsightSettings extends accessReviewRecommendationInsightSetting {
1415
1515
  }
1416
1516
 
1517
+ @complex model groupScope extends scopeBase {
1518
+ }
1519
+
1417
1520
  @complex model hashes {
1418
1521
  crc32Hash: string | null;
1419
1522
  quickXorHash: string | null;
@@ -1437,6 +1540,20 @@ namespace reference.`microsoft.graph` {
1437
1540
  isPicture: boolean | null;
1438
1541
  }
1439
1542
 
1543
+ @complex model identifierUriConfiguration {
1544
+ nonDefaultUriAddition: identifierUriRestriction | null;
1545
+ uriAdditionWithoutUniqueTenantIdentifier: identifierUriRestriction | null;
1546
+ }
1547
+
1548
+ @complex model identifierUriRestriction {
1549
+ excludeActors: appManagementPolicyActorExemptions | null;
1550
+ excludeAppsReceivingV2Tokens: boolean | null;
1551
+ excludeSaml: boolean | null;
1552
+ isStateSetByMicrosoft: boolean;
1553
+ restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
1554
+ state: appManagementRestrictionState;
1555
+ }
1556
+
1440
1557
  @open
1441
1558
  @complex model identity {
1442
1559
  displayName: string | null;
@@ -1501,11 +1618,21 @@ namespace reference.`microsoft.graph` {
1501
1618
  termsOfServiceUrl: string | null;
1502
1619
  }
1503
1620
 
1621
+ @abstract
1622
+ @complex model inheritableScopes {
1623
+ kind: scopeCollectionKind;
1624
+ }
1625
+
1504
1626
  @open
1505
1627
  @complex model initiator extends identity {
1506
1628
  initiatorType: initiatorType | null;
1507
1629
  }
1508
1630
 
1631
+ @complex model integratedApplicationMetadata {
1632
+ name: string | null;
1633
+ version: string | null;
1634
+ }
1635
+
1509
1636
  @complex model internalSponsors extends subjectSet {
1510
1637
  }
1511
1638
 
@@ -1642,6 +1769,11 @@ namespace reference.`microsoft.graph` {
1642
1769
  isEnabled: boolean | null;
1643
1770
  }
1644
1771
 
1772
+ @complex model localAdminSettings {
1773
+ enableGlobalAdmins: boolean | null;
1774
+ registeringUsers: deviceRegistrationMembership | null;
1775
+ }
1776
+
1645
1777
  @complex model localeInfo {
1646
1778
  displayName: string | null;
1647
1779
  locale: string | null;
@@ -1906,6 +2038,9 @@ namespace reference.`microsoft.graph` {
1906
2038
  @complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
1907
2039
  }
1908
2040
 
2041
+ @complex model noScopes extends inheritableScopes {
2042
+ }
2043
+
1909
2044
  @complex model numberColumn {
1910
2045
  decimalPlaces: string | null;
1911
2046
  displayAs: string | null;
@@ -2022,6 +2157,11 @@ namespace reference.`microsoft.graph` {
2022
2157
  discoveryUrl: string;
2023
2158
  }
2024
2159
 
2160
+ @complex model operatingSystemSpecifications {
2161
+ operatingSystemPlatform: string;
2162
+ operatingSystemVersion: string;
2163
+ }
2164
+
2025
2165
  @complex model operationError {
2026
2166
  code: string | null;
2027
2167
  message: string | null;
@@ -2178,6 +2318,120 @@ namespace reference.`microsoft.graph` {
2178
2318
  street: string | null;
2179
2319
  }
2180
2320
 
2321
+ @open
2322
+ @complex model plannerAppliedCategories {
2323
+ }
2324
+
2325
+ @complex model plannerAssignment {
2326
+ assignedBy: identitySet | null;
2327
+ assignedDateTime: offsetDateTime | null;
2328
+ orderHint: string | null;
2329
+ }
2330
+
2331
+ @open
2332
+ @complex model plannerAssignments {
2333
+ }
2334
+
2335
+ @complex model plannerCategoryDescriptions {
2336
+ category1: string | null;
2337
+ category10: string | null;
2338
+ category11: string | null;
2339
+ category12: string | null;
2340
+ category13: string | null;
2341
+ category14: string | null;
2342
+ category15: string | null;
2343
+ category16: string | null;
2344
+ category17: string | null;
2345
+ category18: string | null;
2346
+ category19: string | null;
2347
+ category2: string | null;
2348
+ category20: string | null;
2349
+ category21: string | null;
2350
+ category22: string | null;
2351
+ category23: string | null;
2352
+ category24: string | null;
2353
+ category25: string | null;
2354
+ category3: string | null;
2355
+ category4: string | null;
2356
+ category5: string | null;
2357
+ category6: string | null;
2358
+ category7: string | null;
2359
+ category8: string | null;
2360
+ category9: string | null;
2361
+ }
2362
+
2363
+ @complex model plannerChecklistItem {
2364
+ isChecked: boolean | null;
2365
+ lastModifiedBy: identitySet | null;
2366
+ @computed lastModifiedDateTime: offsetDateTime | null;
2367
+ orderHint: string | null;
2368
+ title: string | null;
2369
+ }
2370
+
2371
+ @open
2372
+ @complex model plannerChecklistItems {
2373
+ }
2374
+
2375
+ @complex model plannerExternalReference {
2376
+ `alias`: string | null;
2377
+ lastModifiedBy: identitySet | null;
2378
+ @computed lastModifiedDateTime: offsetDateTime | null;
2379
+ previewPriority: string | null;
2380
+ type: string | null;
2381
+ }
2382
+
2383
+ @open
2384
+ @complex model plannerExternalReferences {
2385
+ }
2386
+
2387
+ @open
2388
+ @complex model plannerOrderHintsByAssignee {
2389
+ }
2390
+
2391
+ @complex model plannerPlanContainer {
2392
+ containerId: string | null;
2393
+ type: plannerContainerType | null;
2394
+ url: string | null;
2395
+ }
2396
+
2397
+ @open
2398
+ @complex model plannerUserIds {
2399
+ }
2400
+
2401
+ @complex model policyBinding {
2402
+ exclusions: scopeBase[] | null;
2403
+ inclusions: scopeBase[];
2404
+ }
2405
+
2406
+ @abstract
2407
+ @complex model policyLocation {
2408
+ value: string;
2409
+ }
2410
+
2411
+ @complex model policyLocationApplication extends policyLocation {
2412
+ }
2413
+
2414
+ @complex model policyLocationDomain extends policyLocation {
2415
+ }
2416
+
2417
+ @complex model policyLocationUrl extends policyLocation {
2418
+ }
2419
+
2420
+ @abstract
2421
+ @complex model policyScopeBase {
2422
+ activities: userActivityTypes;
2423
+ executionMode: executionMode;
2424
+ locations: policyLocation[];
2425
+ policyActions: dlpActionInfo[];
2426
+ }
2427
+
2428
+ @complex model policyTenantScope extends policyScopeBase {
2429
+ policyScope: policyBinding | null;
2430
+ }
2431
+
2432
+ @complex model policyUserScope extends policyScopeBase {
2433
+ }
2434
+
2181
2435
  @complex model preAuthorizedApplication {
2182
2436
  appId: string | null;
2183
2437
  delegatedPermissionIds: string[];
@@ -2214,11 +2468,74 @@ namespace reference.`microsoft.graph` {
2214
2468
  processId: int32 | null;
2215
2469
  }
2216
2470
 
2471
+ @complex model processContentBatchRequest {
2472
+ contentToProcess: processContentRequest;
2473
+ requestId: string | null;
2474
+ userId: string | null;
2475
+ }
2476
+
2477
+ @abstract
2478
+ @complex model processContentMetadataBase {
2479
+ content: contentBase | null;
2480
+ correlationId: string | null;
2481
+ @computed createdDateTime: offsetDateTime;
2482
+ identifier: string;
2483
+ isTruncated: boolean;
2484
+ length: int64 | null;
2485
+ modifiedDateTime: offsetDateTime;
2486
+ name: string;
2487
+ sequenceNumber: int64 | null;
2488
+ }
2489
+
2490
+ @complex model processContentRequest {
2491
+ activityMetadata: activityMetadata;
2492
+ contentEntries: processContentMetadataBase[];
2493
+ deviceMetadata: deviceMetadata;
2494
+ integratedAppMetadata: integratedApplicationMetadata;
2495
+ protectedAppMetadata: protectedApplicationMetadata | null;
2496
+ }
2497
+
2498
+ @complex model processContentResponse {
2499
+ policyActions: dlpActionInfo[];
2500
+ processingErrors: processingError[];
2501
+ protectionScopeState: protectionScopeState;
2502
+ }
2503
+
2504
+ @complex model processContentResponses {
2505
+ requestId: string | null;
2506
+ results: processContentResponse;
2507
+ }
2508
+
2509
+ @complex model processConversationMetadata extends processContentMetadataBase {
2510
+
2511
+ // Warning: Malformed version string '2020-08-20' detected.
2512
+ accessedResources: string[] | null;
2513
+ accessedResources_v2: resourceAccessDetail[] | null;
2514
+ agents: aiAgentInfo[] | null;
2515
+ parentMessageId: string | null;
2516
+ plugins: aiInteractionPlugin[] | null;
2517
+ }
2518
+
2519
+ @complex model processFileMetadata extends processContentMetadataBase {
2520
+ customProperties: customMetadataDictionary | null;
2521
+ ownerId: string | null;
2522
+ }
2523
+
2524
+ @complex model processingError extends classificationError {
2525
+ errorType: contentProcessingErrorType;
2526
+ }
2527
+
2217
2528
  @complex model profileCardAnnotation {
2218
2529
  displayName: string | null;
2219
2530
  localizations: displayNameLocalization[] | null;
2220
2531
  }
2221
2532
 
2533
+ @complex model profileSourceLocalization {
2534
+ displayName: string | null;
2535
+ languageTag: string | null;
2536
+ webUrl: string | null;
2537
+ }
2538
+
2222
2539
  @abstract
2223
2540
  @complex model prompt {
2224
2541
  }
@@ -2228,6 +2545,10 @@ namespace reference.`microsoft.graph` {
2228
2545
  propertyValue: string | null;
2229
2546
  }
2230
2547
 
2548
+ @complex model protectedApplicationMetadata extends integratedApplicationMetadata {
2549
+ applicationLocation: policyLocation | null;
2550
+ }
2551
+
2231
2552
  @complex model protectedContent {
2232
2553
  cid: string | null;
2233
2554
  format: string | null;
@@ -2441,6 +2762,17 @@ namespace reference.`microsoft.graph` {
2441
2762
  type: string | null;
2442
2763
  }
2443
2764
 
2765
+ @complex model resourceAccessDetail {
2766
+ accessType: resourceAccessType;
2767
+ identifier: string;
2768
+ isCrossPromptInjectionDetected: boolean;
2769
+ labelId: string | null;
2770
+ name: string;
2771
+ status: resourceAccessStatus;
2772
+ storageId: string | null;
2773
+ url: string | null;
2774
+ }
2775
+
2444
2776
  @open
2445
2777
  @complex model resourceData {
2446
2778
  }
@@ -2499,6 +2831,11 @@ namespace reference.`microsoft.graph` {
2499
2831
  subject: string | null;
2500
2832
  }
2501
2833
 
2834
+ @abstract
2835
+ @complex model scopeBase {
2836
+ identity: string | null;
2837
+ }
2838
+
2502
2839
  @complex model scoredEmailAddress {
2503
2840
  address: string | null;
2504
2841
  itemId: string | null;
@@ -3130,6 +3467,9 @@ namespace reference.`microsoft.graph` {
3130
3467
  tenantId: string;
3131
3468
  }
3132
3469
 
3470
+ @complex model tenantScope extends scopeBase {
3471
+ }
3472
+
3133
3473
  @complex model termColumn {
3134
3474
  allowMultipleValues: boolean | null;
3135
3475
  showFullyQualifiedName: boolean | null;
@@ -3150,6 +3490,10 @@ namespace reference.`microsoft.graph` {
3150
3490
  textType: string | null;
3151
3491
  }
3152
3492
 
3493
+ @complex model textContent extends contentBase {
3494
+ data: string;
3495
+ }
3496
+
3153
3497
  @complex model thumbnail {
3154
3498
  content: stream | null;
3155
3499
  height: int32 | null;
@@ -3279,6 +3623,9 @@ namespace reference.`microsoft.graph` {
3279
3623
  userTypes: includedUserTypes | null;
3280
3624
  }
3281
3625
 
3626
+ @complex model userScope extends scopeBase {
3627
+ }
3628
+
3282
3629
  @complex model userSecurityState {
3283
3630
  aadUserId: string | null;
3284
3631
  accountName: string | null;
@@ -3302,6 +3649,12 @@ namespace reference.`microsoft.graph` {
3302
3649
  userId: string | null;
3303
3650
  }
3304
3651
 
3652
+ @complex model userWorkLocation {
3653
+ placeId: string | null;
3654
+ source: workLocationSource;
3655
+ workLocationType: workLocationType;
3656
+ }
3657
+
3305
3658
  @complex model verifiedDomain {
3306
3659
  capabilities: string | null;
3307
3660
  isDefault: boolean | null;
@@ -3731,6 +4084,10 @@ namespace reference.`microsoft.graph` {
3731
4084
  @contains decisions: accessReviewInstanceDecisionItem[];
3732
4085
  }
3733
4086
 
4087
+ @entity model activitiesContainer extends entity {
4088
+ @contains contentActivities: contentActivity[];
4089
+ }
4090
+
3734
4091
  @entity model activityBasedTimeoutPolicy extends stsPolicy {
3735
4092
  }
3736
4093
 
@@ -3761,6 +4118,30 @@ namespace reference.`microsoft.graph` {
3761
4118
  @contains scopedRoleMembers: scopedRoleMembership[];
3762
4119
  }
3763
4120
 
4121
+ @open
4122
+ @entity model agentIdentity extends servicePrincipal {
4123
+ agentIdentityBlueprintId: string;
4124
+ @computed createdDateTime: offsetDateTime | null;
4125
+ @references sponsors: directoryObject[];
4126
+ }
4127
+
4128
+ @open
4129
+ @entity model agentIdentityBlueprint extends application {
4130
+ defaultRedirectUri: string | null;
4131
+ @contains inheritablePermissions: inheritablePermission[];
4132
+ @references sponsors: directoryObject[];
4133
+ }
4134
+
4135
+ @open
4136
+ @entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
4137
+ signInAudience: string | null;
4138
+ @references sponsors: directoryObject[];
4139
+ }
4140
+
4141
+ @open
4142
+ @entity model agentUser extends user {
4143
+ }
4144
+
3764
4145
  @entity model agreement extends entity {
3765
4146
  displayName: string | null;
3766
4147
  isPerDeviceAcceptanceRequired: boolean | null;
@@ -3878,6 +4259,7 @@ namespace reference.`microsoft.graph` {
3878
4259
  applicationTemplateId: string | null;
3879
4260
  appRoles: appRole[];
3880
4261
  authenticationBehaviors: authenticationBehaviors | null;
4262
+ createdByAppId: string | null;
3881
4263
  @computed createdDateTime: offsetDateTime | null;
3882
4264
  description: string | null;
3883
4265
  disabledByMicrosoftStatus: string | null;
@@ -3886,9 +4268,11 @@ namespace reference.`microsoft.graph` {
3886
4268
  identifierUris: string[];
3887
4269
  info: informationalUrl | null;
3888
4270
  isDeviceOnlyAuthSupported: boolean | null;
4271
+ isDisabled: boolean | null;
3889
4272
  isFallbackPublicClient: boolean | null;
3890
4273
  keyCredentials: keyCredential[];
3891
4274
  logo: stream;
4275
+ managerApplications: guid;
3892
4276
  notes: string | null;
3893
4277
  oauth2RequirePostResponse: boolean;
3894
4278
  optionalClaims: optionalClaims | null;
@@ -3929,7 +4313,7 @@ namespace reference.`microsoft.graph` {
3929
4313
 
3930
4314
  @entity model appManagementPolicy extends policyBase {
3931
4315
  isEnabled: boolean;
3932
- restrictions: appManagementConfiguration | null;
4316
+ restrictions: customAppManagementConfiguration | null;
3933
4317
  @references appliesTo: directoryObject[];
3934
4318
  }
3935
4319
 
@@ -3957,6 +4341,10 @@ namespace reference.`microsoft.graph` {
3957
4341
  status: string | null;
3958
4342
  }
3959
4343
 
4344
+ @entity model approvedClientApp extends entity {
4345
+ displayName: string | null;
4346
+ }
4347
+
3960
4348
  @entity model appScope extends entity {
3961
4349
  displayName: string | null;
3962
4350
  type: string | null;
@@ -4487,6 +4875,12 @@ namespace reference.`microsoft.graph` {
4487
4875
  @contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
4488
4876
  }
4489
4877
 
4878
+ @entity model contentActivity extends entity {
4879
+ contentMetadata: processContentRequest;
4880
+ scopeIdentifier: string | null;
4881
+ userId: string | null;
4882
+ }
4883
+
4490
4884
  @entity model contentType extends entity {
4491
4885
  associatedHubsUrls: string[] | null;
4492
4886
  description: string | null;
@@ -4993,6 +5387,11 @@ namespace reference.`microsoft.graph` {
4993
5387
  targetObjects: string[];
4994
5388
  }
4995
5389
 
5390
+ @entity model externalAuthenticationMethod extends authenticationMethod {
5391
+ configurationId: string;
5392
+ displayName: string;
5393
+ }
5394
+
4996
5395
  @entity model externalAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
4997
5396
  appId: string;
4998
5397
  displayName: string;
@@ -5075,6 +5474,7 @@ namespace reference.`microsoft.graph` {
5075
5474
  hasMembersWithLicenseErrors: boolean | null;
5076
5475
  hideFromAddressLists: boolean | null;
5077
5476
  hideFromOutlookClients: boolean | null;
5477
+ infoCatalogs: string[];
5078
5478
  isArchived: boolean | null;
5079
5479
  isAssignableToRole: boolean | null;
5080
5480
  isManagementRestricted: boolean | null;
@@ -5105,6 +5505,7 @@ namespace reference.`microsoft.graph` {
5105
5505
  uniqueName: string | null;
5106
5506
  unseenCount: int32 | null;
5107
5507
  visibility: string | null;
5508
+ welcomeMessageEnabled: boolean | null;
5108
5509
  @contains acceptedSenders: directoryObject[];
5109
5510
  @contains appRoleAssignments: appRoleAssignment[];
5110
5511
  @contains calendar: calendar | null;
@@ -5123,6 +5524,7 @@ namespace reference.`microsoft.graph` {
5123
5524
  @references owners: directoryObject[];
5124
5525
  @contains photo: profilePhoto | null;
5125
5526
  @contains photos: profilePhoto[];
5527
+ @contains planner: plannerGroup | null;
5126
5528
  @contains rejectedSenders: directoryObject[];
5127
5529
  @contains settings: groupSetting[];
5128
5530
  @contains sites: site[];
@@ -5208,6 +5610,11 @@ namespace reference.`microsoft.graph` {
5208
5610
  @contains bitlocker: bitlocker | null;
5209
5611
  }
5210
5612
 
5613
+ @entity model inheritablePermission extends MsGraph.SharedModels.entity {
5614
+ inheritableScopes: inheritableScopes | null;
5615
+ @computed @key resourceAppId: string;
5616
+ }
5617
+
5211
5618
  @entity model insightsSettings extends entity {
5212
5619
  disabledForGroup: string | null;
5213
5620
  isEnabledInOrganization: boolean | null;
@@ -5627,6 +6034,8 @@ namespace reference.`microsoft.graph` {
5627
6034
  @entity model peopleAdminSettings extends entity {
5628
6035
  @contains itemInsights: insightsSettings | null;
5629
6036
  @contains profileCardProperties: profileCardProperty[];
6037
+ @contains profilePropertySettings: profilePropertySetting[];
6038
+ @contains profileSources: profileSource[];
5630
6039
  @contains pronouns: pronounsSettings | null;
5631
6040
  }
5632
6041
 
@@ -5708,6 +6117,94 @@ namespace reference.`microsoft.graph` {
5708
6117
  phone: string | null;
5709
6118
  }
5710
6119
 
6120
+ @entity model planner extends entity {
6121
+ @contains buckets: plannerBucket[];
6122
+ @contains plans: plannerPlan[];
6123
+ @contains tasks: plannerTask[];
6124
+ }
6125
+
6126
+ @entity model plannerAssignedToTaskBoardTaskFormat extends entity {
6127
+ orderHintsByAssignee: plannerOrderHintsByAssignee | null;
6128
+ unassignedOrderHint: string | null;
6129
+ }
6130
+
6131
+ @entity model plannerBucket extends entity {
6132
+ name: string;
6133
+ orderHint: string | null;
6134
+ planId: string | null;
6135
+ @references tasks: plannerTask[];
6136
+ }
6137
+
6138
+ @entity model plannerBucketTaskBoardTaskFormat extends entity {
6139
+ orderHint: string | null;
6140
+ }
6141
+
6142
+ @entity model plannerGroup extends entity {
6143
+ @references plans: plannerPlan[];
6144
+ }
6145
+
6146
+ @entity model plannerPlan extends entity {
6147
+ container: plannerPlanContainer | null;
6148
+ createdBy: identitySet | null;
6149
+ @computed createdDateTime: offsetDateTime | null;
6150
+
6151
+ @graphDeprecated("Tasks_And_Plans")
6152
+ owner: string | null;
6153
+ title: string;
6154
+ @references buckets: plannerBucket[];
6155
+ @contains details: plannerPlanDetails | null;
6156
+ @references tasks: plannerTask[];
6157
+ }
6158
+
6159
+ @entity model plannerPlanDetails extends entity {
6160
+ categoryDescriptions: plannerCategoryDescriptions | null;
6161
+ sharedWith: plannerUserIds | null;
6162
+ }
6163
+
6164
+ @entity model plannerProgressTaskBoardTaskFormat extends entity {
6165
+ orderHint: string | null;
6166
+ }
6167
+
6168
+ @entity model plannerTask extends entity {
6169
+ activeChecklistItemCount: int32 | null;
6170
+ appliedCategories: plannerAppliedCategories | null;
6171
+ assigneePriority: string | null;
6172
+ assignments: plannerAssignments | null;
6173
+ bucketId: string | null;
6174
+ checklistItemCount: int32 | null;
6175
+ completedBy: identitySet | null;
6176
+ completedDateTime: offsetDateTime | null;
6177
+ conversationThreadId: string | null;
6178
+ createdBy: identitySet | null;
6179
+ @computed createdDateTime: offsetDateTime | null;
6180
+ dueDateTime: offsetDateTime | null;
6181
+ hasDescription: boolean | null;
6182
+ orderHint: string | null;
6183
+ percentComplete: int32 | null;
6184
+ planId: string | null;
6185
+ previewType: plannerPreviewType | null;
6186
+ priority: int32 | null;
6187
+ referenceCount: int32 | null;
6188
+ startDateTime: offsetDateTime | null;
6189
+ title: string;
6190
+ @contains assignedToTaskBoardFormat: plannerAssignedToTaskBoardTaskFormat | null;
6191
+ @contains bucketTaskBoardFormat: plannerBucketTaskBoardTaskFormat | null;
6192
+ @contains details: plannerTaskDetails | null;
6193
+ @contains progressTaskBoardFormat: plannerProgressTaskBoardTaskFormat | null;
6194
+ }
6195
+
6196
+ @entity model plannerTaskDetails extends entity {
6197
+ checklist: plannerChecklistItems | null;
6198
+ description: string | null;
6199
+ previewType: plannerPreviewType | null;
6200
+ references: plannerExternalReferences | null;
6201
+ }
6202
+
6203
+ @entity model plannerUser extends entity {
6204
+ @references plans: plannerPlan[];
6205
+ @references tasks: plannerTask[];
6206
+ }
6207
+
5711
6208
  @entity model platformCredentialAuthenticationMethod extends authenticationMethod {
5712
6209
  displayName: string | null;
5713
6210
  keyStrength: authenticationMethodKeyStrength | null;
@@ -5768,6 +6265,7 @@ namespace reference.`microsoft.graph` {
5768
6265
  activity: string | null;
5769
6266
  availability: string | null;
5770
6267
  statusMessage: presenceStatusMessage | null;
6268
+ workLocation: userWorkLocation | null;
5771
6269
  }
5772
6270
 
5773
6271
  @entity model privilegedAccessGroup extends entity {
@@ -5881,6 +6379,20 @@ namespace reference.`microsoft.graph` {
5881
6379
  width: int32 | null;
5882
6380
  }
5883
6381
 
6382
+ @entity model profilePropertySetting extends entity {
6383
+ displayName: string | null;
6384
+ name: string | null;
6385
+ prioritizedSourceUrls: string[];
6386
+ }
6387
+
6388
+ @entity model profileSource extends entity {
6389
+ displayName: string | null;
6390
+ kind: string | null;
6391
+ localizations: profileSourceLocalization[];
6392
+ sourceId: string | null;
6393
+ webUrl: string | null;
6394
+ }
6395
+
5884
6396
  @entity model pronounsSettings extends entity {
5885
6397
  isEnabledInOrganization: boolean;
5886
6398
  }
@@ -5931,6 +6443,7 @@ namespace reference.`microsoft.graph` {
5931
6443
 
5932
6444
  @entity model remoteDesktopSecurityConfiguration extends entity {
5933
6445
  isRemoteDesktopProtocolEnabled: boolean;
6446
+ @contains approvedClientApps: approvedClientApp[];
5934
6447
  @contains targetDeviceGroups: targetDeviceGroup[];
5935
6448
  }
5936
6449
 
@@ -6109,6 +6622,7 @@ namespace reference.`microsoft.graph` {
6109
6622
  @contains alerts: alert[];
6110
6623
  @contains alerts_v2: reference.`microsoft.graph.security`.alert[];
6111
6624
  @contains cases: reference.`microsoft.graph.security`.casesRoot | null;
6625
+ @contains dataSecurityAndGovernance: tenantDataSecurityAndGovernance | null;
6112
6626
  @contains incidents: reference.`microsoft.graph.security`.incident[];
6113
6627
  @contains secureScoreControlProfiles: secureScoreControlProfile[];
6114
6628
  @contains secureScores: secureScore[];
@@ -6167,12 +6681,14 @@ namespace reference.`microsoft.graph` {
6167
6681
  appOwnerOrganizationId: guid | null;
6168
6682
  appRoleAssignmentRequired: boolean;
6169
6683
  appRoles: appRole[];
6684
+ createdByAppId: string | null;
6170
6685
  customSecurityAttributes: customSecurityAttributeValue | null;
6171
6686
  description: string | null;
6172
6687
  disabledByMicrosoftStatus: string | null;
6173
6688
  displayName: string | null;
6174
6689
  homepage: string | null;
6175
6690
  info: informationalUrl | null;
6691
+ isDisabled: boolean | null;
6176
6692
  keyCredentials: keyCredential[];
6177
6693
  loginUrl: string | null;
6178
6694
  logoutUrl: string | null;
@@ -6615,9 +7131,16 @@ namespace reference.`microsoft.graph` {
6615
7131
  }
6616
7132
 
6617
7133
  @entity model tenantAppManagementPolicy extends policyBase {
6618
- applicationRestrictions: appManagementConfiguration | null;
7134
+ applicationRestrictions: appManagementApplicationConfiguration | null;
6619
7135
  isEnabled: boolean;
6620
- servicePrincipalRestrictions: appManagementConfiguration | null;
7136
+ servicePrincipalRestrictions: appManagementServicePrincipalConfiguration | null;
7137
+ }
7138
+
7139
+ @entity model tenantDataSecurityAndGovernance extends dataSecurityAndGovernance {
7140
+ @contains protectionScopes: tenantProtectionScopeContainer;
7141
+ }
7142
+
7143
+ @entity model tenantProtectionScopeContainer extends entity {
6621
7144
  }
6622
7145
 
6623
7146
  @entity model tenantRelationship extends MsGraph.SharedModels.entity {
@@ -6902,6 +7425,7 @@ namespace reference.`microsoft.graph` {
6902
7425
  givenName: string | null;
6903
7426
  hireDate: offsetDateTime;
6904
7427
  identities: objectIdentity[] | null;
7428
+ identityParentId: string | null;
6905
7429
  imAddresses: string[] | null;
6906
7430
  interests: string[] | null;
6907
7431
  isManagementRestricted: boolean | null;
@@ -6961,6 +7485,7 @@ namespace reference.`microsoft.graph` {
6961
7485
  @contains contactFolders: contactFolder[];
6962
7486
  @contains contacts: contact[];
6963
7487
  @references createdObjects: directoryObject[];
7488
+ @contains dataSecurityAndGovernance: userDataSecurityAndGovernance | null;
6964
7489
  @references directReports: directoryObject[];
6965
7490
  @contains drive: drive | null;
6966
7491
  @contains drives: drive[];
@@ -6983,6 +7508,7 @@ namespace reference.`microsoft.graph` {
6983
7508
  @contains people: person[];
6984
7509
  @contains photo: profilePhoto | null;
6985
7510
  @contains photos: profilePhoto[];
7511
+ @contains planner: plannerUser | null;
6986
7512
  @contains presence: presence | null;
6987
7513
  @references registeredDevices: directoryObject[];
6988
7514
  @contains scopedRoleMemberOf: scopedRoleMembership[];
@@ -6998,10 +7524,18 @@ namespace reference.`microsoft.graph` {
6998
7524
  @contains approval: approval | null;
6999
7525
  }
7000
7526
 
7527
+ @entity model userDataSecurityAndGovernance extends dataSecurityAndGovernance {
7528
+ @contains activities: activitiesContainer | null;
7529
+ @contains protectionScopes: userProtectionScopeContainer | null;
7530
+ }
7531
+
7001
7532
  @entity model userInsightsSettings extends entity {
7002
7533
  isEnabled: boolean;
7003
7534
  }
7004
7535
 
7536
+ @entity model userProtectionScopeContainer extends entity {
7537
+ }
7538
+
7005
7539
  @entity model userRegistrationDetails extends entity {
7006
7540
  isAdmin: boolean | null;
7007
7541
  isMfaCapable: boolean;
@@ -7486,6 +8020,7 @@ namespace reference.`microsoft.graph` {
7486
8020
  systemRemove: 9,
7487
8021
  onBehalfAdd: 10,
7488
8022
  unknownFutureValue: 11,
8023
+ approverRemove: 12,
7489
8024
  }
7490
8025
 
7491
8026
  enum accessPackageSubjectType {
@@ -7633,6 +8168,12 @@ namespace reference.`microsoft.graph` {
7633
8168
  reportOnlyInterrupted: 9,
7634
8169
  }
7635
8170
 
8171
+ enum appManagementRestrictionState {
8172
+ enabled: 1,
8173
+ disabled: 2,
8174
+ unknownFutureValue: 3,
8175
+ }
8176
+
7636
8177
  enum approvalFilterByCurrentUserOptions {
7637
8178
  target: 0,
7638
8179
  createdBy: 1,
@@ -7722,6 +8263,14 @@ namespace reference.`microsoft.graph` {
7722
8263
  DateTime: 5,
7723
8264
  }
7724
8265
 
8266
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
8267
+ enum auditLogRecordType {
8268
+ }
8269
+
8270
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
8271
+ enum auditLogUserType {
8272
+ }
8273
+
7725
8274
  enum authenticationMethodFeature {
7726
8275
  ssprRegistered: 0,
7727
8276
  ssprEnabled: 1,
@@ -8200,6 +8749,12 @@ namespace reference.`microsoft.graph` {
8200
8749
  unknownFutureValue: 1,
8201
8750
  }
8202
8751
 
8752
+ enum contentProcessingErrorType {
8753
+ transient: 0,
8754
+ permanent: 1,
8755
+ unknownFutureValue: 2,
8756
+ }
8757
+
8203
8758
  enum countryLookupMethodType {
8204
8759
  clientIpAddress: 0,
8205
8760
  authenticatorAppGps: 1,
@@ -8228,6 +8783,11 @@ namespace reference.`microsoft.graph` {
8228
8783
  unknownFutureValue: 6,
8229
8784
  }
8230
8785
 
8786
+ enum customSecurityAttributeComparisonOperator {
8787
+ equals: 1,
8788
+ unknownFutureValue: 2,
8789
+ }
8790
+
8231
8791
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
8232
8792
  enum dayOfWeek {
8233
8793
  sunday: 0,
@@ -8256,6 +8816,13 @@ namespace reference.`microsoft.graph` {
8256
8816
  UnknownFutureValue: 16,
8257
8817
  }
8258
8818
 
8819
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
8820
+ enum dlpAction {
8821
+ notifyUser: 0,
8822
+ blockAccess: 1,
8823
+ deviceRestriction: 2,
8824
+ }
8825
+
8259
8826
  enum driveItemSourceApplication {
8260
8827
  teams: 0,
8261
8828
  yammer: 1,
@@ -8342,6 +8909,12 @@ namespace reference.`microsoft.graph` {
8342
8909
  restImmutableEntryId: 4,
8343
8910
  }
8344
8911
 
8912
+ enum executionMode {
8913
+ evaluateInline: 1,
8914
+ evaluateOffline: 2,
8915
+ unknownFutureValue: 3,
8916
+ }
8917
+
8345
8918
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
8346
8919
  enum expirationPatternType {
8347
8920
  notSpecified: 0,
@@ -8822,6 +9395,28 @@ namespace reference.`microsoft.graph` {
8822
9395
  radio: 9,
8823
9396
  }
8824
9397
 
9398
+ enum plannerContainerType {
9399
+ group: 1,
9400
+ unknownFutureValue: 2,
9401
+ roster: 3,
9402
+ }
9403
+
9404
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
9405
+ enum plannerPreviewType {
9406
+ automatic: 0,
9407
+ noPreview: 1,
9408
+ checklist: 2,
9409
+ description: 3,
9410
+ reference: 4,
9411
+ }
9412
+
9413
+ enum policyPivotProperty {
9414
+ none: 0,
9415
+ activity: 1,
9416
+ location: 2,
9417
+ unknownFutureValue: 3,
9418
+ }
9419
+
8825
9420
  enum postType {
8826
9421
  regular: 0,
8827
9422
  quick: 1,
@@ -8864,6 +9459,12 @@ namespace reference.`microsoft.graph` {
8864
9459
  unknownFutureValue: 3,
8865
9460
  }
8866
9461
 
9462
+ enum protectionScopeState {
9463
+ notModified: 0,
9464
+ modified: 1,
9465
+ unknownFutureValue: 2,
9466
+ }
9467
+
8867
9468
  enum provisioningAction {
8868
9469
  other: 0,
8869
9470
  create: 1,
@@ -8989,6 +9590,22 @@ namespace reference.`microsoft.graph` {
8989
9590
  unknownFutureValue: 3,
8990
9591
  }
8991
9592
 
9593
+ enum resourceAccessStatus {
9594
+ none: 0,
9595
+ failure: 1,
9596
+ success: 2,
9597
+ unknownFutureValue: 4,
9598
+ }
9599
+
9600
+ @graphFlags
9601
+ enum resourceAccessType {
9602
+ none: 0,
9603
+ read: 1,
9604
+ write: 2,
9605
+ create: 4,
9606
+ unknownFutureValue: 8,
9607
+ }
9608
+
8992
9609
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
8993
9610
  enum responseType {
8994
9611
  none: 0,
@@ -9017,6 +9634,7 @@ namespace reference.`microsoft.graph` {
9017
9634
  userChangedPasswordOnPremises: 15,
9018
9635
  adminDismissedRiskForSignIn: 16,
9019
9636
  adminConfirmedAccountSafe: 17,
9637
+ microsoftRevokedSessions: 18,
9020
9638
  }
9021
9639
 
9022
9640
  enum riskDetectionTimingType {
@@ -9118,6 +9736,14 @@ namespace reference.`microsoft.graph` {
9118
9736
  unknownFutureValue: 10,
9119
9737
  }
9120
9738
 
9739
+ enum scopeCollectionKind {
9740
+ allAllowed: 0,
9741
+ enumerated: 1,
9742
+ none: 2,
9743
+ scopeKindNotSet: 3,
9744
+ unknownFutureValue: 4,
9745
+ }
9746
+
9121
9747
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
9122
9748
  enum scopeOperatorMultiValuedComparisonType {
9123
9749
  All: 0,
@@ -9645,6 +10271,24 @@ namespace reference.`microsoft.graph` {
9645
10271
  unknownFutureValue: 2,
9646
10272
  }
9647
10273
 
10274
+ enum userActivityType {
10275
+ uploadText: 1,
10276
+ uploadFile: 2,
10277
+ downloadText: 3,
10278
+ downloadFile: 4,
10279
+ unknownFutureValue: 5,
10280
+ }
10281
+
10282
+ @graphFlags
10283
+ enum userActivityTypes {
10284
+ none: 0,
10285
+ uploadText: 1,
10286
+ uploadFile: 2,
10287
+ downloadText: 4,
10288
+ downloadFile: 8,
10289
+ unknownFutureValue: 16,
10290
+ }
10291
+
9648
10292
  enum userDefaultAuthenticationMethod {
9649
10293
  push: 0,
9650
10294
  oath: 1,
@@ -9656,6 +10300,13 @@ namespace reference.`microsoft.graph` {
9656
10300
  unknownFutureValue: 7,
9657
10301
  }
9658
10302
 
10303
+ enum userScopeType {
10304
+ user: 1,
10305
+ group: 2,
10306
+ tenant: 3,
10307
+ unknownFutureValue: 4,
10308
+ }
10309
+
9659
10310
  enum userSignInRecommendationScope {
9660
10311
  tenant: 0,
9661
10312
  application: 1,
@@ -9733,6 +10384,22 @@ namespace reference.`microsoft.graph` {
9733
10384
  failed: 3,
9734
10385
  }
9735
10386
 
10387
+ enum workLocationSource {
10388
+ none: 0,
10389
+ manual: 1,
10390
+ scheduled: 2,
10391
+ automatic: 3,
10392
+ unknownFutureValue: 4,
10393
+ }
10394
+
10395
+ enum workLocationType {
10396
+ unspecified: 0,
10397
+ office: 1,
10398
+ remote: 2,
10399
+ timeOff: 3,
10400
+ unknownFutureValue: 4,
10401
+ }
10402
+
9736
10403
  enum x509CertificateAffinityLevel {
9737
10404
  low: 0,
9738
10405
  high: 1,
@@ -10154,6 +10821,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
10154
10821
  }
10155
10822
 
10156
10823
  }
10824
+ @deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2026-03-18", "2028-03-18", "Alert category property is deprecated and replaced with alert categories")
10157
10825
  @publicNamespace("microsoft.graph.security")
10158
10826
  namespace reference.`microsoft.graph.security` {
10159
10827
  @complex model activeDirectoryDomainEvidence extends alertEvidence {
@@ -10548,6 +11216,10 @@ namespace reference.`microsoft.graph.security` {
10548
11216
  processes: processEvidence[] | null;
10549
11217
  }
10550
11218
 
11219
+ @complex model mergeResponse {
11220
+ targetIncidentId: string;
11221
+ }
11222
+
10551
11223
  @complex model networkConnectionEvidence extends alertEvidence {
10552
11224
  destinationAddress: ipEvidence | null;
10553
11225
  destinationPort: int32 | null;
@@ -10718,6 +11390,7 @@ namespace reference.`microsoft.graph.security` {
10718
11390
  displayName: string | null;
10719
11391
  domainName: string | null;
10720
11392
  resourceAccessEvents: resourceAccessEvent[] | null;
11393
+ tenantId: string | null;
10721
11394
  userPrincipalName: string | null;
10722
11395
  userSid: string | null;
10723
11396
  }
@@ -10740,6 +11413,9 @@ namespace reference.`microsoft.graph.security` {
10740
11413
  alertPolicyId: string | null;
10741
11414
  alertWebUrl: string | null;
10742
11415
  assignedTo: string | null;
11416
+ categories: string[] | null;
11417
+
11418
+ @graphDeprecated("Tasks_And_Plans")
10743
11419
  category: string | null;
10744
11420
  classification: alertClassification | null;
10745
11421
  comments: alertComment[] | null;
@@ -10905,6 +11581,7 @@ namespace reference.`microsoft.graph.security` {
10905
11581
  }
10906
11582
 
10907
11583
  @entity model ediscoveryPurgeDataOperation extends caseOperation {
11584
+ reportFileMetadata: reportFileMetadata[] | null;
10908
11585
  }
10909
11586
 
10910
11587
  @entity model ediscoveryReviewSet extends dataSet {
@@ -11156,6 +11833,28 @@ namespace reference.`microsoft.graph.security` {
11156
11833
  unknownFutureValue: 3,
11157
11834
  }
11158
11835
 
11836
+ @graphFlags
11837
+ enum correlationReason {
11838
+ repeatedAlertOccurrence: 1,
11839
+ sameGeography: 2,
11840
+ similarArtifacts: 4,
11841
+ sameTargetedAsset: 8,
11842
+ sameNetworkSegment: 16,
11843
+ eventSequence: 32,
11844
+ timeFrame: 64,
11845
+ sameThreatSource: 128,
11846
+ similarTTPsOrBehavior: 256,
11847
+ sameActor: 512,
11848
+ sameCampaign: 1024,
11849
+ sharedIndicators: 2048,
11850
+ sameAsset: 4096,
11851
+ networkProximity: 8192,
11852
+ eventCasualSequence: 16384,
11853
+ temporalProximity: 32768,
11854
+ lateralMovementPath: 65536,
11855
+ unknownFutureValue: 131072,
11856
+ }
11857
+
11159
11858
  enum dataSourceContainerStatus {
11160
11859
  active: 1,
11161
11860
  released: 2,