@microsoft/typespec-msgraph-reference 1.0.4 → 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.
@@ -9548,9 +9548,12 @@ namespace reference.`microsoft.graph` {
9548
9548
  @contains cases: reference.`microsoft.graph.security`.casesRoot | null;
9549
9549
  @contains dataSecurityAndGovernance: tenantDataSecurityAndGovernance | null;
9550
9550
  @contains incidents: reference.`microsoft.graph.security`.incident[];
9551
+ @contains labels: reference.`microsoft.graph.security`.labelsRoot | null;
9551
9552
  @contains rules: reference.`microsoft.graph.security`.rulesRoot | null;
9552
9553
  @contains secureScoreControlProfiles: secureScoreControlProfile[];
9553
9554
  @contains secureScores: secureScore[];
9555
+ @contains triggers: reference.`microsoft.graph.security`.triggersRoot | null;
9556
+ @contains triggerTypes: reference.`microsoft.graph.security`.triggerTypesRoot | null;
9554
9557
  }
9555
9558
 
9556
9559
  @entity model sensitiveType extends entity {
@@ -15021,6 +15024,17 @@ namespace reference.`microsoft.graph.identityGovernance` {
15021
15024
  triggerAttributes: triggerAttribute[];
15022
15025
  }
15023
15026
 
15027
+ @complex model attributeSetEntry {
15028
+ name: string;
15029
+ value: string | null;
15030
+ }
15031
+
15032
+ @complex model awaitedWorkflowProcessingResult {
15033
+ processingStatus: lifecycleWorkflowProcessingStatus;
15034
+ statusReasons: string[];
15035
+ subject: workflowSubject | null;
15036
+ }
15037
+
15024
15038
  @complex model customTaskExtensionCallbackConfiguration extends reference.`microsoft.graph`.customExtensionCallbackConfiguration {
15025
15039
  @references authorizedApps: reference.`microsoft.graph`.application[];
15026
15040
  }
@@ -15030,12 +15044,19 @@ namespace reference.`microsoft.graph.identityGovernance` {
15030
15044
  }
15031
15045
 
15032
15046
  @complex model customTaskExtensionCalloutData extends reference.`microsoft.graph`.customExtensionData {
15047
+ targetSubject: workflowSubject | null;
15033
15048
  @references subject: reference.`microsoft.graph`.user | null;
15034
15049
  @references task: task | null;
15035
15050
  @references taskProcessingresult: taskProcessingResult | null;
15036
15051
  @references workflow: workflow | null;
15037
15052
  }
15038
15053
 
15054
+ @complex model customTaskExtensionResponseData extends reference.`microsoft.graph`.customExtensionData {
15055
+ operationStatus: customTaskExtensionOperationStatus;
15056
+ statusReasons: string[];
15057
+ targetSubject: workflowSubject | null;
15058
+ }
15059
+
15039
15060
  @complex model groupBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
15040
15061
  @references groups: reference.`microsoft.graph`.group[];
15041
15062
  }
@@ -15060,6 +15081,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
15060
15081
  taskId: string;
15061
15082
  }
15062
15083
 
15084
+ @complex model provisioningAttributeMapping extends workflowExecutionConditions {
15085
+ }
15086
+
15087
+ @complex model provisioningObjectWorkflowSubject extends workflowSubject {
15088
+ attributeSetEntries: attributeSetEntry[];
15089
+ id: string;
15090
+ }
15091
+
15063
15092
  @complex model ruleBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
15064
15093
  rule: string;
15065
15094
  }
@@ -15170,10 +15199,15 @@ namespace reference.`microsoft.graph.identityGovernance` {
15170
15199
  totalUsers: int32;
15171
15200
  }
15172
15201
 
15202
+ @abstract
15203
+ @complex model workflowSubject {
15204
+ }
15205
+
15173
15206
  @entity model customTaskExtension extends reference.`microsoft.graph`.customCalloutExtension {
15174
15207
  callbackConfiguration: reference.`microsoft.graph`.customExtensionCallbackConfiguration | null;
15175
15208
  @computed createdDateTime: offsetDateTime | null;
15176
15209
  @computed lastModifiedDateTime: offsetDateTime | null;
15210
+ replyMode: customTaskExtensionReplyMode;
15177
15211
  @references createdBy: reference.`microsoft.graph`.user | null;
15178
15212
  @references lastModifiedBy: reference.`microsoft.graph`.user | null;
15179
15213
  }
@@ -15211,10 +15245,26 @@ namespace reference.`microsoft.graph.identityGovernance` {
15211
15245
  totalUsersCount: int32;
15212
15246
  workflowExecutionType: workflowExecutionType;
15213
15247
  @references reprocessedRuns: run[];
15248
+ @contains subjectProcessingResults: subjectProcessingResult[];
15214
15249
  @contains taskProcessingResults: taskProcessingResult[];
15215
15250
  @contains userProcessingResults: userProcessingResult[];
15216
15251
  }
15217
15252
 
15253
+ @entity model subjectProcessingResult extends reference.`microsoft.graph`.entity {
15254
+ completedDateTime: offsetDateTime | null;
15255
+ failedTasksCount: int32;
15256
+ processingStatus: lifecycleWorkflowProcessingStatus;
15257
+ scheduledDateTime: offsetDateTime;
15258
+ startedDateTime: offsetDateTime | null;
15259
+ subject: workflowSubject;
15260
+ totalTasksCount: int32;
15261
+ totalUnprocessedTasksCount: int32;
15262
+ workflowExecutionType: workflowExecutionType;
15263
+ workflowVersion: int32;
15264
+ @references reprocessedRuns: run[];
15265
+ @contains taskProcessingResults: taskProcessingResult[];
15266
+ }
15267
+
15218
15268
  @entity model task extends reference.`microsoft.graph`.entity {
15219
15269
  arguments: reference.`microsoft.graph`.keyValuePair[];
15220
15270
  category: lifecycleTaskCategory;
@@ -15242,6 +15292,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
15242
15292
  failureReason: string | null;
15243
15293
  processingStatus: lifecycleWorkflowProcessingStatus;
15244
15294
  startedDateTime: offsetDateTime | null;
15295
+ workflowSubject: workflowSubject | null;
15245
15296
  @references subject: reference.`microsoft.graph`.user;
15246
15297
  @references task: task;
15247
15298
  }
@@ -15286,6 +15337,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
15286
15337
  @privatePreview("organizationalUnit")
15287
15338
  @references previewScope: reference.`microsoft.graph`.directoryObject[];
15288
15339
  @contains runs: run[];
15340
+ @contains subjectProcessingResults: subjectProcessingResult[];
15289
15341
  @contains taskReports: taskReport[];
15290
15342
  @contains userProcessingResults: userProcessingResult[];
15291
15343
  @contains versions: workflowVersion[];
@@ -15337,12 +15389,20 @@ namespace reference.`microsoft.graph.identityGovernance` {
15337
15389
  unknownFutureValue: 2,
15338
15390
  }
15339
15391
 
15392
+ enum customTaskExtensionReplyMode {
15393
+ none: 0,
15394
+ callback: 1,
15395
+ response: 2,
15396
+ unknownFutureValue: 3,
15397
+ }
15398
+
15340
15399
  @graphFlags
15341
15400
  enum lifecycleTaskCategory {
15342
15401
  joiner: 1,
15343
15402
  leaver: 2,
15344
15403
  unknownFutureValue: 4,
15345
15404
  mover: 8,
15405
+ extensibility: 16,
15346
15406
  }
15347
15407
 
15348
15408
  enum lifecycleWorkflowCategory {
@@ -15350,6 +15410,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
15350
15410
  leaver: 1,
15351
15411
  unknownFutureValue: 2,
15352
15412
  mover: 3,
15413
+ extensibility: 4,
15353
15414
  }
15354
15415
 
15355
15416
  enum lifecycleWorkflowProcessingStatus {
@@ -15383,6 +15444,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
15383
15444
  activatedWithScope: 3,
15384
15445
  @privatePreview("organizationalUnit")
15385
15446
  preview: 4,
15447
+ extensibilityOnDemand: 5,
15386
15448
  }
15387
15449
 
15388
15450
  enum workflowTriggerTimeBasedAttribute {
@@ -15594,6 +15656,18 @@ namespace reference.`microsoft.graph.security` {
15594
15656
  emailAddress: string | null;
15595
15657
  }
15596
15658
 
15659
+ @complex model eventPropagationResult {
15660
+ location: string | null;
15661
+ serviceName: string | null;
15662
+ status: eventPropagationStatus | null;
15663
+ statusInformation: string | null;
15664
+ }
15665
+
15666
+ @complex model eventQuery {
15667
+ query: string;
15668
+ queryType: queryType | null;
15669
+ }
15670
+
15597
15671
  @complex model exportFileMetadata {
15598
15672
  downloadUrl: string | null;
15599
15673
  fileName: string | null;
@@ -15629,6 +15703,31 @@ namespace reference.`microsoft.graph.security` {
15629
15703
  value: string | null;
15630
15704
  }
15631
15705
 
15706
+ @complex model filePlanAppliedCategory extends filePlanDescriptorBase {
15707
+ subcategory: filePlanSubcategory | null;
15708
+ }
15709
+
15710
+ @complex model filePlanAuthority extends filePlanDescriptorBase {
15711
+ }
15712
+
15713
+ @complex model filePlanCitation extends filePlanDescriptorBase {
15714
+ citationJurisdiction: string | null;
15715
+ citationUrl: string | null;
15716
+ }
15717
+
15718
+ @complex model filePlanDepartment extends filePlanDescriptorBase {
15719
+ }
15720
+
15721
+ @complex model filePlanDescriptorBase {
15722
+ displayName: string | null;
15723
+ }
15724
+
15725
+ @complex model filePlanReference extends filePlanDescriptorBase {
15726
+ }
15727
+
15728
+ @complex model filePlanSubcategory extends filePlanDescriptorBase {
15729
+ }
15730
+
15632
15731
  @complex model forceUserPasswordResetResponseAction extends responseAction {
15633
15732
  identifier: forceUserPasswordResetEntityIdentifier;
15634
15733
  }
@@ -15975,6 +16074,22 @@ namespace reference.`microsoft.graph.security` {
15975
16074
  identifier: deviceIdEntityIdentifier;
15976
16075
  }
15977
16076
 
16077
+ @abstract
16078
+ @complex model retentionDuration {
16079
+ }
16080
+
16081
+ @complex model retentionDurationForever extends retentionDuration {
16082
+ }
16083
+
16084
+ @complex model retentionDurationInDays extends retentionDuration {
16085
+ days: int32 | null;
16086
+ }
16087
+
16088
+ @complex model retentionEventStatus {
16089
+ error: reference.`microsoft.graph`.publicError | null;
16090
+ status: eventStatusType | null;
16091
+ }
16092
+
15978
16093
  @complex model ruleSchedule {
15979
16094
  nextRunDateTime: offsetDateTime | null;
15980
16095
  period: string;
@@ -16151,6 +16266,9 @@ namespace reference.`microsoft.graph.security` {
16151
16266
  title: string | null;
16152
16267
  }
16153
16268
 
16269
+ @entity model authorityTemplate extends filePlanDescriptorTemplate {
16270
+ }
16271
+
16154
16272
  @abstract
16155
16273
  @entity model case extends reference.`microsoft.graph`.entity {
16156
16274
  @computed createdDateTime: offsetDateTime | null;
@@ -16175,6 +16293,15 @@ namespace reference.`microsoft.graph.security` {
16175
16293
  @contains ediscoveryCases: ediscoveryCase[];
16176
16294
  }
16177
16295
 
16296
+ @entity model categoryTemplate extends filePlanDescriptorTemplate {
16297
+ @contains subcategories: subcategoryTemplate[];
16298
+ }
16299
+
16300
+ @entity model citationTemplate extends filePlanDescriptorTemplate {
16301
+ citationJurisdiction: string | null;
16302
+ citationUrl: string | null;
16303
+ }
16304
+
16178
16305
  @abstract
16179
16306
  @entity model dataSet extends reference.`microsoft.graph`.entity {
16180
16307
  createdBy: reference.`microsoft.graph`.identitySet | null;
@@ -16201,6 +16328,9 @@ namespace reference.`microsoft.graph.security` {
16201
16328
  status: dataSourceContainerStatus | null;
16202
16329
  }
16203
16330
 
16331
+ @entity model departmentTemplate extends filePlanDescriptorTemplate {
16332
+ }
16333
+
16204
16334
  @entity model detectionRule extends protectionRule {
16205
16335
  detectionAction: detectionAction | null;
16206
16336
  detectorId: string | null;
@@ -16209,6 +16339,12 @@ namespace reference.`microsoft.graph.security` {
16209
16339
  schedule: ruleSchedule | null;
16210
16340
  }
16211
16341
 
16342
+ @entity model dispositionReviewStage extends MsGraph.SharedModels.entity {
16343
+ name: string | null;
16344
+ reviewersEmailAddresses: string[] | null;
16345
+ @computed @key stageNumber: string;
16346
+ }
16347
+
16212
16348
  @entity model ediscoveryAddToReviewSetOperation extends caseOperation {
16213
16349
  additionalDataOptions: additionalDataOptions | null;
16214
16350
  cloudAttachmentVersion: cloudAttachmentVersion | null;
@@ -16360,6 +16496,13 @@ namespace reference.`microsoft.graph.security` {
16360
16496
  @entity model ediscoveryTagOperation extends caseOperation {
16361
16497
  }
16362
16498
 
16499
+ @entity model entityDefinitionInput extends MsGraph.SharedModels.entity {
16500
+ @computed @key entityIdentifier: string;
16501
+ entityType: manualAlertEntityType;
16502
+ identifierValue: string;
16503
+ role: entityDefinitionInputRole;
16504
+ }
16505
+
16363
16506
  @entity model file extends reference.`microsoft.graph`.entity {
16364
16507
  content: stream | null;
16365
16508
  dateTime: offsetDateTime | null;
@@ -16375,6 +16518,28 @@ namespace reference.`microsoft.graph.security` {
16375
16518
  subjectTitle: string | null;
16376
16519
  }
16377
16520
 
16521
+ @entity model filePlanDescriptor extends reference.`microsoft.graph`.entity {
16522
+ authority: filePlanAuthority | null;
16523
+ category: filePlanAppliedCategory | null;
16524
+ citation: filePlanCitation | null;
16525
+ department: filePlanDepartment | null;
16526
+ filePlanReference: filePlanReference | null;
16527
+ @references authorityTemplate: authorityTemplate | null;
16528
+ @references categoryTemplate: categoryTemplate | null;
16529
+ @references citationTemplate: citationTemplate | null;
16530
+ @references departmentTemplate: departmentTemplate | null;
16531
+ @references filePlanReferenceTemplate: filePlanReferenceTemplate | null;
16532
+ }
16533
+
16534
+ @entity model filePlanDescriptorTemplate extends reference.`microsoft.graph`.entity {
16535
+ createdBy: reference.`microsoft.graph`.identitySet | null;
16536
+ @computed createdDateTime: offsetDateTime | null;
16537
+ displayName: string | null;
16538
+ }
16539
+
16540
+ @entity model filePlanReferenceTemplate extends filePlanDescriptorTemplate {
16541
+ }
16542
+
16378
16543
  @entity model incident extends reference.`microsoft.graph`.entity {
16379
16544
  assignedTo: string | null;
16380
16545
  classification: alertClassification | null;
@@ -16399,6 +16564,22 @@ namespace reference.`microsoft.graph.security` {
16399
16564
  @references alerts: alert[];
16400
16565
  }
16401
16566
 
16567
+ @entity model labelsRoot extends reference.`microsoft.graph`.entity {
16568
+ @contains authorities: authorityTemplate[];
16569
+ @contains categories: categoryTemplate[];
16570
+ @contains citations: citationTemplate[];
16571
+ @contains departments: departmentTemplate[];
16572
+ @contains filePlanReferences: filePlanReferenceTemplate[];
16573
+ @contains retentionLabels: retentionLabel[];
16574
+ }
16575
+
16576
+ @entity model manualAlert extends alert {
16577
+ isExcludedFromCorrelation: boolean;
16578
+ linkToIncident: int64 | null;
16579
+ sentinelWorkspace: string | null;
16580
+ @contains entityDefinitions: entityDefinitionInput[];
16581
+ }
16582
+
16402
16583
  @abstract
16403
16584
  @entity model policyBase extends reference.`microsoft.graph`.entity {
16404
16585
  createdBy: reference.`microsoft.graph`.identitySet | null;
@@ -16420,6 +16601,50 @@ namespace reference.`microsoft.graph.security` {
16420
16601
  @computed lastModifiedDateTime: offsetDateTime;
16421
16602
  }
16422
16603
 
16604
+ @entity model retentionEvent extends reference.`microsoft.graph`.entity {
16605
+ createdBy: reference.`microsoft.graph`.identitySet | null;
16606
+ @computed createdDateTime: offsetDateTime | null;
16607
+ description: string | null;
16608
+ displayName: string | null;
16609
+ eventPropagationResults: eventPropagationResult[] | null;
16610
+ eventQueries: eventQuery[] | null;
16611
+ eventStatus: retentionEventStatus | null;
16612
+ eventTriggerDateTime: offsetDateTime | null;
16613
+ lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
16614
+ @computed lastModifiedDateTime: offsetDateTime | null;
16615
+ @computed lastStatusUpdateDateTime: offsetDateTime | null;
16616
+ @references retentionEventType: retentionEventType | null;
16617
+ }
16618
+
16619
+ @entity model retentionEventType extends reference.`microsoft.graph`.entity {
16620
+ createdBy: reference.`microsoft.graph`.identitySet | null;
16621
+ @computed createdDateTime: offsetDateTime | null;
16622
+ description: string | null;
16623
+ displayName: string | null;
16624
+ lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
16625
+ @computed lastModifiedDateTime: offsetDateTime | null;
16626
+ }
16627
+
16628
+ @entity model retentionLabel extends reference.`microsoft.graph`.entity {
16629
+ actionAfterRetentionPeriod: actionAfterRetentionPeriod | null;
16630
+ behaviorDuringRetentionPeriod: behaviorDuringRetentionPeriod | null;
16631
+ createdBy: reference.`microsoft.graph`.identitySet | null;
16632
+ @computed createdDateTime: offsetDateTime | null;
16633
+ defaultRecordBehavior: defaultRecordBehavior | null;
16634
+ descriptionForAdmins: string | null;
16635
+ descriptionForUsers: string | null;
16636
+ displayName: string | null;
16637
+ isInUse: boolean | null;
16638
+ labelToBeApplied: string | null;
16639
+ lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
16640
+ @computed lastModifiedDateTime: offsetDateTime | null;
16641
+ retentionDuration: retentionDuration | null;
16642
+ retentionTrigger: retentionTrigger | null;
16643
+ @contains descriptors: filePlanDescriptor | null;
16644
+ @contains dispositionReviewStages: dispositionReviewStage[];
16645
+ @references retentionEventType: retentionEventType | null;
16646
+ }
16647
+
16423
16648
  @entity model rulesRoot extends reference.`microsoft.graph`.entity {
16424
16649
  @contains detectionRules: detectionRule[];
16425
16650
  }
@@ -16439,6 +16664,9 @@ namespace reference.`microsoft.graph.security` {
16439
16664
  @references site: reference.`microsoft.graph`.site;
16440
16665
  }
16441
16666
 
16667
+ @entity model subcategoryTemplate extends filePlanDescriptorTemplate {
16668
+ }
16669
+
16442
16670
  @abstract
16443
16671
  @entity model tag extends reference.`microsoft.graph`.entity {
16444
16672
  createdBy: reference.`microsoft.graph`.identitySet | null;
@@ -16447,6 +16675,14 @@ namespace reference.`microsoft.graph.security` {
16447
16675
  @computed lastModifiedDateTime: offsetDateTime | null;
16448
16676
  }
16449
16677
 
16678
+ @entity model triggersRoot extends reference.`microsoft.graph`.entity {
16679
+ @contains retentionEvents: retentionEvent[];
16680
+ }
16681
+
16682
+ @entity model triggerTypesRoot extends reference.`microsoft.graph`.entity {
16683
+ @contains retentionEventTypes: retentionEventType[];
16684
+ }
16685
+
16450
16686
  @entity model unifiedGroupSource extends dataSource {
16451
16687
  includedSources: sourceType | null;
16452
16688
  @references group: reference.`microsoft.graph`.group;
@@ -16458,6 +16694,14 @@ namespace reference.`microsoft.graph.security` {
16458
16694
  siteWebUrl: string | null;
16459
16695
  }
16460
16696
 
16697
+ enum actionAfterRetentionPeriod {
16698
+ none: 0,
16699
+ delete: 1,
16700
+ startDispositionReview: 2,
16701
+ relabel: 3,
16702
+ unknownFutureValue: 4,
16703
+ }
16704
+
16461
16705
  @graphFlags
16462
16706
  enum additionalDataOptions {
16463
16707
  allVersions: 1,
@@ -16659,6 +16903,12 @@ namespace reference.`microsoft.graph.security` {
16659
16903
  unknownFutureValue: 16,
16660
16904
  }
16661
16905
 
16906
+ enum defaultRecordBehavior {
16907
+ startLocked: 0,
16908
+ startUnlocked: 1,
16909
+ unknownFutureValue: 2,
16910
+ }
16911
+
16662
16912
  enum defenderAvStatus {
16663
16913
  notReporting: 0,
16664
16914
  disabled: 1,
@@ -16776,6 +17026,28 @@ namespace reference.`microsoft.graph.security` {
16776
17026
  unknownFutureValue: 4,
16777
17027
  }
16778
17028
 
17029
+ enum entityDefinitionInputRole {
17030
+ impacted: 0,
17031
+ related: 1,
17032
+ unknownFutureValue: 99,
17033
+ }
17034
+
17035
+ enum eventPropagationStatus {
17036
+ none: 0,
17037
+ inProcessing: 1,
17038
+ failed: 2,
17039
+ success: 3,
17040
+ unknownFutureValue: 4,
17041
+ }
17042
+
17043
+ enum eventStatusType {
17044
+ pending: 0,
17045
+ error: 1,
17046
+ success: 2,
17047
+ notAvaliable: 3,
17048
+ unknownFutureValue: 4,
17049
+ }
17050
+
16779
17051
  enum evidenceRemediationStatus {
16780
17052
  none: 0,
16781
17053
  remediated: 1,
@@ -17010,6 +17282,27 @@ namespace reference.`microsoft.graph.security` {
17010
17282
  unknownFutureValue: 31,
17011
17283
  }
17012
17284
 
17285
+ enum manualAlertEntityType {
17286
+ user: 0,
17287
+ device: 1,
17288
+ file: 2,
17289
+ ip: 3,
17290
+ url: 4,
17291
+ cloudApplication: 5,
17292
+ mailbox: 6,
17293
+ securityGroup: 7,
17294
+ azureResource: 8,
17295
+ amazonResource: 9,
17296
+ googleCloudResource: 10,
17297
+ oAuthApplication: 11,
17298
+ emailMessage: 12,
17299
+ emailCluster: 13,
17300
+ process: 14,
17301
+ registryKey: 15,
17302
+ registryValue: 16,
17303
+ unknownFutureValue: 99,
17304
+ }
17305
+
17013
17306
  @graphFlags
17014
17307
  enum markUserAsCompromisedEntityIdentifier {
17015
17308
  accountObjectId: 1,
@@ -17053,6 +17346,12 @@ namespace reference.`microsoft.graph.security` {
17053
17346
  permanentlyDelete: 2,
17054
17347
  }
17055
17348
 
17349
+ enum queryType {
17350
+ files: 0,
17351
+ messages: 1,
17352
+ unknownFutureValue: 2,
17353
+ }
17354
+
17056
17355
  @graphFlags
17057
17356
  enum recipientType {
17058
17357
  user: 1,
@@ -17060,6 +17359,14 @@ namespace reference.`microsoft.graph.security` {
17060
17359
  unknownFutureValue: 4,
17061
17360
  }
17062
17361
 
17362
+ enum retentionTrigger {
17363
+ dateLabeled: 0,
17364
+ dateCreated: 1,
17365
+ dateModified: 2,
17366
+ dateOfEvent: 3,
17367
+ unknownFutureValue: 4,
17368
+ }
17369
+
17063
17370
  @graphFlags
17064
17371
  enum reviewSetSettings {
17065
17372
  none: 0,
@@ -17094,6 +17401,7 @@ namespace reference.`microsoft.graph.security` {
17094
17401
  microsoftDefenderForCloud: 256,
17095
17402
  microsoftSentinel: 512,
17096
17403
  microsoftInsiderRiskManagement: 1024,
17404
+ microsoftSecurityForAI: 4096,
17097
17405
  }
17098
17406
 
17099
17407
  @graphFlags