@microsoft/typespec-msgraph-reference 1.0.2 → 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;
@@ -1475,6 +1592,11 @@ namespace reference.`microsoft.graph` {
1475
1592
  outboundAllowed: boolean | null;
1476
1593
  }
1477
1594
 
1595
+ @complex model includeTarget {
1596
+ id: string;
1597
+ targetType: authenticationMethodTargetType;
1598
+ }
1599
+
1478
1600
  @complex model incomingContext {
1479
1601
  observedParticipantId: string | null;
1480
1602
  onBehalfOf: identitySet | null;
@@ -1496,11 +1618,21 @@ namespace reference.`microsoft.graph` {
1496
1618
  termsOfServiceUrl: string | null;
1497
1619
  }
1498
1620
 
1621
+ @abstract
1622
+ @complex model inheritableScopes {
1623
+ kind: scopeCollectionKind;
1624
+ }
1625
+
1499
1626
  @open
1500
1627
  @complex model initiator extends identity {
1501
1628
  initiatorType: initiatorType | null;
1502
1629
  }
1503
1630
 
1631
+ @complex model integratedApplicationMetadata {
1632
+ name: string | null;
1633
+ version: string | null;
1634
+ }
1635
+
1504
1636
  @complex model internalSponsors extends subjectSet {
1505
1637
  }
1506
1638
 
@@ -1637,6 +1769,11 @@ namespace reference.`microsoft.graph` {
1637
1769
  isEnabled: boolean | null;
1638
1770
  }
1639
1771
 
1772
+ @complex model localAdminSettings {
1773
+ enableGlobalAdmins: boolean | null;
1774
+ registeringUsers: deviceRegistrationMembership | null;
1775
+ }
1776
+
1640
1777
  @complex model localeInfo {
1641
1778
  displayName: string | null;
1642
1779
  locale: string | null;
@@ -1901,6 +2038,9 @@ namespace reference.`microsoft.graph` {
1901
2038
  @complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
1902
2039
  }
1903
2040
 
2041
+ @complex model noScopes extends inheritableScopes {
2042
+ }
2043
+
1904
2044
  @complex model numberColumn {
1905
2045
  decimalPlaces: string | null;
1906
2046
  displayAs: string | null;
@@ -2017,6 +2157,11 @@ namespace reference.`microsoft.graph` {
2017
2157
  discoveryUrl: string;
2018
2158
  }
2019
2159
 
2160
+ @complex model operatingSystemSpecifications {
2161
+ operatingSystemPlatform: string;
2162
+ operatingSystemVersion: string;
2163
+ }
2164
+
2020
2165
  @complex model operationError {
2021
2166
  code: string | null;
2022
2167
  message: string | null;
@@ -2173,6 +2318,120 @@ namespace reference.`microsoft.graph` {
2173
2318
  street: string | null;
2174
2319
  }
2175
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
+
2176
2435
  @complex model preAuthorizedApplication {
2177
2436
  appId: string | null;
2178
2437
  delegatedPermissionIds: string[];
@@ -2209,11 +2468,74 @@ namespace reference.`microsoft.graph` {
2209
2468
  processId: int32 | null;
2210
2469
  }
2211
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
+
2212
2528
  @complex model profileCardAnnotation {
2213
2529
  displayName: string | null;
2214
2530
  localizations: displayNameLocalization[] | null;
2215
2531
  }
2216
2532
 
2533
+ @complex model profileSourceLocalization {
2534
+ displayName: string | null;
2535
+ languageTag: string | null;
2536
+ webUrl: string | null;
2537
+ }
2538
+
2217
2539
  @abstract
2218
2540
  @complex model prompt {
2219
2541
  }
@@ -2223,6 +2545,10 @@ namespace reference.`microsoft.graph` {
2223
2545
  propertyValue: string | null;
2224
2546
  }
2225
2547
 
2548
+ @complex model protectedApplicationMetadata extends integratedApplicationMetadata {
2549
+ applicationLocation: policyLocation | null;
2550
+ }
2551
+
2226
2552
  @complex model protectedContent {
2227
2553
  cid: string | null;
2228
2554
  format: string | null;
@@ -2436,6 +2762,17 @@ namespace reference.`microsoft.graph` {
2436
2762
  type: string | null;
2437
2763
  }
2438
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
+
2439
2776
  @open
2440
2777
  @complex model resourceData {
2441
2778
  }
@@ -2494,6 +2831,11 @@ namespace reference.`microsoft.graph` {
2494
2831
  subject: string | null;
2495
2832
  }
2496
2833
 
2834
+ @abstract
2835
+ @complex model scopeBase {
2836
+ identity: string | null;
2837
+ }
2838
+
2497
2839
  @complex model scoredEmailAddress {
2498
2840
  address: string | null;
2499
2841
  itemId: string | null;
@@ -3125,6 +3467,9 @@ namespace reference.`microsoft.graph` {
3125
3467
  tenantId: string;
3126
3468
  }
3127
3469
 
3470
+ @complex model tenantScope extends scopeBase {
3471
+ }
3472
+
3128
3473
  @complex model termColumn {
3129
3474
  allowMultipleValues: boolean | null;
3130
3475
  showFullyQualifiedName: boolean | null;
@@ -3145,6 +3490,10 @@ namespace reference.`microsoft.graph` {
3145
3490
  textType: string | null;
3146
3491
  }
3147
3492
 
3493
+ @complex model textContent extends contentBase {
3494
+ data: string;
3495
+ }
3496
+
3148
3497
  @complex model thumbnail {
3149
3498
  content: stream | null;
3150
3499
  height: int32 | null;
@@ -3274,6 +3623,9 @@ namespace reference.`microsoft.graph` {
3274
3623
  userTypes: includedUserTypes | null;
3275
3624
  }
3276
3625
 
3626
+ @complex model userScope extends scopeBase {
3627
+ }
3628
+
3277
3629
  @complex model userSecurityState {
3278
3630
  aadUserId: string | null;
3279
3631
  accountName: string | null;
@@ -3297,6 +3649,12 @@ namespace reference.`microsoft.graph` {
3297
3649
  userId: string | null;
3298
3650
  }
3299
3651
 
3652
+ @complex model userWorkLocation {
3653
+ placeId: string | null;
3654
+ source: workLocationSource;
3655
+ workLocationType: workLocationType;
3656
+ }
3657
+
3300
3658
  @complex model verifiedDomain {
3301
3659
  capabilities: string | null;
3302
3660
  isDefault: boolean | null;
@@ -3429,11 +3787,21 @@ namespace reference.`microsoft.graph` {
3429
3787
  x509CertificateDefaultRequiredAffinityLevel: x509CertificateAffinityLevel | null;
3430
3788
  }
3431
3789
 
3790
+ @complex model x509CertificateAuthorityScope {
3791
+ includeTargets: includeTarget[] | null;
3792
+ publicKeyInfrastructureIdentifier: string | null;
3793
+ subjectKeyIdentifier: string | null;
3794
+ }
3795
+
3432
3796
  @complex model x509CertificateCRLValidationConfiguration {
3433
3797
  exemptedCertificateAuthoritiesSubjectKeyIdentifiers: string[] | null;
3434
3798
  state: x509CertificateCRLValidationConfigurationState;
3435
3799
  }
3436
3800
 
3801
+ @complex model x509CertificateIssuerHintsConfiguration {
3802
+ state: x509CertificateIssuerHintsState | null;
3803
+ }
3804
+
3437
3805
  @complex model x509CertificateRule {
3438
3806
  identifier: string | null;
3439
3807
  issuerSubjectIdentifier: string | null;
@@ -3716,6 +4084,10 @@ namespace reference.`microsoft.graph` {
3716
4084
  @contains decisions: accessReviewInstanceDecisionItem[];
3717
4085
  }
3718
4086
 
4087
+ @entity model activitiesContainer extends entity {
4088
+ @contains contentActivities: contentActivity[];
4089
+ }
4090
+
3719
4091
  @entity model activityBasedTimeoutPolicy extends stsPolicy {
3720
4092
  }
3721
4093
 
@@ -3746,6 +4118,30 @@ namespace reference.`microsoft.graph` {
3746
4118
  @contains scopedRoleMembers: scopedRoleMembership[];
3747
4119
  }
3748
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
+
3749
4145
  @entity model agreement extends entity {
3750
4146
  displayName: string | null;
3751
4147
  isPerDeviceAcceptanceRequired: boolean | null;
@@ -3863,6 +4259,7 @@ namespace reference.`microsoft.graph` {
3863
4259
  applicationTemplateId: string | null;
3864
4260
  appRoles: appRole[];
3865
4261
  authenticationBehaviors: authenticationBehaviors | null;
4262
+ createdByAppId: string | null;
3866
4263
  @computed createdDateTime: offsetDateTime | null;
3867
4264
  description: string | null;
3868
4265
  disabledByMicrosoftStatus: string | null;
@@ -3871,9 +4268,11 @@ namespace reference.`microsoft.graph` {
3871
4268
  identifierUris: string[];
3872
4269
  info: informationalUrl | null;
3873
4270
  isDeviceOnlyAuthSupported: boolean | null;
4271
+ isDisabled: boolean | null;
3874
4272
  isFallbackPublicClient: boolean | null;
3875
4273
  keyCredentials: keyCredential[];
3876
4274
  logo: stream;
4275
+ managerApplications: guid;
3877
4276
  notes: string | null;
3878
4277
  oauth2RequirePostResponse: boolean;
3879
4278
  optionalClaims: optionalClaims | null;
@@ -3914,7 +4313,7 @@ namespace reference.`microsoft.graph` {
3914
4313
 
3915
4314
  @entity model appManagementPolicy extends policyBase {
3916
4315
  isEnabled: boolean;
3917
- restrictions: appManagementConfiguration | null;
4316
+ restrictions: customAppManagementConfiguration | null;
3918
4317
  @references appliesTo: directoryObject[];
3919
4318
  }
3920
4319
 
@@ -3942,6 +4341,10 @@ namespace reference.`microsoft.graph` {
3942
4341
  status: string | null;
3943
4342
  }
3944
4343
 
4344
+ @entity model approvedClientApp extends entity {
4345
+ displayName: string | null;
4346
+ }
4347
+
3945
4348
  @entity model appScope extends entity {
3946
4349
  displayName: string | null;
3947
4350
  type: string | null;
@@ -4472,6 +4875,12 @@ namespace reference.`microsoft.graph` {
4472
4875
  @contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
4473
4876
  }
4474
4877
 
4878
+ @entity model contentActivity extends entity {
4879
+ contentMetadata: processContentRequest;
4880
+ scopeIdentifier: string | null;
4881
+ userId: string | null;
4882
+ }
4883
+
4475
4884
  @entity model contentType extends entity {
4476
4885
  associatedHubsUrls: string[] | null;
4477
4886
  description: string | null;
@@ -4978,6 +5387,11 @@ namespace reference.`microsoft.graph` {
4978
5387
  targetObjects: string[];
4979
5388
  }
4980
5389
 
5390
+ @entity model externalAuthenticationMethod extends authenticationMethod {
5391
+ configurationId: string;
5392
+ displayName: string;
5393
+ }
5394
+
4981
5395
  @entity model externalAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
4982
5396
  appId: string;
4983
5397
  displayName: string;
@@ -5060,6 +5474,7 @@ namespace reference.`microsoft.graph` {
5060
5474
  hasMembersWithLicenseErrors: boolean | null;
5061
5475
  hideFromAddressLists: boolean | null;
5062
5476
  hideFromOutlookClients: boolean | null;
5477
+ infoCatalogs: string[];
5063
5478
  isArchived: boolean | null;
5064
5479
  isAssignableToRole: boolean | null;
5065
5480
  isManagementRestricted: boolean | null;
@@ -5090,6 +5505,7 @@ namespace reference.`microsoft.graph` {
5090
5505
  uniqueName: string | null;
5091
5506
  unseenCount: int32 | null;
5092
5507
  visibility: string | null;
5508
+ welcomeMessageEnabled: boolean | null;
5093
5509
  @contains acceptedSenders: directoryObject[];
5094
5510
  @contains appRoleAssignments: appRoleAssignment[];
5095
5511
  @contains calendar: calendar | null;
@@ -5108,6 +5524,7 @@ namespace reference.`microsoft.graph` {
5108
5524
  @references owners: directoryObject[];
5109
5525
  @contains photo: profilePhoto | null;
5110
5526
  @contains photos: profilePhoto[];
5527
+ @contains planner: plannerGroup | null;
5111
5528
  @contains rejectedSenders: directoryObject[];
5112
5529
  @contains settings: groupSetting[];
5113
5530
  @contains sites: site[];
@@ -5193,6 +5610,11 @@ namespace reference.`microsoft.graph` {
5193
5610
  @contains bitlocker: bitlocker | null;
5194
5611
  }
5195
5612
 
5613
+ @entity model inheritablePermission extends MsGraph.SharedModels.entity {
5614
+ inheritableScopes: inheritableScopes | null;
5615
+ @computed @key resourceAppId: string;
5616
+ }
5617
+
5196
5618
  @entity model insightsSettings extends entity {
5197
5619
  disabledForGroup: string | null;
5198
5620
  isEnabledInOrganization: boolean | null;
@@ -5612,6 +6034,8 @@ namespace reference.`microsoft.graph` {
5612
6034
  @entity model peopleAdminSettings extends entity {
5613
6035
  @contains itemInsights: insightsSettings | null;
5614
6036
  @contains profileCardProperties: profileCardProperty[];
6037
+ @contains profilePropertySettings: profilePropertySetting[];
6038
+ @contains profileSources: profileSource[];
5615
6039
  @contains pronouns: pronounsSettings | null;
5616
6040
  }
5617
6041
 
@@ -5693,6 +6117,94 @@ namespace reference.`microsoft.graph` {
5693
6117
  phone: string | null;
5694
6118
  }
5695
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
+
5696
6208
  @entity model platformCredentialAuthenticationMethod extends authenticationMethod {
5697
6209
  displayName: string | null;
5698
6210
  keyStrength: authenticationMethodKeyStrength | null;
@@ -5753,6 +6265,7 @@ namespace reference.`microsoft.graph` {
5753
6265
  activity: string | null;
5754
6266
  availability: string | null;
5755
6267
  statusMessage: presenceStatusMessage | null;
6268
+ workLocation: userWorkLocation | null;
5756
6269
  }
5757
6270
 
5758
6271
  @entity model privilegedAccessGroup extends entity {
@@ -5866,6 +6379,20 @@ namespace reference.`microsoft.graph` {
5866
6379
  width: int32 | null;
5867
6380
  }
5868
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
+
5869
6396
  @entity model pronounsSettings extends entity {
5870
6397
  isEnabledInOrganization: boolean;
5871
6398
  }
@@ -5916,6 +6443,7 @@ namespace reference.`microsoft.graph` {
5916
6443
 
5917
6444
  @entity model remoteDesktopSecurityConfiguration extends entity {
5918
6445
  isRemoteDesktopProtocolEnabled: boolean;
6446
+ @contains approvedClientApps: approvedClientApp[];
5919
6447
  @contains targetDeviceGroups: targetDeviceGroup[];
5920
6448
  }
5921
6449
 
@@ -6094,6 +6622,7 @@ namespace reference.`microsoft.graph` {
6094
6622
  @contains alerts: alert[];
6095
6623
  @contains alerts_v2: reference.`microsoft.graph.security`.alert[];
6096
6624
  @contains cases: reference.`microsoft.graph.security`.casesRoot | null;
6625
+ @contains dataSecurityAndGovernance: tenantDataSecurityAndGovernance | null;
6097
6626
  @contains incidents: reference.`microsoft.graph.security`.incident[];
6098
6627
  @contains secureScoreControlProfiles: secureScoreControlProfile[];
6099
6628
  @contains secureScores: secureScore[];
@@ -6152,12 +6681,14 @@ namespace reference.`microsoft.graph` {
6152
6681
  appOwnerOrganizationId: guid | null;
6153
6682
  appRoleAssignmentRequired: boolean;
6154
6683
  appRoles: appRole[];
6684
+ createdByAppId: string | null;
6155
6685
  customSecurityAttributes: customSecurityAttributeValue | null;
6156
6686
  description: string | null;
6157
6687
  disabledByMicrosoftStatus: string | null;
6158
6688
  displayName: string | null;
6159
6689
  homepage: string | null;
6160
6690
  info: informationalUrl | null;
6691
+ isDisabled: boolean | null;
6161
6692
  keyCredentials: keyCredential[];
6162
6693
  loginUrl: string | null;
6163
6694
  logoutUrl: string | null;
@@ -6600,9 +7131,16 @@ namespace reference.`microsoft.graph` {
6600
7131
  }
6601
7132
 
6602
7133
  @entity model tenantAppManagementPolicy extends policyBase {
6603
- applicationRestrictions: appManagementConfiguration | null;
7134
+ applicationRestrictions: appManagementApplicationConfiguration | null;
6604
7135
  isEnabled: boolean;
6605
- 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 {
6606
7144
  }
6607
7145
 
6608
7146
  @entity model tenantRelationship extends MsGraph.SharedModels.entity {
@@ -6887,6 +7425,7 @@ namespace reference.`microsoft.graph` {
6887
7425
  givenName: string | null;
6888
7426
  hireDate: offsetDateTime;
6889
7427
  identities: objectIdentity[] | null;
7428
+ identityParentId: string | null;
6890
7429
  imAddresses: string[] | null;
6891
7430
  interests: string[] | null;
6892
7431
  isManagementRestricted: boolean | null;
@@ -6946,6 +7485,7 @@ namespace reference.`microsoft.graph` {
6946
7485
  @contains contactFolders: contactFolder[];
6947
7486
  @contains contacts: contact[];
6948
7487
  @references createdObjects: directoryObject[];
7488
+ @contains dataSecurityAndGovernance: userDataSecurityAndGovernance | null;
6949
7489
  @references directReports: directoryObject[];
6950
7490
  @contains drive: drive | null;
6951
7491
  @contains drives: drive[];
@@ -6968,6 +7508,7 @@ namespace reference.`microsoft.graph` {
6968
7508
  @contains people: person[];
6969
7509
  @contains photo: profilePhoto | null;
6970
7510
  @contains photos: profilePhoto[];
7511
+ @contains planner: plannerUser | null;
6971
7512
  @contains presence: presence | null;
6972
7513
  @references registeredDevices: directoryObject[];
6973
7514
  @contains scopedRoleMemberOf: scopedRoleMembership[];
@@ -6983,10 +7524,18 @@ namespace reference.`microsoft.graph` {
6983
7524
  @contains approval: approval | null;
6984
7525
  }
6985
7526
 
7527
+ @entity model userDataSecurityAndGovernance extends dataSecurityAndGovernance {
7528
+ @contains activities: activitiesContainer | null;
7529
+ @contains protectionScopes: userProtectionScopeContainer | null;
7530
+ }
7531
+
6986
7532
  @entity model userInsightsSettings extends entity {
6987
7533
  isEnabled: boolean;
6988
7534
  }
6989
7535
 
7536
+ @entity model userProtectionScopeContainer extends entity {
7537
+ }
7538
+
6990
7539
  @entity model userRegistrationDetails extends entity {
6991
7540
  isAdmin: boolean | null;
6992
7541
  isMfaCapable: boolean;
@@ -7376,8 +7925,10 @@ namespace reference.`microsoft.graph` {
7376
7925
 
7377
7926
  @entity model x509CertificateAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
7378
7927
  authenticationModeConfiguration: x509CertificateAuthenticationModeConfiguration | null;
7928
+ certificateAuthorityScopes: x509CertificateAuthorityScope[] | null;
7379
7929
  certificateUserBindings: x509CertificateUserBinding[] | null;
7380
7930
  crlValidationConfiguration: x509CertificateCRLValidationConfiguration;
7931
+ issuerHintsConfiguration: x509CertificateIssuerHintsConfiguration | null;
7381
7932
  @contains includeTargets: authenticationMethodTarget[];
7382
7933
  }
7383
7934
 
@@ -7469,6 +8020,7 @@ namespace reference.`microsoft.graph` {
7469
8020
  systemRemove: 9,
7470
8021
  onBehalfAdd: 10,
7471
8022
  unknownFutureValue: 11,
8023
+ approverRemove: 12,
7472
8024
  }
7473
8025
 
7474
8026
  enum accessPackageSubjectType {
@@ -7616,6 +8168,12 @@ namespace reference.`microsoft.graph` {
7616
8168
  reportOnlyInterrupted: 9,
7617
8169
  }
7618
8170
 
8171
+ enum appManagementRestrictionState {
8172
+ enabled: 1,
8173
+ disabled: 2,
8174
+ unknownFutureValue: 3,
8175
+ }
8176
+
7619
8177
  enum approvalFilterByCurrentUserOptions {
7620
8178
  target: 0,
7621
8179
  createdBy: 1,
@@ -7705,6 +8263,14 @@ namespace reference.`microsoft.graph` {
7705
8263
  DateTime: 5,
7706
8264
  }
7707
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
+
7708
8274
  enum authenticationMethodFeature {
7709
8275
  ssprRegistered: 0,
7710
8276
  ssprEnabled: 1,
@@ -8183,6 +8749,12 @@ namespace reference.`microsoft.graph` {
8183
8749
  unknownFutureValue: 1,
8184
8750
  }
8185
8751
 
8752
+ enum contentProcessingErrorType {
8753
+ transient: 0,
8754
+ permanent: 1,
8755
+ unknownFutureValue: 2,
8756
+ }
8757
+
8186
8758
  enum countryLookupMethodType {
8187
8759
  clientIpAddress: 0,
8188
8760
  authenticatorAppGps: 1,
@@ -8211,6 +8783,11 @@ namespace reference.`microsoft.graph` {
8211
8783
  unknownFutureValue: 6,
8212
8784
  }
8213
8785
 
8786
+ enum customSecurityAttributeComparisonOperator {
8787
+ equals: 1,
8788
+ unknownFutureValue: 2,
8789
+ }
8790
+
8214
8791
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
8215
8792
  enum dayOfWeek {
8216
8793
  sunday: 0,
@@ -8239,6 +8816,13 @@ namespace reference.`microsoft.graph` {
8239
8816
  UnknownFutureValue: 16,
8240
8817
  }
8241
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
+
8242
8826
  enum driveItemSourceApplication {
8243
8827
  teams: 0,
8244
8828
  yammer: 1,
@@ -8325,6 +8909,12 @@ namespace reference.`microsoft.graph` {
8325
8909
  restImmutableEntryId: 4,
8326
8910
  }
8327
8911
 
8912
+ enum executionMode {
8913
+ evaluateInline: 1,
8914
+ evaluateOffline: 2,
8915
+ unknownFutureValue: 3,
8916
+ }
8917
+
8328
8918
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
8329
8919
  enum expirationPatternType {
8330
8920
  notSpecified: 0,
@@ -8805,6 +9395,28 @@ namespace reference.`microsoft.graph` {
8805
9395
  radio: 9,
8806
9396
  }
8807
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
+
8808
9420
  enum postType {
8809
9421
  regular: 0,
8810
9422
  quick: 1,
@@ -8847,6 +9459,12 @@ namespace reference.`microsoft.graph` {
8847
9459
  unknownFutureValue: 3,
8848
9460
  }
8849
9461
 
9462
+ enum protectionScopeState {
9463
+ notModified: 0,
9464
+ modified: 1,
9465
+ unknownFutureValue: 2,
9466
+ }
9467
+
8850
9468
  enum provisioningAction {
8851
9469
  other: 0,
8852
9470
  create: 1,
@@ -8972,6 +9590,22 @@ namespace reference.`microsoft.graph` {
8972
9590
  unknownFutureValue: 3,
8973
9591
  }
8974
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
+
8975
9609
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
8976
9610
  enum responseType {
8977
9611
  none: 0,
@@ -9000,6 +9634,7 @@ namespace reference.`microsoft.graph` {
9000
9634
  userChangedPasswordOnPremises: 15,
9001
9635
  adminDismissedRiskForSignIn: 16,
9002
9636
  adminConfirmedAccountSafe: 17,
9637
+ microsoftRevokedSessions: 18,
9003
9638
  }
9004
9639
 
9005
9640
  enum riskDetectionTimingType {
@@ -9101,6 +9736,14 @@ namespace reference.`microsoft.graph` {
9101
9736
  unknownFutureValue: 10,
9102
9737
  }
9103
9738
 
9739
+ enum scopeCollectionKind {
9740
+ allAllowed: 0,
9741
+ enumerated: 1,
9742
+ none: 2,
9743
+ scopeKindNotSet: 3,
9744
+ unknownFutureValue: 4,
9745
+ }
9746
+
9104
9747
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
9105
9748
  enum scopeOperatorMultiValuedComparisonType {
9106
9749
  All: 0,
@@ -9628,6 +10271,24 @@ namespace reference.`microsoft.graph` {
9628
10271
  unknownFutureValue: 2,
9629
10272
  }
9630
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
+
9631
10292
  enum userDefaultAuthenticationMethod {
9632
10293
  push: 0,
9633
10294
  oath: 1,
@@ -9639,6 +10300,13 @@ namespace reference.`microsoft.graph` {
9639
10300
  unknownFutureValue: 7,
9640
10301
  }
9641
10302
 
10303
+ enum userScopeType {
10304
+ user: 1,
10305
+ group: 2,
10306
+ tenant: 3,
10307
+ unknownFutureValue: 4,
10308
+ }
10309
+
9642
10310
  enum userSignInRecommendationScope {
9643
10311
  tenant: 0,
9644
10312
  application: 1,
@@ -9716,6 +10384,22 @@ namespace reference.`microsoft.graph` {
9716
10384
  failed: 3,
9717
10385
  }
9718
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
+
9719
10403
  enum x509CertificateAffinityLevel {
9720
10404
  low: 0,
9721
10405
  high: 1,
@@ -9734,6 +10418,12 @@ namespace reference.`microsoft.graph` {
9734
10418
  unknownFutureValue: 2,
9735
10419
  }
9736
10420
 
10421
+ enum x509CertificateIssuerHintsState {
10422
+ disabled: 0,
10423
+ enabled: 1,
10424
+ unknownFutureValue: 2,
10425
+ }
10426
+
9737
10427
  enum x509CertificateRuleType {
9738
10428
  issuerSubject: 0,
9739
10429
  policyOID: 1,
@@ -10131,6 +10821,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
10131
10821
  }
10132
10822
 
10133
10823
  }
10824
+ @deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2026-03-18", "2028-03-18", "Alert category property is deprecated and replaced with alert categories")
10134
10825
  @publicNamespace("microsoft.graph.security")
10135
10826
  namespace reference.`microsoft.graph.security` {
10136
10827
  @complex model activeDirectoryDomainEvidence extends alertEvidence {
@@ -10525,6 +11216,10 @@ namespace reference.`microsoft.graph.security` {
10525
11216
  processes: processEvidence[] | null;
10526
11217
  }
10527
11218
 
11219
+ @complex model mergeResponse {
11220
+ targetIncidentId: string;
11221
+ }
11222
+
10528
11223
  @complex model networkConnectionEvidence extends alertEvidence {
10529
11224
  destinationAddress: ipEvidence | null;
10530
11225
  destinationPort: int32 | null;
@@ -10695,6 +11390,7 @@ namespace reference.`microsoft.graph.security` {
10695
11390
  displayName: string | null;
10696
11391
  domainName: string | null;
10697
11392
  resourceAccessEvents: resourceAccessEvent[] | null;
11393
+ tenantId: string | null;
10698
11394
  userPrincipalName: string | null;
10699
11395
  userSid: string | null;
10700
11396
  }
@@ -10717,6 +11413,9 @@ namespace reference.`microsoft.graph.security` {
10717
11413
  alertPolicyId: string | null;
10718
11414
  alertWebUrl: string | null;
10719
11415
  assignedTo: string | null;
11416
+ categories: string[] | null;
11417
+
11418
+ @graphDeprecated("Tasks_And_Plans")
10720
11419
  category: string | null;
10721
11420
  classification: alertClassification | null;
10722
11421
  comments: alertComment[] | null;
@@ -10882,6 +11581,7 @@ namespace reference.`microsoft.graph.security` {
10882
11581
  }
10883
11582
 
10884
11583
  @entity model ediscoveryPurgeDataOperation extends caseOperation {
11584
+ reportFileMetadata: reportFileMetadata[] | null;
10885
11585
  }
10886
11586
 
10887
11587
  @entity model ediscoveryReviewSet extends dataSet {
@@ -11133,6 +11833,28 @@ namespace reference.`microsoft.graph.security` {
11133
11833
  unknownFutureValue: 3,
11134
11834
  }
11135
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
+
11136
11858
  enum dataSourceContainerStatus {
11137
11859
  active: 1,
11138
11860
  released: 2,