@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.
@@ -9321,9 +9321,12 @@ namespace reference.`microsoft.graph` {
9321
9321
  @contains alerts_v2: reference.`microsoft.graph.security`.alert[];
9322
9322
  @contains cases: reference.`microsoft.graph.security`.casesRoot | null;
9323
9323
  @contains incidents: reference.`microsoft.graph.security`.incident[];
9324
+ @contains labels: reference.`microsoft.graph.security`.labelsRoot | null;
9324
9325
  @contains rules: reference.`microsoft.graph.security`.rulesRoot | null;
9325
9326
  @contains secureScoreControlProfiles: secureScoreControlProfile[];
9326
9327
  @contains secureScores: secureScore[];
9328
+ @contains triggers: reference.`microsoft.graph.security`.triggersRoot | null;
9329
+ @contains triggerTypes: reference.`microsoft.graph.security`.triggerTypesRoot | null;
9327
9330
  }
9328
9331
 
9329
9332
  @entity model sensitiveType extends entity {
@@ -14616,6 +14619,17 @@ namespace reference.`microsoft.graph.identityGovernance` {
14616
14619
  triggerAttributes: triggerAttribute[];
14617
14620
  }
14618
14621
 
14622
+ @complex model attributeSetEntry {
14623
+ name: string;
14624
+ value: string | null;
14625
+ }
14626
+
14627
+ @complex model awaitedWorkflowProcessingResult {
14628
+ processingStatus: lifecycleWorkflowProcessingStatus;
14629
+ statusReasons: string[];
14630
+ subject: workflowSubject | null;
14631
+ }
14632
+
14619
14633
  @complex model customTaskExtensionCallbackConfiguration extends reference.`microsoft.graph`.customExtensionCallbackConfiguration {
14620
14634
  @references authorizedApps: reference.`microsoft.graph`.application[];
14621
14635
  }
@@ -14625,12 +14639,19 @@ namespace reference.`microsoft.graph.identityGovernance` {
14625
14639
  }
14626
14640
 
14627
14641
  @complex model customTaskExtensionCalloutData extends reference.`microsoft.graph`.customExtensionData {
14642
+ targetSubject: workflowSubject | null;
14628
14643
  @references subject: reference.`microsoft.graph`.user | null;
14629
14644
  @references task: task | null;
14630
14645
  @references taskProcessingresult: taskProcessingResult | null;
14631
14646
  @references workflow: workflow | null;
14632
14647
  }
14633
14648
 
14649
+ @complex model customTaskExtensionResponseData extends reference.`microsoft.graph`.customExtensionData {
14650
+ operationStatus: customTaskExtensionOperationStatus;
14651
+ statusReasons: string[];
14652
+ targetSubject: workflowSubject | null;
14653
+ }
14654
+
14634
14655
  @complex model groupBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
14635
14656
  @references groups: reference.`microsoft.graph`.group[];
14636
14657
  }
@@ -14655,6 +14676,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
14655
14676
  taskId: string;
14656
14677
  }
14657
14678
 
14679
+ @complex model provisioningAttributeMapping extends workflowExecutionConditions {
14680
+ }
14681
+
14682
+ @complex model provisioningObjectWorkflowSubject extends workflowSubject {
14683
+ attributeSetEntries: attributeSetEntry[];
14684
+ id: string;
14685
+ }
14686
+
14658
14687
  @complex model ruleBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
14659
14688
  rule: string;
14660
14689
  }
@@ -14765,10 +14794,15 @@ namespace reference.`microsoft.graph.identityGovernance` {
14765
14794
  totalUsers: int32;
14766
14795
  }
14767
14796
 
14797
+ @abstract
14798
+ @complex model workflowSubject {
14799
+ }
14800
+
14768
14801
  @entity model customTaskExtension extends reference.`microsoft.graph`.customCalloutExtension {
14769
14802
  callbackConfiguration: reference.`microsoft.graph`.customExtensionCallbackConfiguration | null;
14770
14803
  @computed createdDateTime: offsetDateTime | null;
14771
14804
  @computed lastModifiedDateTime: offsetDateTime | null;
14805
+ replyMode: customTaskExtensionReplyMode;
14772
14806
  @references createdBy: reference.`microsoft.graph`.user | null;
14773
14807
  @references lastModifiedBy: reference.`microsoft.graph`.user | null;
14774
14808
  }
@@ -14806,10 +14840,26 @@ namespace reference.`microsoft.graph.identityGovernance` {
14806
14840
  totalUsersCount: int32;
14807
14841
  workflowExecutionType: workflowExecutionType;
14808
14842
  @references reprocessedRuns: run[];
14843
+ @contains subjectProcessingResults: subjectProcessingResult[];
14809
14844
  @contains taskProcessingResults: taskProcessingResult[];
14810
14845
  @contains userProcessingResults: userProcessingResult[];
14811
14846
  }
14812
14847
 
14848
+ @entity model subjectProcessingResult extends reference.`microsoft.graph`.entity {
14849
+ completedDateTime: offsetDateTime | null;
14850
+ failedTasksCount: int32;
14851
+ processingStatus: lifecycleWorkflowProcessingStatus;
14852
+ scheduledDateTime: offsetDateTime;
14853
+ startedDateTime: offsetDateTime | null;
14854
+ subject: workflowSubject;
14855
+ totalTasksCount: int32;
14856
+ totalUnprocessedTasksCount: int32;
14857
+ workflowExecutionType: workflowExecutionType;
14858
+ workflowVersion: int32;
14859
+ @references reprocessedRuns: run[];
14860
+ @contains taskProcessingResults: taskProcessingResult[];
14861
+ }
14862
+
14813
14863
  @entity model task extends reference.`microsoft.graph`.entity {
14814
14864
  arguments: reference.`microsoft.graph`.keyValuePair[];
14815
14865
  category: lifecycleTaskCategory;
@@ -14837,6 +14887,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
14837
14887
  failureReason: string | null;
14838
14888
  processingStatus: lifecycleWorkflowProcessingStatus;
14839
14889
  startedDateTime: offsetDateTime | null;
14890
+ workflowSubject: workflowSubject | null;
14840
14891
  @references subject: reference.`microsoft.graph`.user;
14841
14892
  @references task: task;
14842
14893
  }
@@ -14881,6 +14932,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
14881
14932
  @privatePreview("organizationalUnit")
14882
14933
  @references previewScope: reference.`microsoft.graph`.directoryObject[];
14883
14934
  @contains runs: run[];
14935
+ @contains subjectProcessingResults: subjectProcessingResult[];
14884
14936
  @contains taskReports: taskReport[];
14885
14937
  @contains userProcessingResults: userProcessingResult[];
14886
14938
  @contains versions: workflowVersion[];
@@ -14932,12 +14984,20 @@ namespace reference.`microsoft.graph.identityGovernance` {
14932
14984
  unknownFutureValue: 2,
14933
14985
  }
14934
14986
 
14987
+ enum customTaskExtensionReplyMode {
14988
+ none: 0,
14989
+ callback: 1,
14990
+ response: 2,
14991
+ unknownFutureValue: 3,
14992
+ }
14993
+
14935
14994
  @graphFlags
14936
14995
  enum lifecycleTaskCategory {
14937
14996
  joiner: 1,
14938
14997
  leaver: 2,
14939
14998
  unknownFutureValue: 4,
14940
14999
  mover: 8,
15000
+ extensibility: 16,
14941
15001
  }
14942
15002
 
14943
15003
  enum lifecycleWorkflowCategory {
@@ -14945,6 +15005,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
14945
15005
  leaver: 1,
14946
15006
  unknownFutureValue: 2,
14947
15007
  mover: 3,
15008
+ extensibility: 4,
14948
15009
  }
14949
15010
 
14950
15011
  enum lifecycleWorkflowProcessingStatus {
@@ -14978,6 +15039,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
14978
15039
  activatedWithScope: 3,
14979
15040
  @privatePreview("organizationalUnit")
14980
15041
  preview: 4,
15042
+ extensibilityOnDemand: 5,
14981
15043
  }
14982
15044
 
14983
15045
  enum workflowTriggerTimeBasedAttribute {
@@ -15189,6 +15251,18 @@ namespace reference.`microsoft.graph.security` {
15189
15251
  emailAddress: string | null;
15190
15252
  }
15191
15253
 
15254
+ @complex model eventPropagationResult {
15255
+ location: string | null;
15256
+ serviceName: string | null;
15257
+ status: eventPropagationStatus | null;
15258
+ statusInformation: string | null;
15259
+ }
15260
+
15261
+ @complex model eventQuery {
15262
+ query: string;
15263
+ queryType: queryType | null;
15264
+ }
15265
+
15192
15266
  @complex model exportFileMetadata {
15193
15267
  downloadUrl: string | null;
15194
15268
  fileName: string | null;
@@ -15224,6 +15298,31 @@ namespace reference.`microsoft.graph.security` {
15224
15298
  value: string | null;
15225
15299
  }
15226
15300
 
15301
+ @complex model filePlanAppliedCategory extends filePlanDescriptorBase {
15302
+ subcategory: filePlanSubcategory | null;
15303
+ }
15304
+
15305
+ @complex model filePlanAuthority extends filePlanDescriptorBase {
15306
+ }
15307
+
15308
+ @complex model filePlanCitation extends filePlanDescriptorBase {
15309
+ citationJurisdiction: string | null;
15310
+ citationUrl: string | null;
15311
+ }
15312
+
15313
+ @complex model filePlanDepartment extends filePlanDescriptorBase {
15314
+ }
15315
+
15316
+ @complex model filePlanDescriptorBase {
15317
+ displayName: string | null;
15318
+ }
15319
+
15320
+ @complex model filePlanReference extends filePlanDescriptorBase {
15321
+ }
15322
+
15323
+ @complex model filePlanSubcategory extends filePlanDescriptorBase {
15324
+ }
15325
+
15227
15326
  @complex model forceUserPasswordResetResponseAction extends responseAction {
15228
15327
  identifier: forceUserPasswordResetEntityIdentifier;
15229
15328
  }
@@ -15570,6 +15669,22 @@ namespace reference.`microsoft.graph.security` {
15570
15669
  identifier: deviceIdEntityIdentifier;
15571
15670
  }
15572
15671
 
15672
+ @abstract
15673
+ @complex model retentionDuration {
15674
+ }
15675
+
15676
+ @complex model retentionDurationForever extends retentionDuration {
15677
+ }
15678
+
15679
+ @complex model retentionDurationInDays extends retentionDuration {
15680
+ days: int32 | null;
15681
+ }
15682
+
15683
+ @complex model retentionEventStatus {
15684
+ error: reference.`microsoft.graph`.publicError | null;
15685
+ status: eventStatusType | null;
15686
+ }
15687
+
15573
15688
  @complex model ruleSchedule {
15574
15689
  nextRunDateTime: offsetDateTime | null;
15575
15690
  period: string;
@@ -15746,6 +15861,9 @@ namespace reference.`microsoft.graph.security` {
15746
15861
  title: string | null;
15747
15862
  }
15748
15863
 
15864
+ @entity model authorityTemplate extends filePlanDescriptorTemplate {
15865
+ }
15866
+
15749
15867
  @abstract
15750
15868
  @entity model case extends reference.`microsoft.graph`.entity {
15751
15869
  @computed createdDateTime: offsetDateTime | null;
@@ -15770,6 +15888,15 @@ namespace reference.`microsoft.graph.security` {
15770
15888
  @contains ediscoveryCases: ediscoveryCase[];
15771
15889
  }
15772
15890
 
15891
+ @entity model categoryTemplate extends filePlanDescriptorTemplate {
15892
+ @contains subcategories: subcategoryTemplate[];
15893
+ }
15894
+
15895
+ @entity model citationTemplate extends filePlanDescriptorTemplate {
15896
+ citationJurisdiction: string | null;
15897
+ citationUrl: string | null;
15898
+ }
15899
+
15773
15900
  @abstract
15774
15901
  @entity model dataSet extends reference.`microsoft.graph`.entity {
15775
15902
  createdBy: reference.`microsoft.graph`.identitySet | null;
@@ -15796,6 +15923,9 @@ namespace reference.`microsoft.graph.security` {
15796
15923
  status: dataSourceContainerStatus | null;
15797
15924
  }
15798
15925
 
15926
+ @entity model departmentTemplate extends filePlanDescriptorTemplate {
15927
+ }
15928
+
15799
15929
  @entity model detectionRule extends protectionRule {
15800
15930
  detectionAction: detectionAction | null;
15801
15931
  detectorId: string | null;
@@ -15804,6 +15934,12 @@ namespace reference.`microsoft.graph.security` {
15804
15934
  schedule: ruleSchedule | null;
15805
15935
  }
15806
15936
 
15937
+ @entity model dispositionReviewStage extends MsGraph.SharedModels.entity {
15938
+ name: string | null;
15939
+ reviewersEmailAddresses: string[] | null;
15940
+ @computed @key stageNumber: string;
15941
+ }
15942
+
15807
15943
  @entity model ediscoveryAddToReviewSetOperation extends caseOperation {
15808
15944
  additionalDataOptions: additionalDataOptions | null;
15809
15945
  cloudAttachmentVersion: cloudAttachmentVersion | null;
@@ -15955,6 +16091,13 @@ namespace reference.`microsoft.graph.security` {
15955
16091
  @entity model ediscoveryTagOperation extends caseOperation {
15956
16092
  }
15957
16093
 
16094
+ @entity model entityDefinitionInput extends MsGraph.SharedModels.entity {
16095
+ @computed @key entityIdentifier: string;
16096
+ entityType: manualAlertEntityType;
16097
+ identifierValue: string;
16098
+ role: entityDefinitionInputRole;
16099
+ }
16100
+
15958
16101
  @entity model file extends reference.`microsoft.graph`.entity {
15959
16102
  content: stream | null;
15960
16103
  dateTime: offsetDateTime | null;
@@ -15970,6 +16113,28 @@ namespace reference.`microsoft.graph.security` {
15970
16113
  subjectTitle: string | null;
15971
16114
  }
15972
16115
 
16116
+ @entity model filePlanDescriptor extends reference.`microsoft.graph`.entity {
16117
+ authority: filePlanAuthority | null;
16118
+ category: filePlanAppliedCategory | null;
16119
+ citation: filePlanCitation | null;
16120
+ department: filePlanDepartment | null;
16121
+ filePlanReference: filePlanReference | null;
16122
+ @references authorityTemplate: authorityTemplate | null;
16123
+ @references categoryTemplate: categoryTemplate | null;
16124
+ @references citationTemplate: citationTemplate | null;
16125
+ @references departmentTemplate: departmentTemplate | null;
16126
+ @references filePlanReferenceTemplate: filePlanReferenceTemplate | null;
16127
+ }
16128
+
16129
+ @entity model filePlanDescriptorTemplate extends reference.`microsoft.graph`.entity {
16130
+ createdBy: reference.`microsoft.graph`.identitySet | null;
16131
+ @computed createdDateTime: offsetDateTime | null;
16132
+ displayName: string | null;
16133
+ }
16134
+
16135
+ @entity model filePlanReferenceTemplate extends filePlanDescriptorTemplate {
16136
+ }
16137
+
15973
16138
  @entity model incident extends reference.`microsoft.graph`.entity {
15974
16139
  assignedTo: string | null;
15975
16140
  classification: alertClassification | null;
@@ -15994,6 +16159,22 @@ namespace reference.`microsoft.graph.security` {
15994
16159
  @references alerts: alert[];
15995
16160
  }
15996
16161
 
16162
+ @entity model labelsRoot extends reference.`microsoft.graph`.entity {
16163
+ @contains authorities: authorityTemplate[];
16164
+ @contains categories: categoryTemplate[];
16165
+ @contains citations: citationTemplate[];
16166
+ @contains departments: departmentTemplate[];
16167
+ @contains filePlanReferences: filePlanReferenceTemplate[];
16168
+ @contains retentionLabels: retentionLabel[];
16169
+ }
16170
+
16171
+ @entity model manualAlert extends alert {
16172
+ isExcludedFromCorrelation: boolean;
16173
+ linkToIncident: int64 | null;
16174
+ sentinelWorkspace: string | null;
16175
+ @contains entityDefinitions: entityDefinitionInput[];
16176
+ }
16177
+
15997
16178
  @abstract
15998
16179
  @entity model policyBase extends reference.`microsoft.graph`.entity {
15999
16180
  createdBy: reference.`microsoft.graph`.identitySet | null;
@@ -16015,6 +16196,50 @@ namespace reference.`microsoft.graph.security` {
16015
16196
  @computed lastModifiedDateTime: offsetDateTime;
16016
16197
  }
16017
16198
 
16199
+ @entity model retentionEvent extends reference.`microsoft.graph`.entity {
16200
+ createdBy: reference.`microsoft.graph`.identitySet | null;
16201
+ @computed createdDateTime: offsetDateTime | null;
16202
+ description: string | null;
16203
+ displayName: string | null;
16204
+ eventPropagationResults: eventPropagationResult[] | null;
16205
+ eventQueries: eventQuery[] | null;
16206
+ eventStatus: retentionEventStatus | null;
16207
+ eventTriggerDateTime: offsetDateTime | null;
16208
+ lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
16209
+ @computed lastModifiedDateTime: offsetDateTime | null;
16210
+ @computed lastStatusUpdateDateTime: offsetDateTime | null;
16211
+ @references retentionEventType: retentionEventType | null;
16212
+ }
16213
+
16214
+ @entity model retentionEventType extends reference.`microsoft.graph`.entity {
16215
+ createdBy: reference.`microsoft.graph`.identitySet | null;
16216
+ @computed createdDateTime: offsetDateTime | null;
16217
+ description: string | null;
16218
+ displayName: string | null;
16219
+ lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
16220
+ @computed lastModifiedDateTime: offsetDateTime | null;
16221
+ }
16222
+
16223
+ @entity model retentionLabel extends reference.`microsoft.graph`.entity {
16224
+ actionAfterRetentionPeriod: actionAfterRetentionPeriod | null;
16225
+ behaviorDuringRetentionPeriod: behaviorDuringRetentionPeriod | null;
16226
+ createdBy: reference.`microsoft.graph`.identitySet | null;
16227
+ @computed createdDateTime: offsetDateTime | null;
16228
+ defaultRecordBehavior: defaultRecordBehavior | null;
16229
+ descriptionForAdmins: string | null;
16230
+ descriptionForUsers: string | null;
16231
+ displayName: string | null;
16232
+ isInUse: boolean | null;
16233
+ labelToBeApplied: string | null;
16234
+ lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
16235
+ @computed lastModifiedDateTime: offsetDateTime | null;
16236
+ retentionDuration: retentionDuration | null;
16237
+ retentionTrigger: retentionTrigger | null;
16238
+ @contains descriptors: filePlanDescriptor | null;
16239
+ @contains dispositionReviewStages: dispositionReviewStage[];
16240
+ @references retentionEventType: retentionEventType | null;
16241
+ }
16242
+
16018
16243
  @entity model rulesRoot extends reference.`microsoft.graph`.entity {
16019
16244
  @contains detectionRules: detectionRule[];
16020
16245
  }
@@ -16034,6 +16259,9 @@ namespace reference.`microsoft.graph.security` {
16034
16259
  @references site: reference.`microsoft.graph`.site;
16035
16260
  }
16036
16261
 
16262
+ @entity model subcategoryTemplate extends filePlanDescriptorTemplate {
16263
+ }
16264
+
16037
16265
  @abstract
16038
16266
  @entity model tag extends reference.`microsoft.graph`.entity {
16039
16267
  createdBy: reference.`microsoft.graph`.identitySet | null;
@@ -16042,6 +16270,14 @@ namespace reference.`microsoft.graph.security` {
16042
16270
  @computed lastModifiedDateTime: offsetDateTime | null;
16043
16271
  }
16044
16272
 
16273
+ @entity model triggersRoot extends reference.`microsoft.graph`.entity {
16274
+ @contains retentionEvents: retentionEvent[];
16275
+ }
16276
+
16277
+ @entity model triggerTypesRoot extends reference.`microsoft.graph`.entity {
16278
+ @contains retentionEventTypes: retentionEventType[];
16279
+ }
16280
+
16045
16281
  @entity model unifiedGroupSource extends dataSource {
16046
16282
  includedSources: sourceType | null;
16047
16283
  @references group: reference.`microsoft.graph`.group;
@@ -16053,6 +16289,14 @@ namespace reference.`microsoft.graph.security` {
16053
16289
  siteWebUrl: string | null;
16054
16290
  }
16055
16291
 
16292
+ enum actionAfterRetentionPeriod {
16293
+ none: 0,
16294
+ delete: 1,
16295
+ startDispositionReview: 2,
16296
+ relabel: 3,
16297
+ unknownFutureValue: 4,
16298
+ }
16299
+
16056
16300
  @graphFlags
16057
16301
  enum additionalDataOptions {
16058
16302
  allVersions: 1,
@@ -16254,6 +16498,12 @@ namespace reference.`microsoft.graph.security` {
16254
16498
  unknownFutureValue: 16,
16255
16499
  }
16256
16500
 
16501
+ enum defaultRecordBehavior {
16502
+ startLocked: 0,
16503
+ startUnlocked: 1,
16504
+ unknownFutureValue: 2,
16505
+ }
16506
+
16257
16507
  enum defenderAvStatus {
16258
16508
  notReporting: 0,
16259
16509
  disabled: 1,
@@ -16371,6 +16621,28 @@ namespace reference.`microsoft.graph.security` {
16371
16621
  unknownFutureValue: 4,
16372
16622
  }
16373
16623
 
16624
+ enum entityDefinitionInputRole {
16625
+ impacted: 0,
16626
+ related: 1,
16627
+ unknownFutureValue: 99,
16628
+ }
16629
+
16630
+ enum eventPropagationStatus {
16631
+ none: 0,
16632
+ inProcessing: 1,
16633
+ failed: 2,
16634
+ success: 3,
16635
+ unknownFutureValue: 4,
16636
+ }
16637
+
16638
+ enum eventStatusType {
16639
+ pending: 0,
16640
+ error: 1,
16641
+ success: 2,
16642
+ notAvaliable: 3,
16643
+ unknownFutureValue: 4,
16644
+ }
16645
+
16374
16646
  enum evidenceRemediationStatus {
16375
16647
  none: 0,
16376
16648
  remediated: 1,
@@ -16605,6 +16877,27 @@ namespace reference.`microsoft.graph.security` {
16605
16877
  unknownFutureValue: 31,
16606
16878
  }
16607
16879
 
16880
+ enum manualAlertEntityType {
16881
+ user: 0,
16882
+ device: 1,
16883
+ file: 2,
16884
+ ip: 3,
16885
+ url: 4,
16886
+ cloudApplication: 5,
16887
+ mailbox: 6,
16888
+ securityGroup: 7,
16889
+ azureResource: 8,
16890
+ amazonResource: 9,
16891
+ googleCloudResource: 10,
16892
+ oAuthApplication: 11,
16893
+ emailMessage: 12,
16894
+ emailCluster: 13,
16895
+ process: 14,
16896
+ registryKey: 15,
16897
+ registryValue: 16,
16898
+ unknownFutureValue: 99,
16899
+ }
16900
+
16608
16901
  @graphFlags
16609
16902
  enum markUserAsCompromisedEntityIdentifier {
16610
16903
  accountObjectId: 1,
@@ -16648,6 +16941,12 @@ namespace reference.`microsoft.graph.security` {
16648
16941
  permanentlyDelete: 2,
16649
16942
  }
16650
16943
 
16944
+ enum queryType {
16945
+ files: 0,
16946
+ messages: 1,
16947
+ unknownFutureValue: 2,
16948
+ }
16949
+
16651
16950
  @graphFlags
16652
16951
  enum recipientType {
16653
16952
  user: 1,
@@ -16655,6 +16954,14 @@ namespace reference.`microsoft.graph.security` {
16655
16954
  unknownFutureValue: 4,
16656
16955
  }
16657
16956
 
16957
+ enum retentionTrigger {
16958
+ dateLabeled: 0,
16959
+ dateCreated: 1,
16960
+ dateModified: 2,
16961
+ dateOfEvent: 3,
16962
+ unknownFutureValue: 4,
16963
+ }
16964
+
16658
16965
  @graphFlags
16659
16966
  enum reviewSetSettings {
16660
16967
  none: 0,
@@ -16689,6 +16996,7 @@ namespace reference.`microsoft.graph.security` {
16689
16996
  microsoftDefenderForCloud: 256,
16690
16997
  microsoftSentinel: 512,
16691
16998
  microsoftInsiderRiskManagement: 1024,
16999
+ microsoftSecurityForAI: 4096,
16692
17000
  }
16693
17001
 
16694
17002
  @graphFlags