@microsoft/typespec-msgraph-reference 1.0.3 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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;
@@ -5086,6 +5486,7 @@ namespace reference.`microsoft.graph` {
5086
5486
  membershipRule: string | null;
5087
5487
  membershipRuleProcessingState: string | null;
5088
5488
  onPremisesDomainName: string | null;
5489
+ onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
5089
5490
  onPremisesLastSyncDateTime: offsetDateTime | null;
5090
5491
  onPremisesNetBiosName: string | null;
5091
5492
  onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
@@ -5105,6 +5506,7 @@ namespace reference.`microsoft.graph` {
5105
5506
  uniqueName: string | null;
5106
5507
  unseenCount: int32 | null;
5107
5508
  visibility: string | null;
5509
+ welcomeMessageEnabled: boolean | null;
5108
5510
  @contains acceptedSenders: directoryObject[];
5109
5511
  @contains appRoleAssignments: appRoleAssignment[];
5110
5512
  @contains calendar: calendar | null;
@@ -5123,6 +5525,7 @@ namespace reference.`microsoft.graph` {
5123
5525
  @references owners: directoryObject[];
5124
5526
  @contains photo: profilePhoto | null;
5125
5527
  @contains photos: profilePhoto[];
5528
+ @contains planner: plannerGroup | null;
5126
5529
  @contains rejectedSenders: directoryObject[];
5127
5530
  @contains settings: groupSetting[];
5128
5531
  @contains sites: site[];
@@ -5208,6 +5611,11 @@ namespace reference.`microsoft.graph` {
5208
5611
  @contains bitlocker: bitlocker | null;
5209
5612
  }
5210
5613
 
5614
+ @entity model inheritablePermission extends MsGraph.SharedModels.entity {
5615
+ inheritableScopes: inheritableScopes | null;
5616
+ @computed @key resourceAppId: string;
5617
+ }
5618
+
5211
5619
  @entity model insightsSettings extends entity {
5212
5620
  disabledForGroup: string | null;
5213
5621
  isEnabledInOrganization: boolean | null;
@@ -5627,6 +6035,8 @@ namespace reference.`microsoft.graph` {
5627
6035
  @entity model peopleAdminSettings extends entity {
5628
6036
  @contains itemInsights: insightsSettings | null;
5629
6037
  @contains profileCardProperties: profileCardProperty[];
6038
+ @contains profilePropertySettings: profilePropertySetting[];
6039
+ @contains profileSources: profileSource[];
5630
6040
  @contains pronouns: pronounsSettings | null;
5631
6041
  }
5632
6042
 
@@ -5708,6 +6118,94 @@ namespace reference.`microsoft.graph` {
5708
6118
  phone: string | null;
5709
6119
  }
5710
6120
 
6121
+ @entity model planner extends entity {
6122
+ @contains buckets: plannerBucket[];
6123
+ @contains plans: plannerPlan[];
6124
+ @contains tasks: plannerTask[];
6125
+ }
6126
+
6127
+ @entity model plannerAssignedToTaskBoardTaskFormat extends entity {
6128
+ orderHintsByAssignee: plannerOrderHintsByAssignee | null;
6129
+ unassignedOrderHint: string | null;
6130
+ }
6131
+
6132
+ @entity model plannerBucket extends entity {
6133
+ name: string;
6134
+ orderHint: string | null;
6135
+ planId: string | null;
6136
+ @references tasks: plannerTask[];
6137
+ }
6138
+
6139
+ @entity model plannerBucketTaskBoardTaskFormat extends entity {
6140
+ orderHint: string | null;
6141
+ }
6142
+
6143
+ @entity model plannerGroup extends entity {
6144
+ @references plans: plannerPlan[];
6145
+ }
6146
+
6147
+ @entity model plannerPlan extends entity {
6148
+ container: plannerPlanContainer | null;
6149
+ createdBy: identitySet | null;
6150
+ @computed createdDateTime: offsetDateTime | null;
6151
+
6152
+ @graphDeprecated("Tasks_And_Plans")
6153
+ owner: string | null;
6154
+ title: string;
6155
+ @references buckets: plannerBucket[];
6156
+ @contains details: plannerPlanDetails | null;
6157
+ @references tasks: plannerTask[];
6158
+ }
6159
+
6160
+ @entity model plannerPlanDetails extends entity {
6161
+ categoryDescriptions: plannerCategoryDescriptions | null;
6162
+ sharedWith: plannerUserIds | null;
6163
+ }
6164
+
6165
+ @entity model plannerProgressTaskBoardTaskFormat extends entity {
6166
+ orderHint: string | null;
6167
+ }
6168
+
6169
+ @entity model plannerTask extends entity {
6170
+ activeChecklistItemCount: int32 | null;
6171
+ appliedCategories: plannerAppliedCategories | null;
6172
+ assigneePriority: string | null;
6173
+ assignments: plannerAssignments | null;
6174
+ bucketId: string | null;
6175
+ checklistItemCount: int32 | null;
6176
+ completedBy: identitySet | null;
6177
+ completedDateTime: offsetDateTime | null;
6178
+ conversationThreadId: string | null;
6179
+ createdBy: identitySet | null;
6180
+ @computed createdDateTime: offsetDateTime | null;
6181
+ dueDateTime: offsetDateTime | null;
6182
+ hasDescription: boolean | null;
6183
+ orderHint: string | null;
6184
+ percentComplete: int32 | null;
6185
+ planId: string | null;
6186
+ previewType: plannerPreviewType | null;
6187
+ priority: int32 | null;
6188
+ referenceCount: int32 | null;
6189
+ startDateTime: offsetDateTime | null;
6190
+ title: string;
6191
+ @contains assignedToTaskBoardFormat: plannerAssignedToTaskBoardTaskFormat | null;
6192
+ @contains bucketTaskBoardFormat: plannerBucketTaskBoardTaskFormat | null;
6193
+ @contains details: plannerTaskDetails | null;
6194
+ @contains progressTaskBoardFormat: plannerProgressTaskBoardTaskFormat | null;
6195
+ }
6196
+
6197
+ @entity model plannerTaskDetails extends entity {
6198
+ checklist: plannerChecklistItems | null;
6199
+ description: string | null;
6200
+ previewType: plannerPreviewType | null;
6201
+ references: plannerExternalReferences | null;
6202
+ }
6203
+
6204
+ @entity model plannerUser extends entity {
6205
+ @references plans: plannerPlan[];
6206
+ @references tasks: plannerTask[];
6207
+ }
6208
+
5711
6209
  @entity model platformCredentialAuthenticationMethod extends authenticationMethod {
5712
6210
  displayName: string | null;
5713
6211
  keyStrength: authenticationMethodKeyStrength | null;
@@ -5768,6 +6266,7 @@ namespace reference.`microsoft.graph` {
5768
6266
  activity: string | null;
5769
6267
  availability: string | null;
5770
6268
  statusMessage: presenceStatusMessage | null;
6269
+ workLocation: userWorkLocation | null;
5771
6270
  }
5772
6271
 
5773
6272
  @entity model privilegedAccessGroup extends entity {
@@ -5874,6 +6373,7 @@ namespace reference.`microsoft.graph` {
5874
6373
  @entity model profileCardProperty extends entity {
5875
6374
  annotations: profileCardAnnotation[] | null;
5876
6375
  directoryPropertyName: string | null;
6376
+ isVisible: boolean;
5877
6377
  }
5878
6378
 
5879
6379
  @entity model profilePhoto extends entity {
@@ -5881,6 +6381,20 @@ namespace reference.`microsoft.graph` {
5881
6381
  width: int32 | null;
5882
6382
  }
5883
6383
 
6384
+ @entity model profilePropertySetting extends entity {
6385
+ displayName: string | null;
6386
+ name: string | null;
6387
+ prioritizedSourceUrls: string[];
6388
+ }
6389
+
6390
+ @entity model profileSource extends entity {
6391
+ displayName: string | null;
6392
+ kind: string | null;
6393
+ localizations: profileSourceLocalization[];
6394
+ sourceId: string | null;
6395
+ webUrl: string | null;
6396
+ }
6397
+
5884
6398
  @entity model pronounsSettings extends entity {
5885
6399
  isEnabledInOrganization: boolean;
5886
6400
  }
@@ -5931,6 +6445,7 @@ namespace reference.`microsoft.graph` {
5931
6445
 
5932
6446
  @entity model remoteDesktopSecurityConfiguration extends entity {
5933
6447
  isRemoteDesktopProtocolEnabled: boolean;
6448
+ @contains approvedClientApps: approvedClientApp[];
5934
6449
  @contains targetDeviceGroups: targetDeviceGroup[];
5935
6450
  }
5936
6451
 
@@ -6109,9 +6624,13 @@ namespace reference.`microsoft.graph` {
6109
6624
  @contains alerts: alert[];
6110
6625
  @contains alerts_v2: reference.`microsoft.graph.security`.alert[];
6111
6626
  @contains cases: reference.`microsoft.graph.security`.casesRoot | null;
6627
+ @contains dataSecurityAndGovernance: tenantDataSecurityAndGovernance | null;
6112
6628
  @contains incidents: reference.`microsoft.graph.security`.incident[];
6629
+ @contains labels: reference.`microsoft.graph.security`.labelsRoot | null;
6113
6630
  @contains secureScoreControlProfiles: secureScoreControlProfile[];
6114
6631
  @contains secureScores: secureScore[];
6632
+ @contains triggers: reference.`microsoft.graph.security`.triggersRoot | null;
6633
+ @contains triggerTypes: reference.`microsoft.graph.security`.triggerTypesRoot | null;
6115
6634
  }
6116
6635
 
6117
6636
  @entity model serviceAnnouncement extends entity {
@@ -6167,12 +6686,14 @@ namespace reference.`microsoft.graph` {
6167
6686
  appOwnerOrganizationId: guid | null;
6168
6687
  appRoleAssignmentRequired: boolean;
6169
6688
  appRoles: appRole[];
6689
+ createdByAppId: string | null;
6170
6690
  customSecurityAttributes: customSecurityAttributeValue | null;
6171
6691
  description: string | null;
6172
6692
  disabledByMicrosoftStatus: string | null;
6173
6693
  displayName: string | null;
6174
6694
  homepage: string | null;
6175
6695
  info: informationalUrl | null;
6696
+ isDisabled: boolean | null;
6176
6697
  keyCredentials: keyCredential[];
6177
6698
  loginUrl: string | null;
6178
6699
  logoutUrl: string | null;
@@ -6615,9 +7136,16 @@ namespace reference.`microsoft.graph` {
6615
7136
  }
6616
7137
 
6617
7138
  @entity model tenantAppManagementPolicy extends policyBase {
6618
- applicationRestrictions: appManagementConfiguration | null;
7139
+ applicationRestrictions: appManagementApplicationConfiguration | null;
6619
7140
  isEnabled: boolean;
6620
- servicePrincipalRestrictions: appManagementConfiguration | null;
7141
+ servicePrincipalRestrictions: appManagementServicePrincipalConfiguration | null;
7142
+ }
7143
+
7144
+ @entity model tenantDataSecurityAndGovernance extends dataSecurityAndGovernance {
7145
+ @contains protectionScopes: tenantProtectionScopeContainer;
7146
+ }
7147
+
7148
+ @entity model tenantProtectionScopeContainer extends entity {
6621
7149
  }
6622
7150
 
6623
7151
  @entity model tenantRelationship extends MsGraph.SharedModels.entity {
@@ -6902,6 +7430,7 @@ namespace reference.`microsoft.graph` {
6902
7430
  givenName: string | null;
6903
7431
  hireDate: offsetDateTime;
6904
7432
  identities: objectIdentity[] | null;
7433
+ identityParentId: string | null;
6905
7434
  imAddresses: string[] | null;
6906
7435
  interests: string[] | null;
6907
7436
  isManagementRestricted: boolean | null;
@@ -6961,6 +7490,7 @@ namespace reference.`microsoft.graph` {
6961
7490
  @contains contactFolders: contactFolder[];
6962
7491
  @contains contacts: contact[];
6963
7492
  @references createdObjects: directoryObject[];
7493
+ @contains dataSecurityAndGovernance: userDataSecurityAndGovernance | null;
6964
7494
  @references directReports: directoryObject[];
6965
7495
  @contains drive: drive | null;
6966
7496
  @contains drives: drive[];
@@ -6983,6 +7513,7 @@ namespace reference.`microsoft.graph` {
6983
7513
  @contains people: person[];
6984
7514
  @contains photo: profilePhoto | null;
6985
7515
  @contains photos: profilePhoto[];
7516
+ @contains planner: plannerUser | null;
6986
7517
  @contains presence: presence | null;
6987
7518
  @references registeredDevices: directoryObject[];
6988
7519
  @contains scopedRoleMemberOf: scopedRoleMembership[];
@@ -6998,10 +7529,18 @@ namespace reference.`microsoft.graph` {
6998
7529
  @contains approval: approval | null;
6999
7530
  }
7000
7531
 
7532
+ @entity model userDataSecurityAndGovernance extends dataSecurityAndGovernance {
7533
+ @contains activities: activitiesContainer | null;
7534
+ @contains protectionScopes: userProtectionScopeContainer | null;
7535
+ }
7536
+
7001
7537
  @entity model userInsightsSettings extends entity {
7002
7538
  isEnabled: boolean;
7003
7539
  }
7004
7540
 
7541
+ @entity model userProtectionScopeContainer extends entity {
7542
+ }
7543
+
7005
7544
  @entity model userRegistrationDetails extends entity {
7006
7545
  isAdmin: boolean | null;
7007
7546
  isMfaCapable: boolean;
@@ -7486,6 +8025,7 @@ namespace reference.`microsoft.graph` {
7486
8025
  systemRemove: 9,
7487
8026
  onBehalfAdd: 10,
7488
8027
  unknownFutureValue: 11,
8028
+ approverRemove: 12,
7489
8029
  }
7490
8030
 
7491
8031
  enum accessPackageSubjectType {
@@ -7633,6 +8173,12 @@ namespace reference.`microsoft.graph` {
7633
8173
  reportOnlyInterrupted: 9,
7634
8174
  }
7635
8175
 
8176
+ enum appManagementRestrictionState {
8177
+ enabled: 1,
8178
+ disabled: 2,
8179
+ unknownFutureValue: 3,
8180
+ }
8181
+
7636
8182
  enum approvalFilterByCurrentUserOptions {
7637
8183
  target: 0,
7638
8184
  createdBy: 1,
@@ -7722,6 +8268,14 @@ namespace reference.`microsoft.graph` {
7722
8268
  DateTime: 5,
7723
8269
  }
7724
8270
 
8271
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
8272
+ enum auditLogRecordType {
8273
+ }
8274
+
8275
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
8276
+ enum auditLogUserType {
8277
+ }
8278
+
7725
8279
  enum authenticationMethodFeature {
7726
8280
  ssprRegistered: 0,
7727
8281
  ssprEnabled: 1,
@@ -8200,6 +8754,12 @@ namespace reference.`microsoft.graph` {
8200
8754
  unknownFutureValue: 1,
8201
8755
  }
8202
8756
 
8757
+ enum contentProcessingErrorType {
8758
+ transient: 0,
8759
+ permanent: 1,
8760
+ unknownFutureValue: 2,
8761
+ }
8762
+
8203
8763
  enum countryLookupMethodType {
8204
8764
  clientIpAddress: 0,
8205
8765
  authenticatorAppGps: 1,
@@ -8228,6 +8788,11 @@ namespace reference.`microsoft.graph` {
8228
8788
  unknownFutureValue: 6,
8229
8789
  }
8230
8790
 
8791
+ enum customSecurityAttributeComparisonOperator {
8792
+ equals: 1,
8793
+ unknownFutureValue: 2,
8794
+ }
8795
+
8231
8796
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
8232
8797
  enum dayOfWeek {
8233
8798
  sunday: 0,
@@ -8256,6 +8821,13 @@ namespace reference.`microsoft.graph` {
8256
8821
  UnknownFutureValue: 16,
8257
8822
  }
8258
8823
 
8824
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
8825
+ enum dlpAction {
8826
+ notifyUser: 0,
8827
+ blockAccess: 1,
8828
+ deviceRestriction: 2,
8829
+ }
8830
+
8259
8831
  enum driveItemSourceApplication {
8260
8832
  teams: 0,
8261
8833
  yammer: 1,
@@ -8342,6 +8914,12 @@ namespace reference.`microsoft.graph` {
8342
8914
  restImmutableEntryId: 4,
8343
8915
  }
8344
8916
 
8917
+ enum executionMode {
8918
+ evaluateInline: 1,
8919
+ evaluateOffline: 2,
8920
+ unknownFutureValue: 3,
8921
+ }
8922
+
8345
8923
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
8346
8924
  enum expirationPatternType {
8347
8925
  notSpecified: 0,
@@ -8822,6 +9400,28 @@ namespace reference.`microsoft.graph` {
8822
9400
  radio: 9,
8823
9401
  }
8824
9402
 
9403
+ enum plannerContainerType {
9404
+ group: 1,
9405
+ unknownFutureValue: 2,
9406
+ roster: 3,
9407
+ }
9408
+
9409
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
9410
+ enum plannerPreviewType {
9411
+ automatic: 0,
9412
+ noPreview: 1,
9413
+ checklist: 2,
9414
+ description: 3,
9415
+ reference: 4,
9416
+ }
9417
+
9418
+ enum policyPivotProperty {
9419
+ none: 0,
9420
+ activity: 1,
9421
+ location: 2,
9422
+ unknownFutureValue: 3,
9423
+ }
9424
+
8825
9425
  enum postType {
8826
9426
  regular: 0,
8827
9427
  quick: 1,
@@ -8864,6 +9464,12 @@ namespace reference.`microsoft.graph` {
8864
9464
  unknownFutureValue: 3,
8865
9465
  }
8866
9466
 
9467
+ enum protectionScopeState {
9468
+ notModified: 0,
9469
+ modified: 1,
9470
+ unknownFutureValue: 2,
9471
+ }
9472
+
8867
9473
  enum provisioningAction {
8868
9474
  other: 0,
8869
9475
  create: 1,
@@ -8989,6 +9595,22 @@ namespace reference.`microsoft.graph` {
8989
9595
  unknownFutureValue: 3,
8990
9596
  }
8991
9597
 
9598
+ enum resourceAccessStatus {
9599
+ none: 0,
9600
+ failure: 1,
9601
+ success: 2,
9602
+ unknownFutureValue: 4,
9603
+ }
9604
+
9605
+ @graphFlags
9606
+ enum resourceAccessType {
9607
+ none: 0,
9608
+ read: 1,
9609
+ write: 2,
9610
+ create: 4,
9611
+ unknownFutureValue: 8,
9612
+ }
9613
+
8992
9614
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
8993
9615
  enum responseType {
8994
9616
  none: 0,
@@ -9017,6 +9639,7 @@ namespace reference.`microsoft.graph` {
9017
9639
  userChangedPasswordOnPremises: 15,
9018
9640
  adminDismissedRiskForSignIn: 16,
9019
9641
  adminConfirmedAccountSafe: 17,
9642
+ microsoftRevokedSessions: 18,
9020
9643
  }
9021
9644
 
9022
9645
  enum riskDetectionTimingType {
@@ -9118,6 +9741,14 @@ namespace reference.`microsoft.graph` {
9118
9741
  unknownFutureValue: 10,
9119
9742
  }
9120
9743
 
9744
+ enum scopeCollectionKind {
9745
+ allAllowed: 0,
9746
+ enumerated: 1,
9747
+ none: 2,
9748
+ scopeKindNotSet: 3,
9749
+ unknownFutureValue: 4,
9750
+ }
9751
+
9121
9752
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
9122
9753
  enum scopeOperatorMultiValuedComparisonType {
9123
9754
  All: 0,
@@ -9645,6 +10276,24 @@ namespace reference.`microsoft.graph` {
9645
10276
  unknownFutureValue: 2,
9646
10277
  }
9647
10278
 
10279
+ enum userActivityType {
10280
+ uploadText: 1,
10281
+ uploadFile: 2,
10282
+ downloadText: 3,
10283
+ downloadFile: 4,
10284
+ unknownFutureValue: 5,
10285
+ }
10286
+
10287
+ @graphFlags
10288
+ enum userActivityTypes {
10289
+ none: 0,
10290
+ uploadText: 1,
10291
+ uploadFile: 2,
10292
+ downloadText: 4,
10293
+ downloadFile: 8,
10294
+ unknownFutureValue: 16,
10295
+ }
10296
+
9648
10297
  enum userDefaultAuthenticationMethod {
9649
10298
  push: 0,
9650
10299
  oath: 1,
@@ -9656,6 +10305,13 @@ namespace reference.`microsoft.graph` {
9656
10305
  unknownFutureValue: 7,
9657
10306
  }
9658
10307
 
10308
+ enum userScopeType {
10309
+ user: 1,
10310
+ group: 2,
10311
+ tenant: 3,
10312
+ unknownFutureValue: 4,
10313
+ }
10314
+
9659
10315
  enum userSignInRecommendationScope {
9660
10316
  tenant: 0,
9661
10317
  application: 1,
@@ -9733,6 +10389,22 @@ namespace reference.`microsoft.graph` {
9733
10389
  failed: 3,
9734
10390
  }
9735
10391
 
10392
+ enum workLocationSource {
10393
+ none: 0,
10394
+ manual: 1,
10395
+ scheduled: 2,
10396
+ automatic: 3,
10397
+ unknownFutureValue: 4,
10398
+ }
10399
+
10400
+ enum workLocationType {
10401
+ unspecified: 0,
10402
+ office: 1,
10403
+ remote: 2,
10404
+ timeOff: 3,
10405
+ unknownFutureValue: 4,
10406
+ }
10407
+
9736
10408
  enum x509CertificateAffinityLevel {
9737
10409
  low: 0,
9738
10410
  high: 1,
@@ -10154,6 +10826,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
10154
10826
  }
10155
10827
 
10156
10828
  }
10829
+ @deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2026-03-18", "2028-03-18", "Alert category property is deprecated and replaced with alert categories")
10157
10830
  @publicNamespace("microsoft.graph.security")
10158
10831
  namespace reference.`microsoft.graph.security` {
10159
10832
  @complex model activeDirectoryDomainEvidence extends alertEvidence {
@@ -10316,6 +10989,18 @@ namespace reference.`microsoft.graph.security` {
10316
10989
  emailAddress: string | null;
10317
10990
  }
10318
10991
 
10992
+ @complex model eventPropagationResult {
10993
+ location: string | null;
10994
+ serviceName: string | null;
10995
+ status: eventPropagationStatus | null;
10996
+ statusInformation: string | null;
10997
+ }
10998
+
10999
+ @complex model eventQuery {
11000
+ query: string;
11001
+ queryType: queryType | null;
11002
+ }
11003
+
10319
11004
  @complex model exportFileMetadata {
10320
11005
  downloadUrl: string | null;
10321
11006
  fileName: string | null;
@@ -10351,6 +11036,31 @@ namespace reference.`microsoft.graph.security` {
10351
11036
  value: string | null;
10352
11037
  }
10353
11038
 
11039
+ @complex model filePlanAppliedCategory extends filePlanDescriptorBase {
11040
+ subcategory: filePlanSubcategory | null;
11041
+ }
11042
+
11043
+ @complex model filePlanAuthority extends filePlanDescriptorBase {
11044
+ }
11045
+
11046
+ @complex model filePlanCitation extends filePlanDescriptorBase {
11047
+ citationJurisdiction: string | null;
11048
+ citationUrl: string | null;
11049
+ }
11050
+
11051
+ @complex model filePlanDepartment extends filePlanDescriptorBase {
11052
+ }
11053
+
11054
+ @complex model filePlanDescriptorBase {
11055
+ displayName: string | null;
11056
+ }
11057
+
11058
+ @complex model filePlanReference extends filePlanDescriptorBase {
11059
+ }
11060
+
11061
+ @complex model filePlanSubcategory extends filePlanDescriptorBase {
11062
+ }
11063
+
10354
11064
  @complex model geoLocation {
10355
11065
  city: string | null;
10356
11066
  countryName: string | null;
@@ -10548,6 +11258,10 @@ namespace reference.`microsoft.graph.security` {
10548
11258
  processes: processEvidence[] | null;
10549
11259
  }
10550
11260
 
11261
+ @complex model mergeResponse {
11262
+ targetIncidentId: string;
11263
+ }
11264
+
10551
11265
  @complex model networkConnectionEvidence extends alertEvidence {
10552
11266
  destinationAddress: ipEvidence | null;
10553
11267
  destinationPort: int32 | null;
@@ -10622,6 +11336,22 @@ namespace reference.`microsoft.graph.security` {
10622
11336
  resourceIdentifier: string | null;
10623
11337
  }
10624
11338
 
11339
+ @abstract
11340
+ @complex model retentionDuration {
11341
+ }
11342
+
11343
+ @complex model retentionDurationForever extends retentionDuration {
11344
+ }
11345
+
11346
+ @complex model retentionDurationInDays extends retentionDuration {
11347
+ days: int32 | null;
11348
+ }
11349
+
11350
+ @complex model retentionEventStatus {
11351
+ error: reference.`microsoft.graph`.publicError | null;
11352
+ status: eventStatusType | null;
11353
+ }
11354
+
10625
11355
  @complex model sasTokenEvidence extends alertEvidence {
10626
11356
  allowedIpAddresses: string | null;
10627
11357
  allowedResourceTypes: string[] | null;
@@ -10718,6 +11448,7 @@ namespace reference.`microsoft.graph.security` {
10718
11448
  displayName: string | null;
10719
11449
  domainName: string | null;
10720
11450
  resourceAccessEvents: resourceAccessEvent[] | null;
11451
+ tenantId: string | null;
10721
11452
  userPrincipalName: string | null;
10722
11453
  userSid: string | null;
10723
11454
  }
@@ -10740,6 +11471,9 @@ namespace reference.`microsoft.graph.security` {
10740
11471
  alertPolicyId: string | null;
10741
11472
  alertWebUrl: string | null;
10742
11473
  assignedTo: string | null;
11474
+ categories: string[] | null;
11475
+
11476
+ @graphDeprecated("Tasks_And_Plans")
10743
11477
  category: string | null;
10744
11478
  classification: alertClassification | null;
10745
11479
  comments: alertComment[] | null;
@@ -10770,6 +11504,9 @@ namespace reference.`microsoft.graph.security` {
10770
11504
  title: string | null;
10771
11505
  }
10772
11506
 
11507
+ @entity model authorityTemplate extends filePlanDescriptorTemplate {
11508
+ }
11509
+
10773
11510
  @abstract
10774
11511
  @entity model case extends reference.`microsoft.graph`.entity {
10775
11512
  @computed createdDateTime: offsetDateTime | null;
@@ -10794,6 +11531,15 @@ namespace reference.`microsoft.graph.security` {
10794
11531
  @contains ediscoveryCases: ediscoveryCase[];
10795
11532
  }
10796
11533
 
11534
+ @entity model categoryTemplate extends filePlanDescriptorTemplate {
11535
+ @contains subcategories: subcategoryTemplate[];
11536
+ }
11537
+
11538
+ @entity model citationTemplate extends filePlanDescriptorTemplate {
11539
+ citationJurisdiction: string | null;
11540
+ citationUrl: string | null;
11541
+ }
11542
+
10797
11543
  @abstract
10798
11544
  @entity model dataSet extends reference.`microsoft.graph`.entity {
10799
11545
  createdBy: reference.`microsoft.graph`.identitySet | null;
@@ -10820,6 +11566,15 @@ namespace reference.`microsoft.graph.security` {
10820
11566
  status: dataSourceContainerStatus | null;
10821
11567
  }
10822
11568
 
11569
+ @entity model departmentTemplate extends filePlanDescriptorTemplate {
11570
+ }
11571
+
11572
+ @entity model dispositionReviewStage extends MsGraph.SharedModels.entity {
11573
+ name: string | null;
11574
+ reviewersEmailAddresses: string[] | null;
11575
+ @computed @key stageNumber: string;
11576
+ }
11577
+
10823
11578
  @entity model ediscoveryAddToReviewSetOperation extends caseOperation {
10824
11579
  additionalDataOptions: additionalDataOptions | null;
10825
11580
  cloudAttachmentVersion: cloudAttachmentVersion | null;
@@ -10905,6 +11660,7 @@ namespace reference.`microsoft.graph.security` {
10905
11660
  }
10906
11661
 
10907
11662
  @entity model ediscoveryPurgeDataOperation extends caseOperation {
11663
+ reportFileMetadata: reportFileMetadata[] | null;
10908
11664
  }
10909
11665
 
10910
11666
  @entity model ediscoveryReviewSet extends dataSet {
@@ -10946,6 +11702,28 @@ namespace reference.`microsoft.graph.security` {
10946
11702
  @entity model ediscoveryTagOperation extends caseOperation {
10947
11703
  }
10948
11704
 
11705
+ @entity model filePlanDescriptor extends reference.`microsoft.graph`.entity {
11706
+ authority: filePlanAuthority | null;
11707
+ category: filePlanAppliedCategory | null;
11708
+ citation: filePlanCitation | null;
11709
+ department: filePlanDepartment | null;
11710
+ filePlanReference: filePlanReference | null;
11711
+ @references authorityTemplate: authorityTemplate | null;
11712
+ @references categoryTemplate: categoryTemplate | null;
11713
+ @references citationTemplate: citationTemplate | null;
11714
+ @references departmentTemplate: departmentTemplate | null;
11715
+ @references filePlanReferenceTemplate: filePlanReferenceTemplate | null;
11716
+ }
11717
+
11718
+ @entity model filePlanDescriptorTemplate extends reference.`microsoft.graph`.entity {
11719
+ createdBy: reference.`microsoft.graph`.identitySet | null;
11720
+ @computed createdDateTime: offsetDateTime | null;
11721
+ displayName: string | null;
11722
+ }
11723
+
11724
+ @entity model filePlanReferenceTemplate extends filePlanDescriptorTemplate {
11725
+ }
11726
+
10949
11727
  @entity model incident extends reference.`microsoft.graph`.entity {
10950
11728
  assignedTo: string | null;
10951
11729
  classification: alertClassification | null;
@@ -10968,6 +11746,59 @@ namespace reference.`microsoft.graph.security` {
10968
11746
  @references alerts: alert[];
10969
11747
  }
10970
11748
 
11749
+ @entity model labelsRoot extends reference.`microsoft.graph`.entity {
11750
+ @contains authorities: authorityTemplate[];
11751
+ @contains categories: categoryTemplate[];
11752
+ @contains citations: citationTemplate[];
11753
+ @contains departments: departmentTemplate[];
11754
+ @contains filePlanReferences: filePlanReferenceTemplate[];
11755
+ @contains retentionLabels: retentionLabel[];
11756
+ }
11757
+
11758
+ @entity model retentionEvent extends reference.`microsoft.graph`.entity {
11759
+ createdBy: reference.`microsoft.graph`.identitySet | null;
11760
+ @computed createdDateTime: offsetDateTime | null;
11761
+ description: string | null;
11762
+ displayName: string | null;
11763
+ eventPropagationResults: eventPropagationResult[] | null;
11764
+ eventQueries: eventQuery[] | null;
11765
+ eventStatus: retentionEventStatus | null;
11766
+ eventTriggerDateTime: offsetDateTime | null;
11767
+ lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
11768
+ @computed lastModifiedDateTime: offsetDateTime | null;
11769
+ @computed lastStatusUpdateDateTime: offsetDateTime | null;
11770
+ @references retentionEventType: retentionEventType | null;
11771
+ }
11772
+
11773
+ @entity model retentionEventType extends reference.`microsoft.graph`.entity {
11774
+ createdBy: reference.`microsoft.graph`.identitySet | null;
11775
+ @computed createdDateTime: offsetDateTime | null;
11776
+ description: string | null;
11777
+ displayName: string | null;
11778
+ lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
11779
+ @computed lastModifiedDateTime: offsetDateTime | null;
11780
+ }
11781
+
11782
+ @entity model retentionLabel extends reference.`microsoft.graph`.entity {
11783
+ actionAfterRetentionPeriod: actionAfterRetentionPeriod | null;
11784
+ behaviorDuringRetentionPeriod: behaviorDuringRetentionPeriod | null;
11785
+ createdBy: reference.`microsoft.graph`.identitySet | null;
11786
+ @computed createdDateTime: offsetDateTime | null;
11787
+ defaultRecordBehavior: defaultRecordBehavior | null;
11788
+ descriptionForAdmins: string | null;
11789
+ descriptionForUsers: string | null;
11790
+ displayName: string | null;
11791
+ isInUse: boolean | null;
11792
+ labelToBeApplied: string | null;
11793
+ lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
11794
+ @computed lastModifiedDateTime: offsetDateTime | null;
11795
+ retentionDuration: retentionDuration | null;
11796
+ retentionTrigger: retentionTrigger | null;
11797
+ @contains descriptors: filePlanDescriptor | null;
11798
+ @contains dispositionReviewStages: dispositionReviewStage[];
11799
+ @references retentionEventType: retentionEventType | null;
11800
+ }
11801
+
10971
11802
  @abstract
10972
11803
  @entity model search extends reference.`microsoft.graph`.entity {
10973
11804
  contentQuery: string | null;
@@ -10983,6 +11814,9 @@ namespace reference.`microsoft.graph.security` {
10983
11814
  @references site: reference.`microsoft.graph`.site;
10984
11815
  }
10985
11816
 
11817
+ @entity model subcategoryTemplate extends filePlanDescriptorTemplate {
11818
+ }
11819
+
10986
11820
  @abstract
10987
11821
  @entity model tag extends reference.`microsoft.graph`.entity {
10988
11822
  createdBy: reference.`microsoft.graph`.identitySet | null;
@@ -10991,6 +11825,14 @@ namespace reference.`microsoft.graph.security` {
10991
11825
  @computed lastModifiedDateTime: offsetDateTime | null;
10992
11826
  }
10993
11827
 
11828
+ @entity model triggersRoot extends reference.`microsoft.graph`.entity {
11829
+ @contains retentionEvents: retentionEvent[];
11830
+ }
11831
+
11832
+ @entity model triggerTypesRoot extends reference.`microsoft.graph`.entity {
11833
+ @contains retentionEventTypes: retentionEventType[];
11834
+ }
11835
+
10994
11836
  @entity model unifiedGroupSource extends dataSource {
10995
11837
  includedSources: sourceType | null;
10996
11838
  @references group: reference.`microsoft.graph`.group;
@@ -11002,6 +11844,14 @@ namespace reference.`microsoft.graph.security` {
11002
11844
  siteWebUrl: string | null;
11003
11845
  }
11004
11846
 
11847
+ enum actionAfterRetentionPeriod {
11848
+ none: 0,
11849
+ delete: 1,
11850
+ startDispositionReview: 2,
11851
+ relabel: 3,
11852
+ unknownFutureValue: 4,
11853
+ }
11854
+
11005
11855
  @graphFlags
11006
11856
  enum additionalDataOptions {
11007
11857
  allVersions: 1,
@@ -11156,6 +12006,28 @@ namespace reference.`microsoft.graph.security` {
11156
12006
  unknownFutureValue: 3,
11157
12007
  }
11158
12008
 
12009
+ @graphFlags
12010
+ enum correlationReason {
12011
+ repeatedAlertOccurrence: 1,
12012
+ sameGeography: 2,
12013
+ similarArtifacts: 4,
12014
+ sameTargetedAsset: 8,
12015
+ sameNetworkSegment: 16,
12016
+ eventSequence: 32,
12017
+ timeFrame: 64,
12018
+ sameThreatSource: 128,
12019
+ similarTTPsOrBehavior: 256,
12020
+ sameActor: 512,
12021
+ sameCampaign: 1024,
12022
+ sharedIndicators: 2048,
12023
+ sameAsset: 4096,
12024
+ networkProximity: 8192,
12025
+ eventCasualSequence: 16384,
12026
+ temporalProximity: 32768,
12027
+ lateralMovementPath: 65536,
12028
+ unknownFutureValue: 131072,
12029
+ }
12030
+
11159
12031
  enum dataSourceContainerStatus {
11160
12032
  active: 1,
11161
12033
  released: 2,
@@ -11181,6 +12053,12 @@ namespace reference.`microsoft.graph.security` {
11181
12053
  unknownFutureValue: 16,
11182
12054
  }
11183
12055
 
12056
+ enum defaultRecordBehavior {
12057
+ startLocked: 0,
12058
+ startUnlocked: 1,
12059
+ unknownFutureValue: 2,
12060
+ }
12061
+
11184
12062
  enum defenderAvStatus {
11185
12063
  notReporting: 0,
11186
12064
  disabled: 1,
@@ -11267,6 +12145,22 @@ namespace reference.`microsoft.graph.security` {
11267
12145
  unknownFutureValue: 5,
11268
12146
  }
11269
12147
 
12148
+ enum eventPropagationStatus {
12149
+ none: 0,
12150
+ inProcessing: 1,
12151
+ failed: 2,
12152
+ success: 3,
12153
+ unknownFutureValue: 4,
12154
+ }
12155
+
12156
+ enum eventStatusType {
12157
+ pending: 0,
12158
+ error: 1,
12159
+ success: 2,
12160
+ notAvaliable: 3,
12161
+ unknownFutureValue: 4,
12162
+ }
12163
+
11270
12164
  enum evidenceRemediationStatus {
11271
12165
  none: 0,
11272
12166
  remediated: 1,
@@ -11446,6 +12340,12 @@ namespace reference.`microsoft.graph.security` {
11446
12340
  permanentlyDelete: 2,
11447
12341
  }
11448
12342
 
12343
+ enum queryType {
12344
+ files: 0,
12345
+ messages: 1,
12346
+ unknownFutureValue: 2,
12347
+ }
12348
+
11449
12349
  @graphFlags
11450
12350
  enum recipientType {
11451
12351
  user: 1,
@@ -11453,6 +12353,14 @@ namespace reference.`microsoft.graph.security` {
11453
12353
  unknownFutureValue: 4,
11454
12354
  }
11455
12355
 
12356
+ enum retentionTrigger {
12357
+ dateLabeled: 0,
12358
+ dateCreated: 1,
12359
+ dateModified: 2,
12360
+ dateOfEvent: 3,
12361
+ unknownFutureValue: 4,
12362
+ }
12363
+
11456
12364
  @graphFlags
11457
12365
  enum reviewSetSettings {
11458
12366
  none: 0,
@@ -11482,6 +12390,7 @@ namespace reference.`microsoft.graph.security` {
11482
12390
  microsoftDefenderForCloud: 256,
11483
12391
  microsoftSentinel: 512,
11484
12392
  microsoftInsiderRiskManagement: 1024,
12393
+ microsoftSecurityForAI: 4096,
11485
12394
  }
11486
12395
 
11487
12396
  @graphFlags