@microsoft/typespec-msgraph-reference 1.0.5 → 1.0.6
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.
- package/.rush/temp/package-deps_build.json +18 -18
- package/CHANGELOG.md +9 -0
- package/lib/Bleu/Beta/main.tsp +121 -3
- package/lib/Bleu/V1.0/main.tsp +377 -1
- package/lib/Delos/Beta/main.tsp +3330 -19
- package/lib/Delos/V1.0/main.tsp +2710 -10
- package/lib/Fairfax/Beta/main.tsp +64 -3
- package/lib/Fairfax/V1.0/main.tsp +58 -1
- package/lib/GovSG/Beta/main.tsp +1 -0
- package/lib/GovSG/V1.0/main.tsp +2 -1
- package/lib/Mooncake/Beta/main.tsp +64 -3
- package/lib/Mooncake/V1.0/main.tsp +58 -1
- package/lib/Prod/Beta/main.tsp +942 -169
- package/lib/Prod/V1.0/main.tsp +4093 -567
- package/lib/USNat/Beta/main.tsp +268 -0
- package/lib/USNat/V1.0/main.tsp +255 -1
- package/lib/USSec/Beta/main.tsp +268 -0
- package/lib/USSec/V1.0/main.tsp +255 -1
- package/package.json +2 -2
package/lib/Prod/Beta/main.tsp
CHANGED
|
@@ -8,6 +8,7 @@ scalar binary; //TODO: Enables support for Edm.Binary
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
@deprecatedDefinition("Deprecation", "<ChangeLogCategory>", "2024-04-10", "2026-04-10", "The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API.")
|
|
11
|
+
@deprecatedDefinition("beta:EnhancedRestore", "<ChangeLogCategory>", "2026-05-04", "2027-05-04", "Use structuredQueryExpression instead for structured query support.")
|
|
11
12
|
@deprecatedDefinition("cloudPcConnectionSettings", "<ChangeLogCategory>", "2023-10-12", "2024-08-31", "Starting from August 31, 2024, CloudPcConnectionSettings property will no longer be supported and will be marked as deprecated. Please use CloudPcConnectionSetting instead.")
|
|
12
13
|
@deprecatedDefinition("updatedDatetime", "<ChangeLogCategory>", "2023-10-12", "2024-08-31", "Starting from August 31, 2024, updatedDatetime property will no longer be supported and will be marked as deprecated. Please use lastModifiedDateTime instead.")
|
|
13
14
|
@deprecatedDefinition("crossRegionDisasterRecoveryEnabled", "<ChangeLogCategory>", "2024-11-11", "2025-02-11", "Starting from February 11, 2025, this property will no longer be supported and will be marked as deprecated. If crossRegionDisasterRecoveryEnabled is true, use `disasterRecoveryType = crossRegion` instead, if crossRegionDisasterRecoveryEnabled is false, use `disasterRecoveryType = notconfigured` instead")
|
|
@@ -86,7 +87,6 @@ scalar binary; //TODO: Enables support for Edm.Binary
|
|
|
86
87
|
@deprecatedDefinition("CreationDateTime", "<ChangeLogCategory>", "2020-11-06", "2020-12-31", "The creationDateTime property is deprecated and will stop returning data on December 31, 2020. Please use the createdDateTime property.")
|
|
87
88
|
@deprecatedDefinition("PIM_Iteration2_Deprecation", "<ChangeLogCategory>", "2025-10-27", "2026-10-28", "The PIM Iteration 2 beta API is deprecated and will be removed on October 28, 2026. Please migrate to PIM Iteration 3 API.")
|
|
88
89
|
@deprecatedDefinition("accountEnabledDeprecated", "<ChangeLogCategory>", "2023-02-23", "2023-07-12", "The accountEnabled field will soon be deprecated on 2023-07-12. Please use isEnabled instead.")
|
|
89
|
-
@privatePreviewDefinition("microsoft.applicationAuthorization", "2025-01-01", "2025-12-01", "<theOwner>")
|
|
90
90
|
@deprecatedDefinition("SignIn", "<ChangeLogCategory>", "2024-08-31", "2025-03-31", "SignInTokenProtectionStatus property is being deprecate in favor or more detailed tokenProtectionStatusDetails. It will be removed from April 2025.")
|
|
91
91
|
// Metadata item DeprecatedDefinition_SignIn was already defined with a different value.
|
|
92
92
|
@deprecatedDefinition("shared", "<ChangeLogCategory>", "2024-03-31", "2027-04-30", "Starting from April 30, 2027, this property will no longer be supported and will be marked as deprecated. Please use sharedByUser instead.")
|
|
@@ -1790,7 +1790,10 @@ namespace reference.`microsoft.graph` {
|
|
|
1790
1790
|
|
|
1791
1791
|
@complex model artifactQuery {
|
|
1792
1792
|
artifactType: restorableArtifact | null;
|
|
1793
|
+
|
|
1794
|
+
@graphDeprecated("beta:EnhancedRestore")
|
|
1793
1795
|
queryExpression: string | null;
|
|
1796
|
+
structuredQueryExpression: restoreSearchArtifactQueryExpression | null;
|
|
1794
1797
|
}
|
|
1795
1798
|
|
|
1796
1799
|
@complex model assignedLabel {
|
|
@@ -4783,6 +4786,10 @@ namespace reference.`microsoft.graph` {
|
|
|
4783
4786
|
position: int32 | null;
|
|
4784
4787
|
}
|
|
4785
4788
|
|
|
4789
|
+
@complex model contextMetadata {
|
|
4790
|
+
metadataProperties: customMetadataDictionary;
|
|
4791
|
+
}
|
|
4792
|
+
|
|
4786
4793
|
@complex model continuousAccessEvaluationSessionControl {
|
|
4787
4794
|
mode: continuousAccessEvaluationMode | null;
|
|
4788
4795
|
}
|
|
@@ -5218,6 +5225,10 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
5218
5225
|
totalBytesUploaded: int64;
|
|
5219
5226
|
}
|
|
5220
5227
|
|
|
5228
|
+
@open
|
|
5229
|
+
@complex model customEmojiFromIdentitySet extends identitySet {
|
|
5230
|
+
}
|
|
5231
|
+
|
|
5221
5232
|
@complex model customerVoiceSettings {
|
|
5222
5233
|
isInOrgFormsPhishingScanEnabled: boolean | null;
|
|
5223
5234
|
isRecordIdentityByDefaultEnabled: boolean | null;
|
|
@@ -8874,6 +8885,10 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
8874
8885
|
value: string | null;
|
|
8875
8886
|
}
|
|
8876
8887
|
|
|
8888
|
+
@complex model externalItemInformationProtectionLabel {
|
|
8889
|
+
sensitivityLabelId: string | null;
|
|
8890
|
+
}
|
|
8891
|
+
|
|
8877
8892
|
@complex model externalLink {
|
|
8878
8893
|
href: string | null;
|
|
8879
8894
|
}
|
|
@@ -12477,6 +12492,14 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
12477
12492
|
meetingTimeSuggestions: meetingTimeSuggestion[] | null;
|
|
12478
12493
|
}
|
|
12479
12494
|
|
|
12495
|
+
@complex model member {
|
|
12496
|
+
contactId: string | null;
|
|
12497
|
+
displayName: string | null;
|
|
12498
|
+
key: string | null;
|
|
12499
|
+
recipientType: recipientType;
|
|
12500
|
+
routingType: string | null;
|
|
12501
|
+
}
|
|
12502
|
+
|
|
12480
12503
|
@complex model membersAddedEventMessageDetail extends eventMessageDetail {
|
|
12481
12504
|
initiator: identitySet | null;
|
|
12482
12505
|
members: teamworkUserIdentity[] | null;
|
|
@@ -14907,6 +14930,7 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
14907
14930
|
@complex model processContentRequest {
|
|
14908
14931
|
activityMetadata: activityMetadata;
|
|
14909
14932
|
contentEntries: processContentMetadataBase[];
|
|
14933
|
+
contextMetadata: contextMetadata | null;
|
|
14910
14934
|
deviceMetadata: deviceMetadata;
|
|
14911
14935
|
integratedAppMetadata: integratedApplicationMetadata;
|
|
14912
14936
|
protectedAppMetadata: protectedApplicationMetadata | null;
|
|
@@ -15686,6 +15710,14 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
15686
15710
|
@references restorePoint: restorePoint | null;
|
|
15687
15711
|
}
|
|
15688
15712
|
|
|
15713
|
+
@complex model restoreSearchArtifactQueryExpression {
|
|
15714
|
+
hasAttachment: boolean | null;
|
|
15715
|
+
items: granularRestoreItems[] | null;
|
|
15716
|
+
recipients: string[] | null;
|
|
15717
|
+
senders: string[] | null;
|
|
15718
|
+
subjects: string[] | null;
|
|
15719
|
+
}
|
|
15720
|
+
|
|
15689
15721
|
@complex model restoreSessionArtifactCount {
|
|
15690
15722
|
completed: int32 | null;
|
|
15691
15723
|
failed: int32 | null;
|
|
@@ -16461,6 +16493,7 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
16461
16493
|
allProperties: boolean | null;
|
|
16462
16494
|
credentialsWithUsageSign: boolean | null;
|
|
16463
16495
|
credentialsWithUsageVerify: boolean | null;
|
|
16496
|
+
enforcementScope: servicePrincipalLockScope;
|
|
16464
16497
|
isEnabled: boolean;
|
|
16465
16498
|
tokenEncryptionKeyId: boolean | null;
|
|
16466
16499
|
}
|
|
@@ -29274,6 +29307,7 @@ capabilities, skills, security, and other manifest-defined fields.
|
|
|
29274
29307
|
isDeletable: boolean | null;
|
|
29275
29308
|
isReorderable: boolean | null;
|
|
29276
29309
|
isSealed: boolean | null;
|
|
29310
|
+
isSearchable: boolean | null;
|
|
29277
29311
|
lookup: lookupColumn | null;
|
|
29278
29312
|
name: string | null;
|
|
29279
29313
|
number: numberColumn | null;
|
|
@@ -33268,9 +33302,6 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
33268
33302
|
status: appLogUploadState;
|
|
33269
33303
|
}
|
|
33270
33304
|
|
|
33271
|
-
/**
|
|
33272
|
-
* Singleton that acts as container for a collection of Resource Access entities.
|
|
33273
|
-
*/
|
|
33274
33305
|
@entity model deviceManagement extends entity {
|
|
33275
33306
|
/**
|
|
33276
33307
|
* The date & time when tenant data moved between scaleunits.
|
|
@@ -35925,6 +35956,22 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
35925
35956
|
values: settingTemplateValue[];
|
|
35926
35957
|
}
|
|
35927
35958
|
|
|
35959
|
+
@entity model distributionList extends outlookItem {
|
|
35960
|
+
displayName: string | null;
|
|
35961
|
+
members: member[];
|
|
35962
|
+
notes: string | null;
|
|
35963
|
+
personIdentifier: string | null;
|
|
35964
|
+
@contains distributionListMembers: distributionListMember[];
|
|
35965
|
+
@contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
|
|
35966
|
+
}
|
|
35967
|
+
|
|
35968
|
+
@entity model distributionListMember extends entity {
|
|
35969
|
+
contactId: string | null;
|
|
35970
|
+
displayName: string | null;
|
|
35971
|
+
recipientType: recipientType;
|
|
35972
|
+
@references contact: contact | null;
|
|
35973
|
+
}
|
|
35974
|
+
|
|
35928
35975
|
@entity model dlpEvaluatePoliciesJobResponse extends jobResponseBase {
|
|
35929
35976
|
result: dlpPoliciesJobResult | null;
|
|
35930
35977
|
}
|
|
@@ -36625,9 +36672,6 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
36625
36672
|
@contains picture: picture[];
|
|
36626
36673
|
}
|
|
36627
36674
|
|
|
36628
|
-
/**
|
|
36629
|
-
* Represents a container that exposes navigation properties for employee experience resources.
|
|
36630
|
-
*/
|
|
36631
36675
|
@entity model employeeExperience extends MsGraph.SharedModels.entity {
|
|
36632
36676
|
/**
|
|
36633
36677
|
* A collection of communities in Viva Engage.
|
|
@@ -36646,9 +36690,6 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
36646
36690
|
@contains roles: engagementRole[];
|
|
36647
36691
|
}
|
|
36648
36692
|
|
|
36649
|
-
/**
|
|
36650
|
-
* Represents a container that exposes navigation properties for employee experience user resources.
|
|
36651
|
-
*/
|
|
36652
36693
|
@entity model employeeExperienceUser extends entity {
|
|
36653
36694
|
/**
|
|
36654
36695
|
* Viva Engage roles assigned to the user.
|
|
@@ -37334,6 +37375,7 @@ within the time frame of their original request.
|
|
|
37334
37375
|
@entity model externalItem extends entity {
|
|
37335
37376
|
acl: acl[] | null;
|
|
37336
37377
|
content: externalItemContent | null;
|
|
37378
|
+
informationProtectionLabel: externalItemInformationProtectionLabel | null;
|
|
37337
37379
|
properties: properties | null;
|
|
37338
37380
|
}
|
|
37339
37381
|
|
|
@@ -37768,9 +37810,6 @@ within the time frame of their original request.
|
|
|
37768
37810
|
siteId: string | null;
|
|
37769
37811
|
}
|
|
37770
37812
|
|
|
37771
|
-
/**
|
|
37772
|
-
* Represents a Microsoft Entra group.
|
|
37773
|
-
*/
|
|
37774
37813
|
@open
|
|
37775
37814
|
@entity model group extends directoryObject {
|
|
37776
37815
|
accessType: groupAccessType | null;
|
|
@@ -37859,6 +37898,43 @@ within the time frame of their original request.
|
|
|
37859
37898
|
@references transitiveMembers: directoryObject[];
|
|
37860
37899
|
}
|
|
37861
37900
|
|
|
37901
|
+
@entity model groupAnalytics extends entity {
|
|
37902
|
+
assignedRoleCount: int64 | null;
|
|
37903
|
+
calculatedDateTime: offsetDateTime;
|
|
37904
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
37905
|
+
directGroupMemberCount: int64 | null;
|
|
37906
|
+
displayName: string | null;
|
|
37907
|
+
dynamicMembershipType: string | null;
|
|
37908
|
+
groupExpirationDateTime: offsetDateTime | null;
|
|
37909
|
+
groupType: groupTypeEnum;
|
|
37910
|
+
guestOwnerCount: int64 | null;
|
|
37911
|
+
guestTransitiveUserCount: int64 | null;
|
|
37912
|
+
isCloudDistributionListGroup: boolean;
|
|
37913
|
+
isCloudM365Group: boolean;
|
|
37914
|
+
isCloudMailEnabledSecurityGroup: boolean;
|
|
37915
|
+
isCloudSecurityGroup: boolean;
|
|
37916
|
+
isDynamicGroup: boolean;
|
|
37917
|
+
isOnPremiseDistributionListGroup: boolean;
|
|
37918
|
+
isOnPremiseMailEnabledSecurityGroup: boolean;
|
|
37919
|
+
isOnPremiseSecurityGroup: boolean;
|
|
37920
|
+
isValidGroup: boolean;
|
|
37921
|
+
@computed lastRestorationDateTime: offsetDateTime | null;
|
|
37922
|
+
memberOwnerCount: int64 | null;
|
|
37923
|
+
membershipRuleContainsCount: int64 | null;
|
|
37924
|
+
membershipRuleExpressionCount: int64 | null;
|
|
37925
|
+
membershipRuleMatchCount: int64 | null;
|
|
37926
|
+
membershipRuleMemberOfCount: int64 | null;
|
|
37927
|
+
membershipRuleProcessingState: string | null;
|
|
37928
|
+
memberTransitiveUserCount: int64 | null;
|
|
37929
|
+
preferredDataLocation: string | null;
|
|
37930
|
+
sensitivityLabelCount: int64 | null;
|
|
37931
|
+
servicePrincipalOwnerCount: int64 | null;
|
|
37932
|
+
softDeletionDateTime: offsetDateTime | null;
|
|
37933
|
+
tenantId: string;
|
|
37934
|
+
transitiveServicePrincipalCount: int64 | null;
|
|
37935
|
+
transitiveUserCount: int64 | null;
|
|
37936
|
+
}
|
|
37937
|
+
|
|
37862
37938
|
@entity model groupLifecyclePolicy extends entity {
|
|
37863
37939
|
alternateNotificationEmails: string | null;
|
|
37864
37940
|
groupLifetimeInDays: int32 | null;
|
|
@@ -38932,6 +39008,10 @@ within the time frame of their original request.
|
|
|
38932
39008
|
serverToken: string;
|
|
38933
39009
|
}
|
|
38934
39010
|
|
|
39011
|
+
@entity model identityAnalyticsRoot extends entity {
|
|
39012
|
+
@contains groups: groupAnalytics[];
|
|
39013
|
+
}
|
|
39014
|
+
|
|
38935
39015
|
@entity model identityApiConnector extends entity {
|
|
38936
39016
|
authenticationConfiguration: apiAuthenticationConfigurationBase | null;
|
|
38937
39017
|
displayName: string | null;
|
|
@@ -46808,9 +46888,6 @@ within the time frame of their original request.
|
|
|
46808
46888
|
handler: onInteractiveAuthFlowStartHandler | null;
|
|
46809
46889
|
}
|
|
46810
46890
|
|
|
46811
|
-
/**
|
|
46812
|
-
* Represents a Microsoft online meeting.
|
|
46813
|
-
*/
|
|
46814
46891
|
@open
|
|
46815
46892
|
@entity model onlineMeeting extends onlineMeetingBase {
|
|
46816
46893
|
alternativeRecording: stream | null;
|
|
@@ -49279,6 +49356,7 @@ within the time frame of their original request.
|
|
|
49279
49356
|
@graphDeprecated("Tasks_And_Plans")
|
|
49280
49357
|
@contains dailyPrintUsageSummariesByUser: printUsageByUser[];
|
|
49281
49358
|
@contains healthMonitoring: reference.`microsoft.graph.healthMonitoring`.healthMonitoringRoot | null;
|
|
49359
|
+
@contains identityAnalytics: identityAnalyticsRoot | null;
|
|
49282
49360
|
@contains monthlyPrintUsageByPrinter: printUsageByPrinter[];
|
|
49283
49361
|
@contains monthlyPrintUsageByUser: printUsageByUser[];
|
|
49284
49362
|
|
|
@@ -49618,7 +49696,6 @@ within the time frame of their original request.
|
|
|
49618
49696
|
@contains roleAssignments: roleAssignment[];
|
|
49619
49697
|
}
|
|
49620
49698
|
|
|
49621
|
-
@privatePreview("microsoft.applicationAuthorization")
|
|
49622
49699
|
@entity model roleManagement extends MsGraph.SharedModels.entity {
|
|
49623
49700
|
@contains cloudPC: rbacApplicationMultiple | null;
|
|
49624
49701
|
@contains defender: unifiedRbacApplicationMultiple | null;
|
|
@@ -51631,6 +51708,9 @@ within the time frame of their original request.
|
|
|
51631
51708
|
notificationUrl: string;
|
|
51632
51709
|
notificationUrlAppId: string | null;
|
|
51633
51710
|
resource: string;
|
|
51711
|
+
vapidPublicKey: string | null;
|
|
51712
|
+
webPushEncryptionP256dhPublicKey: string | null;
|
|
51713
|
+
webPushEncryptionSecret: string | null;
|
|
51634
51714
|
}
|
|
51635
51715
|
|
|
51636
51716
|
@entity model summarizedSignIn extends entity {
|
|
@@ -52010,6 +52090,7 @@ within the time frame of their original request.
|
|
|
52010
52090
|
@contains deletedChats: deletedChat[];
|
|
52011
52091
|
@contains deletedTeams: deletedTeam[];
|
|
52012
52092
|
@contains devices: teamworkDevice[];
|
|
52093
|
+
@contains messaging: teamworkMessaging | null;
|
|
52013
52094
|
@contains teamsAppSettings: teamsAppSettings | null;
|
|
52014
52095
|
@contains teamTemplates: teamTemplate[];
|
|
52015
52096
|
@contains workforceIntegrations: workforceIntegration[];
|
|
@@ -52018,6 +52099,13 @@ within the time frame of their original request.
|
|
|
52018
52099
|
@entity model teamworkBot extends entity {
|
|
52019
52100
|
}
|
|
52020
52101
|
|
|
52102
|
+
@entity model teamworkCustomEmoji extends MsGraph.SharedModels.entity {
|
|
52103
|
+
contentBytes: string | null;
|
|
52104
|
+
createdBy: customEmojiFromIdentitySet;
|
|
52105
|
+
@computed createdDateTime: offsetDateTime;
|
|
52106
|
+
@computed @key displayName: string;
|
|
52107
|
+
}
|
|
52108
|
+
|
|
52021
52109
|
@entity model teamworkDevice extends entity {
|
|
52022
52110
|
activityState: teamworkDeviceActivityState | null;
|
|
52023
52111
|
companyAssetTag: string | null;
|
|
@@ -52088,6 +52176,10 @@ within the time frame of their original request.
|
|
|
52088
52176
|
contentType: string | null;
|
|
52089
52177
|
}
|
|
52090
52178
|
|
|
52179
|
+
@entity model teamworkMessaging extends entity {
|
|
52180
|
+
@contains customEmojis: teamworkCustomEmoji[];
|
|
52181
|
+
}
|
|
52182
|
+
|
|
52091
52183
|
@entity model teamworkPeripheral extends entity {
|
|
52092
52184
|
displayName: string | null;
|
|
52093
52185
|
productId: string | null;
|
|
@@ -52336,9 +52428,6 @@ within the time frame of their original request.
|
|
|
52336
52428
|
resultType: threatAssessmentResultType | null;
|
|
52337
52429
|
}
|
|
52338
52430
|
|
|
52339
|
-
/**
|
|
52340
|
-
* The ThumbnailSet resource is a keyed collection of thumbnail resources.
|
|
52341
|
-
*/
|
|
52342
52431
|
@open
|
|
52343
52432
|
@entity model thumbnailSet extends entity {
|
|
52344
52433
|
large: thumbnail | null;
|
|
@@ -53087,6 +53176,7 @@ within the time frame of their original request.
|
|
|
53087
53176
|
@contains deviceManagementTroubleshootingEvents: deviceManagementTroubleshootingEvent[];
|
|
53088
53177
|
@contains devices: device[];
|
|
53089
53178
|
@references directReports: directoryObject[];
|
|
53179
|
+
@contains distributionLists: distributionList[];
|
|
53090
53180
|
@contains drive: drive | null;
|
|
53091
53181
|
@contains drives: drive[];
|
|
53092
53182
|
@contains employeeExperience: employeeExperienceUser | null;
|
|
@@ -55475,6 +55565,7 @@ within the time frame of their original request.
|
|
|
55475
55565
|
}
|
|
55476
55566
|
|
|
55477
55567
|
@entity model voiceAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
|
|
55568
|
+
callerIdNumber: string | null;
|
|
55478
55569
|
isOfficePhoneAllowed: boolean | null;
|
|
55479
55570
|
@contains includeTargets: voiceAuthenticationMethodTarget[];
|
|
55480
55571
|
}
|
|
@@ -73900,6 +73991,15 @@ within the time frame of their original request.
|
|
|
73900
73991
|
enabled: 2,
|
|
73901
73992
|
}
|
|
73902
73993
|
|
|
73994
|
+
enum granularRestoreItems {
|
|
73995
|
+
email: 0,
|
|
73996
|
+
note: 1,
|
|
73997
|
+
contact: 2,
|
|
73998
|
+
task: 3,
|
|
73999
|
+
calendar: 4,
|
|
74000
|
+
unknownFutureValue: 5,
|
|
74001
|
+
}
|
|
74002
|
+
|
|
73903
74003
|
enum groundingEntityType {
|
|
73904
74004
|
site: 0,
|
|
73905
74005
|
list: 1,
|
|
@@ -74256,6 +74356,13 @@ within the time frame of their original request.
|
|
|
74256
74356
|
unknownFutureValue: 2,
|
|
74257
74357
|
}
|
|
74258
74358
|
|
|
74359
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
74360
|
+
enum groupTypeEnum {
|
|
74361
|
+
isCloudGroup: 0,
|
|
74362
|
+
isOnPremiseGroup: 1,
|
|
74363
|
+
isSoftDeletedGroup: 2,
|
|
74364
|
+
}
|
|
74365
|
+
|
|
74259
74366
|
/**
|
|
74260
74367
|
* Indicates the supported oems of hardware configuration
|
|
74261
74368
|
*/
|
|
@@ -80955,6 +81062,14 @@ within the time frame of their original request.
|
|
|
80955
81062
|
externalNonPartner: 8,
|
|
80956
81063
|
}
|
|
80957
81064
|
|
|
81065
|
+
enum recipientType {
|
|
81066
|
+
contact: 0,
|
|
81067
|
+
oneOff: 1,
|
|
81068
|
+
mailbox: 2,
|
|
81069
|
+
privateDL: 3,
|
|
81070
|
+
unknownFutureValue: 4,
|
|
81071
|
+
}
|
|
81072
|
+
|
|
80958
81073
|
enum recommendationCategory {
|
|
80959
81074
|
identityBestPractice: 0,
|
|
80960
81075
|
identitySecureScore: 1,
|
|
@@ -82565,6 +82680,13 @@ within the time frame of their original request.
|
|
|
82565
82680
|
unknownFutureValue: 2,
|
|
82566
82681
|
}
|
|
82567
82682
|
|
|
82683
|
+
enum servicePrincipalLockScope {
|
|
82684
|
+
notConfigured: 0,
|
|
82685
|
+
foreignTenantOnly: 1,
|
|
82686
|
+
everywhere: 2,
|
|
82687
|
+
unknownFutureValue: 3,
|
|
82688
|
+
}
|
|
82689
|
+
|
|
82568
82690
|
/**
|
|
82569
82691
|
* Possible values of xbox service start type
|
|
82570
82692
|
*/
|
|
@@ -88525,6 +88647,7 @@ namespace reference.`microsoft.graph.cloudLicensing` {
|
|
|
88525
88647
|
allottedUnits: int32;
|
|
88526
88648
|
assignableTo: assigneeTypes;
|
|
88527
88649
|
consumedUnits: int32;
|
|
88650
|
+
externalServiceIdentifier: string | null;
|
|
88528
88651
|
services: service[];
|
|
88529
88652
|
skuId: guid | null;
|
|
88530
88653
|
skuPartNumber: string | null;
|
|
@@ -88549,6 +88672,7 @@ namespace reference.`microsoft.graph.cloudLicensing` {
|
|
|
88549
88672
|
}
|
|
88550
88673
|
|
|
88551
88674
|
@entity model usageRight extends reference.`microsoft.graph`.entity {
|
|
88675
|
+
externalServiceIdentifier: string | null;
|
|
88552
88676
|
services: service[];
|
|
88553
88677
|
skuId: guid | null;
|
|
88554
88678
|
skuPartNumber: string | null;
|
|
@@ -89269,6 +89393,10 @@ namespace reference.`microsoft.graph.externalConnectors` {
|
|
|
89269
89393
|
value: string | null;
|
|
89270
89394
|
}
|
|
89271
89395
|
|
|
89396
|
+
@complex model externalItemInformationProtectionLabel {
|
|
89397
|
+
sensitivityLabelId: string | null;
|
|
89398
|
+
}
|
|
89399
|
+
|
|
89272
89400
|
@complex model itemIdResolver extends urlToItemResolverBase {
|
|
89273
89401
|
itemId: string;
|
|
89274
89402
|
urlMatchInfo: urlMatchInfo | null;
|
|
@@ -89380,6 +89508,7 @@ namespace reference.`microsoft.graph.externalConnectors` {
|
|
|
89380
89508
|
@entity model externalItem extends reference.`microsoft.graph`.entity {
|
|
89381
89509
|
acl: acl[] | null;
|
|
89382
89510
|
content: externalItemContent | null;
|
|
89511
|
+
informationProtectionLabel: externalItemInformationProtectionLabel | null;
|
|
89383
89512
|
properties: properties | null;
|
|
89384
89513
|
@contains activities: externalActivity[];
|
|
89385
89514
|
}
|
|
@@ -89739,6 +89868,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
89739
89868
|
@complex model cancelScope {
|
|
89740
89869
|
}
|
|
89741
89870
|
|
|
89871
|
+
@complex model countBasedQuarantineCondition extends quarantineCondition {
|
|
89872
|
+
threshold: int64;
|
|
89873
|
+
}
|
|
89874
|
+
|
|
89742
89875
|
@complex model customTaskExtensionCallbackConfiguration extends reference.`microsoft.graph`.customExtensionCallbackConfiguration {
|
|
89743
89876
|
@references authorizedApps: reference.`microsoft.graph`.application[];
|
|
89744
89877
|
}
|
|
@@ -89778,6 +89911,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
89778
89911
|
valueType: valueType;
|
|
89779
89912
|
}
|
|
89780
89913
|
|
|
89914
|
+
@complex model percentageBasedQuarantineCondition extends quarantineCondition {
|
|
89915
|
+
percentage: int32;
|
|
89916
|
+
}
|
|
89917
|
+
|
|
89781
89918
|
@complex model previewFailedTask {
|
|
89782
89919
|
definitionId: string;
|
|
89783
89920
|
failureReason: string;
|
|
@@ -89793,6 +89930,21 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
89793
89930
|
id: string;
|
|
89794
89931
|
}
|
|
89795
89932
|
|
|
89933
|
+
@abstract
|
|
89934
|
+
@complex model quarantineCondition {
|
|
89935
|
+
}
|
|
89936
|
+
|
|
89937
|
+
@complex model quarantineConfiguration {
|
|
89938
|
+
conditions: quarantineCondition[];
|
|
89939
|
+
matchMode: matchMode;
|
|
89940
|
+
}
|
|
89941
|
+
|
|
89942
|
+
@complex model quarantineDetails {
|
|
89943
|
+
quarantinedDateTime: offsetDateTime | null;
|
|
89944
|
+
quarantineReason: string | null;
|
|
89945
|
+
quarantineType: quarantineType;
|
|
89946
|
+
}
|
|
89947
|
+
|
|
89796
89948
|
@complex model ruleBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
89797
89949
|
rule: string;
|
|
89798
89950
|
}
|
|
@@ -89879,6 +90031,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
89879
90031
|
@complex model workflowExecutionTrigger {
|
|
89880
90032
|
}
|
|
89881
90033
|
|
|
90034
|
+
@complex model workflowSetting {
|
|
90035
|
+
quarantineConfiguration: quarantineConfiguration | null;
|
|
90036
|
+
}
|
|
90037
|
+
|
|
89882
90038
|
@complex model workflowsInsightsByCategory {
|
|
89883
90039
|
failedJoinerRuns: int32;
|
|
89884
90040
|
failedLeaverRuns: int32;
|
|
@@ -89921,6 +90077,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
89921
90077
|
|
|
89922
90078
|
@entity model lifecycleManagementSettings extends reference.`microsoft.graph`.entity {
|
|
89923
90079
|
emailSettings: reference.`microsoft.graph`.emailSettings;
|
|
90080
|
+
quarantineConfiguration: quarantineConfiguration | null;
|
|
89924
90081
|
workflowScheduleIntervalInHours: int32;
|
|
89925
90082
|
}
|
|
89926
90083
|
|
|
@@ -90036,6 +90193,8 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90036
90193
|
deletedDateTime: offsetDateTime | null;
|
|
90037
90194
|
@computed @key id: string;
|
|
90038
90195
|
nextScheduleRunDateTime: offsetDateTime | null;
|
|
90196
|
+
quarantineDetails: quarantineDetails;
|
|
90197
|
+
settings: workflowSetting;
|
|
90039
90198
|
version: int32 | null;
|
|
90040
90199
|
@references executionScope: userProcessingResult[];
|
|
90041
90200
|
|
|
@@ -90073,6 +90232,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90073
90232
|
}
|
|
90074
90233
|
|
|
90075
90234
|
@entity model workflowVersion extends workflowBase {
|
|
90235
|
+
settings: workflowSetting;
|
|
90076
90236
|
@computed @key versionNumber: int32;
|
|
90077
90237
|
}
|
|
90078
90238
|
|
|
@@ -90128,6 +90288,13 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90128
90288
|
unknownFutureValue: 6,
|
|
90129
90289
|
@privatePreview("cancelWorkflows")
|
|
90130
90290
|
canceling: 7,
|
|
90291
|
+
quarantined: 8,
|
|
90292
|
+
}
|
|
90293
|
+
|
|
90294
|
+
enum matchMode {
|
|
90295
|
+
any: 0,
|
|
90296
|
+
all: 1,
|
|
90297
|
+
unknownFutureValue: 2,
|
|
90131
90298
|
}
|
|
90132
90299
|
|
|
90133
90300
|
enum membershipChangeType {
|
|
@@ -90136,6 +90303,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90136
90303
|
unknownFutureValue: 3,
|
|
90137
90304
|
}
|
|
90138
90305
|
|
|
90306
|
+
enum quarantineType {
|
|
90307
|
+
notQuarantined: 0,
|
|
90308
|
+
countBasedThresholdExceeded: 1,
|
|
90309
|
+
percentageBasedThresholdExceeded: 2,
|
|
90310
|
+
multipleConditionsExceeded: 3,
|
|
90311
|
+
unknownFutureValue: 4,
|
|
90312
|
+
}
|
|
90313
|
+
|
|
90139
90314
|
enum valueType {
|
|
90140
90315
|
`enum`: 0,
|
|
90141
90316
|
`string`: 1,
|
|
@@ -92513,7 +92688,8 @@ namespace reference.`microsoft.graph.networkaccess` {
|
|
|
92513
92688
|
enum clientFallbackAction {
|
|
92514
92689
|
bypass: 0,
|
|
92515
92690
|
block: 1,
|
|
92516
|
-
|
|
92691
|
+
default: 2,
|
|
92692
|
+
unknownFutureValue: 3,
|
|
92517
92693
|
}
|
|
92518
92694
|
|
|
92519
92695
|
enum cloudFirewallAction {
|
|
@@ -93286,36 +93462,42 @@ namespace reference.`microsoft.graph.security` {
|
|
|
93286
93462
|
/**
|
|
93287
93463
|
* Audit data for A365 AI Execute Tool events.
|
|
93288
93464
|
*/
|
|
93465
|
+
@open
|
|
93289
93466
|
@complex model a365AiExecuteTool extends auditData {
|
|
93290
93467
|
}
|
|
93291
93468
|
|
|
93292
93469
|
/**
|
|
93293
93470
|
* Audit data for A365 AI Inference Call events.
|
|
93294
93471
|
*/
|
|
93472
|
+
@open
|
|
93295
93473
|
@complex model a365AiInferenceCall extends auditData {
|
|
93296
93474
|
}
|
|
93297
93475
|
|
|
93298
93476
|
/**
|
|
93299
93477
|
* Audit data for A365 AI Invoke Agent events.
|
|
93300
93478
|
*/
|
|
93479
|
+
@open
|
|
93301
93480
|
@complex model a365AiInvokeAgent extends auditData {
|
|
93302
93481
|
}
|
|
93303
93482
|
|
|
93304
93483
|
/**
|
|
93305
93484
|
* Audit data for A365 AI Run Summary events.
|
|
93306
93485
|
*/
|
|
93486
|
+
@open
|
|
93307
93487
|
@complex model a365AiRunSummary extends auditData {
|
|
93308
93488
|
}
|
|
93309
93489
|
|
|
93310
93490
|
/**
|
|
93311
93491
|
* Audit data for A365 Span Outputs events.
|
|
93312
93492
|
*/
|
|
93493
|
+
@open
|
|
93313
93494
|
@complex model a365SpanOutputs extends auditData {
|
|
93314
93495
|
}
|
|
93315
93496
|
|
|
93316
93497
|
/**
|
|
93317
93498
|
* Audit data for AAD Risk Detection events.
|
|
93318
93499
|
*/
|
|
93500
|
+
@open
|
|
93319
93501
|
@complex model aadRiskDetectionAuditRecord extends auditData {
|
|
93320
93502
|
}
|
|
93321
93503
|
|
|
@@ -93325,6 +93507,16 @@ namespace reference.`microsoft.graph.security` {
|
|
|
93325
93507
|
identityProvider: identityProvider;
|
|
93326
93508
|
}
|
|
93327
93509
|
|
|
93510
|
+
@complex model accountEntityMapping extends entityMapping {
|
|
93511
|
+
aadUserIdColumn: string | null;
|
|
93512
|
+
dnsDomainColumn: string | null;
|
|
93513
|
+
nameColumn: string | null;
|
|
93514
|
+
ntDomainColumn: string | null;
|
|
93515
|
+
sidColumn: string | null;
|
|
93516
|
+
upnColumn: string | null;
|
|
93517
|
+
upnSuffixColumn: string | null;
|
|
93518
|
+
}
|
|
93519
|
+
|
|
93328
93520
|
@complex model accountObjectIdAction extends automatedAction {
|
|
93329
93521
|
accountObjectIdColumn: string;
|
|
93330
93522
|
}
|
|
@@ -93370,18 +93562,21 @@ namespace reference.`microsoft.graph.security` {
|
|
|
93370
93562
|
/**
|
|
93371
93563
|
* Audit data for Advanced eDiscovery events.
|
|
93372
93564
|
*/
|
|
93565
|
+
@open
|
|
93373
93566
|
@complex model aedAuditRecord extends auditData {
|
|
93374
93567
|
}
|
|
93375
93568
|
|
|
93376
93569
|
/**
|
|
93377
93570
|
* Audit data for Agent Admin Activity events.
|
|
93378
93571
|
*/
|
|
93572
|
+
@open
|
|
93379
93573
|
@complex model agentAdminActivityRecord extends auditData {
|
|
93380
93574
|
}
|
|
93381
93575
|
|
|
93382
93576
|
/**
|
|
93383
93577
|
* Audit data for Agent Setting Admin Activity events.
|
|
93384
93578
|
*/
|
|
93579
|
+
@open
|
|
93385
93580
|
@complex model agentSettingAdminActivity extends auditData {
|
|
93386
93581
|
}
|
|
93387
93582
|
|
|
@@ -93395,93 +93590,115 @@ namespace reference.`microsoft.graph.security` {
|
|
|
93395
93590
|
/**
|
|
93396
93591
|
* Audit data for AI App Interaction events.
|
|
93397
93592
|
*/
|
|
93593
|
+
@open
|
|
93398
93594
|
@complex model aiAppInteractionAuditRecord extends auditData {
|
|
93399
93595
|
}
|
|
93400
93596
|
|
|
93401
93597
|
/**
|
|
93402
93598
|
* Audit data for AI Execute Tool events.
|
|
93403
93599
|
*/
|
|
93600
|
+
@open
|
|
93404
93601
|
@complex model aiExecuteToolAuditRecord extends auditData {
|
|
93405
93602
|
}
|
|
93406
93603
|
|
|
93407
93604
|
/**
|
|
93408
93605
|
* Audit data for AI Interactions Change Notification events.
|
|
93409
93606
|
*/
|
|
93607
|
+
@open
|
|
93410
93608
|
@complex model aiInteractionsChangeNotificationAuditRecord extends auditData {
|
|
93411
93609
|
}
|
|
93412
93610
|
|
|
93413
93611
|
/**
|
|
93414
93612
|
* Audit data for AI Interactions Export events.
|
|
93415
93613
|
*/
|
|
93614
|
+
@open
|
|
93416
93615
|
@complex model aiInteractionsExportAuditRecord extends auditData {
|
|
93417
93616
|
}
|
|
93418
93617
|
|
|
93419
93618
|
/**
|
|
93420
93619
|
* Audit data for AI Interactions Subscription events.
|
|
93421
93620
|
*/
|
|
93621
|
+
@open
|
|
93422
93622
|
@complex model aiInteractionsSubscriptionAuditRecord extends auditData {
|
|
93423
93623
|
}
|
|
93424
93624
|
|
|
93425
93625
|
/**
|
|
93426
93626
|
* Audit data for AI Invoke Agent events.
|
|
93427
93627
|
*/
|
|
93628
|
+
@open
|
|
93428
93629
|
@complex model aiInvokeAgentAuditRecord extends auditData {
|
|
93429
93630
|
}
|
|
93430
93631
|
|
|
93431
93632
|
/**
|
|
93432
93633
|
* Audit data for AIP Discover events.
|
|
93433
93634
|
*/
|
|
93635
|
+
@open
|
|
93434
93636
|
@complex model aipDiscover extends auditData {
|
|
93435
93637
|
}
|
|
93436
93638
|
|
|
93437
93639
|
/**
|
|
93438
93640
|
* Audit data for AIP File Deleted events.
|
|
93439
93641
|
*/
|
|
93642
|
+
@open
|
|
93440
93643
|
@complex model aipFileDeleted extends auditData {
|
|
93441
93644
|
}
|
|
93442
93645
|
|
|
93443
93646
|
/**
|
|
93444
93647
|
* Audit data for AIP Heart Beat events.
|
|
93445
93648
|
*/
|
|
93649
|
+
@open
|
|
93446
93650
|
@complex model aipHeartBeat extends auditData {
|
|
93447
93651
|
}
|
|
93448
93652
|
|
|
93449
93653
|
/**
|
|
93450
93654
|
* Audit data for AIP Protection Action log request events.
|
|
93451
93655
|
*/
|
|
93656
|
+
@open
|
|
93452
93657
|
@complex model aipProtectionActionLogRequest extends auditData {
|
|
93453
93658
|
}
|
|
93454
93659
|
|
|
93455
93660
|
/**
|
|
93456
93661
|
* Audit data for AIP Scanner Discover Event events.
|
|
93457
93662
|
*/
|
|
93663
|
+
@open
|
|
93458
93664
|
@complex model aipScannerDiscoverEvent extends auditData {
|
|
93459
93665
|
}
|
|
93460
93666
|
|
|
93461
93667
|
/**
|
|
93462
93668
|
* Audit data for AIP Sensitivity Label Action log request events.
|
|
93463
93669
|
*/
|
|
93670
|
+
@open
|
|
93464
93671
|
@complex model aipSensitivityLabelActionLogRequest extends auditData {
|
|
93465
93672
|
}
|
|
93466
93673
|
|
|
93467
93674
|
/**
|
|
93468
93675
|
* Audit data for AIR Admin Action Investigation events.
|
|
93469
93676
|
*/
|
|
93677
|
+
@open
|
|
93470
93678
|
@complex model airAdminActionInvestigationData extends auditData {
|
|
93471
93679
|
}
|
|
93472
93680
|
|
|
93473
93681
|
/**
|
|
93474
93682
|
* Audit data for AIR Investigation events.
|
|
93475
93683
|
*/
|
|
93684
|
+
@open
|
|
93476
93685
|
@complex model airInvestigationData extends auditData {
|
|
93477
93686
|
}
|
|
93478
93687
|
|
|
93479
93688
|
/**
|
|
93480
93689
|
* Audit data for AIR Manual Investigation events.
|
|
93481
93690
|
*/
|
|
93691
|
+
@open
|
|
93482
93692
|
@complex model airManualInvestigationData extends auditData {
|
|
93483
93693
|
}
|
|
93484
93694
|
|
|
93695
|
+
/**
|
|
93696
|
+
* Audit data for AI Span Outputs events.
|
|
93697
|
+
*/
|
|
93698
|
+
@open
|
|
93699
|
+
@complex model aISpanOutputsAuditRecord extends auditData {
|
|
93700
|
+
}
|
|
93701
|
+
|
|
93485
93702
|
@complex model alertComment {
|
|
93486
93703
|
comment: string | null;
|
|
93487
93704
|
createdByDisplayName: string | null;
|
|
@@ -93502,6 +93719,39 @@ namespace reference.`microsoft.graph.security` {
|
|
|
93502
93719
|
verdict: evidenceVerdict;
|
|
93503
93720
|
}
|
|
93504
93721
|
|
|
93722
|
+
/**
|
|
93723
|
+
* Audit data for Alert Submission events.
|
|
93724
|
+
*/
|
|
93725
|
+
@open
|
|
93726
|
+
@complex model alertSubmissionAuditRecord extends auditData {
|
|
93727
|
+
}
|
|
93728
|
+
|
|
93729
|
+
/**
|
|
93730
|
+
* Audit data for Alert Submission Result Detail events.
|
|
93731
|
+
*/
|
|
93732
|
+
@open
|
|
93733
|
+
@complex model alertSubmissionResultDetailAuditRecord extends auditData {
|
|
93734
|
+
}
|
|
93735
|
+
|
|
93736
|
+
@complex model alertTemplate {
|
|
93737
|
+
|
|
93738
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
93739
|
+
category: string | null;
|
|
93740
|
+
customDetails: alertCustomDetails | null;
|
|
93741
|
+
description: string;
|
|
93742
|
+
entityMappings: entityMappingConfiguration;
|
|
93743
|
+
|
|
93744
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
93745
|
+
impactedAssets: impactedAsset[];
|
|
93746
|
+
|
|
93747
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
93748
|
+
mitreTechniques: string[] | null;
|
|
93749
|
+
recommendedActions: string | null;
|
|
93750
|
+
severity: alertSeverity;
|
|
93751
|
+
tactics: mitreTactic[];
|
|
93752
|
+
title: string;
|
|
93753
|
+
}
|
|
93754
|
+
|
|
93505
93755
|
// Warning: Malformed version string '2025-01' detected.
|
|
93506
93756
|
// Warning: Malformed version string '2025-01' detected.
|
|
93507
93757
|
@complex model allowFileResponseAction extends responseAction {
|
|
@@ -93509,6 +93759,10 @@ namespace reference.`microsoft.graph.security` {
|
|
|
93509
93759
|
identifier: fileEntityIdentifier;
|
|
93510
93760
|
}
|
|
93511
93761
|
|
|
93762
|
+
@complex model amazonResourceEntityMapping extends entityMapping {
|
|
93763
|
+
amazonResourceIdColumn: string;
|
|
93764
|
+
}
|
|
93765
|
+
|
|
93512
93766
|
@complex model amazonResourceEvidence extends alertEvidence {
|
|
93513
93767
|
amazonAccountId: string | null;
|
|
93514
93768
|
amazonResourceId: string | null;
|
|
@@ -93608,12 +93862,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
93608
93862
|
/**
|
|
93609
93863
|
* Audit data for Attack Sim Admin events.
|
|
93610
93864
|
*/
|
|
93865
|
+
@open
|
|
93611
93866
|
@complex model attackSimAdminAuditRecord extends auditData {
|
|
93612
93867
|
}
|
|
93613
93868
|
|
|
93614
93869
|
/**
|
|
93615
93870
|
* Audit data for Attack Sim events.
|
|
93616
93871
|
*/
|
|
93872
|
+
@open
|
|
93617
93873
|
@complex model attackSimAuditRecord extends auditData {
|
|
93618
93874
|
}
|
|
93619
93875
|
|
|
@@ -93627,6 +93883,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
93627
93883
|
/**
|
|
93628
93884
|
* Audit data for Audit Config events.
|
|
93629
93885
|
*/
|
|
93886
|
+
@open
|
|
93630
93887
|
@complex model auditConfigAuditRecord extends auditData {
|
|
93631
93888
|
}
|
|
93632
93889
|
|
|
@@ -93635,6 +93892,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
93635
93892
|
*/
|
|
93636
93893
|
@abstract
|
|
93637
93894
|
@complex model auditData {
|
|
93895
|
+
dynamicProperties: auditRecordTypeDictionary | null;
|
|
93638
93896
|
}
|
|
93639
93897
|
|
|
93640
93898
|
@complex model auditInfo {
|
|
@@ -93642,9 +93900,17 @@ namespace reference.`microsoft.graph.security` {
|
|
|
93642
93900
|
dateTime: offsetDateTime;
|
|
93643
93901
|
}
|
|
93644
93902
|
|
|
93903
|
+
/**
|
|
93904
|
+
* A dictionary of name-value pairs for dynamic audit event properties.
|
|
93905
|
+
*/
|
|
93906
|
+
@open
|
|
93907
|
+
@complex model auditRecordTypeDictionary {
|
|
93908
|
+
}
|
|
93909
|
+
|
|
93645
93910
|
/**
|
|
93646
93911
|
* Audit data for Audit Search events.
|
|
93647
93912
|
*/
|
|
93913
|
+
@open
|
|
93648
93914
|
@complex model auditSearchAuditRecord extends auditData {
|
|
93649
93915
|
}
|
|
93650
93916
|
|
|
@@ -93681,39 +93947,56 @@ namespace reference.`microsoft.graph.security` {
|
|
|
93681
93947
|
/**
|
|
93682
93948
|
* Audit data for Azfw Application Rule Aggregation Event events.
|
|
93683
93949
|
*/
|
|
93950
|
+
@open
|
|
93684
93951
|
@complex model azfwApplicationRuleAggregationEventRecord extends auditData {
|
|
93685
93952
|
}
|
|
93686
93953
|
|
|
93687
93954
|
/**
|
|
93688
93955
|
* Audit data for Azfw Dns Query Event events.
|
|
93689
93956
|
*/
|
|
93957
|
+
@open
|
|
93690
93958
|
@complex model azfwDnsQueryEventRecord extends auditData {
|
|
93691
93959
|
}
|
|
93692
93960
|
|
|
93693
93961
|
/**
|
|
93694
93962
|
* Audit data for Azfw Network Rule Event events.
|
|
93695
93963
|
*/
|
|
93964
|
+
@open
|
|
93696
93965
|
@complex model azfwNetworkRuleEventRecord extends auditData {
|
|
93697
93966
|
}
|
|
93698
93967
|
|
|
93699
93968
|
/**
|
|
93700
93969
|
* Audit data for Azure Active Directory Account Logon events.
|
|
93701
93970
|
*/
|
|
93971
|
+
@open
|
|
93702
93972
|
@complex model azureActiveDirectoryAccountLogonAuditRecord extends auditData {
|
|
93703
93973
|
}
|
|
93704
93974
|
|
|
93705
93975
|
/**
|
|
93706
93976
|
* Audit data for Azure Active Directory events.
|
|
93707
93977
|
*/
|
|
93978
|
+
@open
|
|
93708
93979
|
@complex model azureActiveDirectoryAuditRecord extends auditData {
|
|
93709
93980
|
}
|
|
93710
93981
|
|
|
93711
93982
|
/**
|
|
93712
93983
|
* Audit data for Azure Active Directory STS Logon events.
|
|
93713
93984
|
*/
|
|
93985
|
+
@open
|
|
93714
93986
|
@complex model azureActiveDirectoryStsLogonAuditRecord extends auditData {
|
|
93715
93987
|
}
|
|
93716
93988
|
|
|
93989
|
+
/**
|
|
93990
|
+
* Audit data for Azure AI Search Audit events.
|
|
93991
|
+
*/
|
|
93992
|
+
@open
|
|
93993
|
+
@complex model azureAISearchAuditRecord extends auditData {
|
|
93994
|
+
}
|
|
93995
|
+
|
|
93996
|
+
@complex model azureResourceEntityMapping extends entityMapping {
|
|
93997
|
+
resourceIdColumn: string;
|
|
93998
|
+
}
|
|
93999
|
+
|
|
93717
94000
|
@complex model azureResourceEvidence extends alertEvidence {
|
|
93718
94001
|
resourceId: string | null;
|
|
93719
94002
|
resourceName: string | null;
|
|
@@ -93753,66 +94036,77 @@ namespace reference.`microsoft.graph.security` {
|
|
|
93753
94036
|
/**
|
|
93754
94037
|
* Audit data for threat campaign events.
|
|
93755
94038
|
*/
|
|
94039
|
+
@open
|
|
93756
94040
|
@complex model campaignAuditRecord extends auditData {
|
|
93757
94041
|
}
|
|
93758
94042
|
|
|
93759
94043
|
/**
|
|
93760
94044
|
* Audit data for CCRAI Policy Violation events.
|
|
93761
94045
|
*/
|
|
94046
|
+
@open
|
|
93762
94047
|
@complex model ccraiPolicyViolationRecord extends auditData {
|
|
93763
94048
|
}
|
|
93764
94049
|
|
|
93765
94050
|
/**
|
|
93766
94051
|
* Audit data for CDP Classifier Health events.
|
|
93767
94052
|
*/
|
|
94053
|
+
@open
|
|
93768
94054
|
@complex model cdpClassifierHealthRecord extends auditData {
|
|
93769
94055
|
}
|
|
93770
94056
|
|
|
93771
94057
|
/**
|
|
93772
94058
|
* Audit data for CDP Cold Crawl Status events.
|
|
93773
94059
|
*/
|
|
94060
|
+
@open
|
|
93774
94061
|
@complex model cdpColdCrawlStatusRecord extends auditData {
|
|
93775
94062
|
}
|
|
93776
94063
|
|
|
93777
94064
|
/**
|
|
93778
94065
|
* Audit data for CDP Consumption Resource events.
|
|
93779
94066
|
*/
|
|
94067
|
+
@open
|
|
93780
94068
|
@complex model cdpConsumptionResourceRecord extends auditData {
|
|
93781
94069
|
}
|
|
93782
94070
|
|
|
93783
94071
|
/**
|
|
93784
94072
|
* Audit data for CDP Content Explorer Aggregate events.
|
|
93785
94073
|
*/
|
|
94074
|
+
@open
|
|
93786
94075
|
@complex model cdpContentExplorerAggregateRecord extends auditData {
|
|
93787
94076
|
}
|
|
93788
94077
|
|
|
93789
94078
|
/**
|
|
93790
94079
|
* Audit data for Cdpdlmai Interaction Insights events.
|
|
93791
94080
|
*/
|
|
94081
|
+
@open
|
|
93792
94082
|
@complex model cdpdlmaiInteractionInsightsRecord extends auditData {
|
|
93793
94083
|
}
|
|
93794
94084
|
|
|
93795
94085
|
/**
|
|
93796
94086
|
* Audit data for CDP DLP Sensitive Endpoint events.
|
|
93797
94087
|
*/
|
|
94088
|
+
@open
|
|
93798
94089
|
@complex model cdpDlpSensitiveEndpointAuditRecord extends auditData {
|
|
93799
94090
|
}
|
|
93800
94091
|
|
|
93801
94092
|
/**
|
|
93802
94093
|
* Audit data for CDP Log events.
|
|
93803
94094
|
*/
|
|
94095
|
+
@open
|
|
93804
94096
|
@complex model cdpLogRecord extends auditData {
|
|
93805
94097
|
}
|
|
93806
94098
|
|
|
93807
94099
|
/**
|
|
93808
94100
|
* Audit data for CDP OCR Billing events.
|
|
93809
94101
|
*/
|
|
94102
|
+
@open
|
|
93810
94103
|
@complex model cdpOcrBillingRecord extends auditData {
|
|
93811
94104
|
}
|
|
93812
94105
|
|
|
93813
94106
|
/**
|
|
93814
94107
|
* Audit data for CDP Resource Scope Change Event events.
|
|
93815
94108
|
*/
|
|
94109
|
+
@open
|
|
93816
94110
|
@complex model cdpResourceScopeChangeEventRecord extends auditData {
|
|
93817
94111
|
}
|
|
93818
94112
|
|
|
@@ -93822,6 +94116,11 @@ namespace reference.`microsoft.graph.security` {
|
|
|
93822
94116
|
sensitiveTypeId: string;
|
|
93823
94117
|
}
|
|
93824
94118
|
|
|
94119
|
+
@complex model cloudApplicationEntityMapping extends entityMapping {
|
|
94120
|
+
appIdColumn: string | null;
|
|
94121
|
+
nameColumn: string | null;
|
|
94122
|
+
}
|
|
94123
|
+
|
|
93825
94124
|
@complex model cloudApplicationEvidence extends alertEvidence {
|
|
93826
94125
|
appId: int64 | null;
|
|
93827
94126
|
displayName: string | null;
|
|
@@ -93850,18 +94149,21 @@ namespace reference.`microsoft.graph.security` {
|
|
|
93850
94149
|
/**
|
|
93851
94150
|
* Audit data for Cloud Update Device Config events.
|
|
93852
94151
|
*/
|
|
94152
|
+
@open
|
|
93853
94153
|
@complex model cloudUpdateDeviceConfigAuditRecord extends auditData {
|
|
93854
94154
|
}
|
|
93855
94155
|
|
|
93856
94156
|
/**
|
|
93857
94157
|
* Audit data for Cloud Update Profile Config events.
|
|
93858
94158
|
*/
|
|
94159
|
+
@open
|
|
93859
94160
|
@complex model cloudUpdateProfileConfigAuditRecord extends auditData {
|
|
93860
94161
|
}
|
|
93861
94162
|
|
|
93862
94163
|
/**
|
|
93863
94164
|
* Audit data for Cloud Update Tenant Config events.
|
|
93864
94165
|
*/
|
|
94166
|
+
@open
|
|
93865
94167
|
@complex model cloudUpdateTenantConfigAuditRecord extends auditData {
|
|
93866
94168
|
}
|
|
93867
94169
|
|
|
@@ -93878,120 +94180,154 @@ namespace reference.`microsoft.graph.security` {
|
|
|
93878
94180
|
/**
|
|
93879
94181
|
* Audit data for Compliance Connector events.
|
|
93880
94182
|
*/
|
|
94183
|
+
@open
|
|
93881
94184
|
@complex model complianceConnectorAuditRecord extends auditData {
|
|
93882
94185
|
}
|
|
93883
94186
|
|
|
93884
94187
|
/**
|
|
93885
94188
|
* Audit data for Compliance DLM Exchange events.
|
|
93886
94189
|
*/
|
|
94190
|
+
@open
|
|
93887
94191
|
@complex model complianceDLMExchangeAuditRecord extends auditData {
|
|
93888
94192
|
}
|
|
93889
94193
|
|
|
93890
94194
|
/**
|
|
93891
94195
|
* Audit data for Compliance DLM SharePoint events.
|
|
93892
94196
|
*/
|
|
94197
|
+
@open
|
|
93893
94198
|
@complex model complianceDLMSharePointAuditRecord extends auditData {
|
|
93894
94199
|
}
|
|
93895
94200
|
|
|
93896
94201
|
/**
|
|
93897
94202
|
* Audit data for Compliance DLP Applications events.
|
|
93898
94203
|
*/
|
|
94204
|
+
@open
|
|
93899
94205
|
@complex model complianceDLPApplicationsAuditRecord extends auditData {
|
|
93900
94206
|
}
|
|
93901
94207
|
|
|
93902
94208
|
/**
|
|
93903
94209
|
* Audit data for Compliance DLP Applications Classification events.
|
|
93904
94210
|
*/
|
|
94211
|
+
@open
|
|
93905
94212
|
@complex model complianceDLPApplicationsClassificationAuditRecord extends auditData {
|
|
93906
94213
|
}
|
|
93907
94214
|
|
|
93908
94215
|
/**
|
|
93909
94216
|
* Audit data for Compliance DLP Endpoint events.
|
|
93910
94217
|
*/
|
|
94218
|
+
@open
|
|
93911
94219
|
@complex model complianceDLPEndpointAuditRecord extends auditData {
|
|
93912
94220
|
}
|
|
93913
94221
|
|
|
93914
94222
|
/**
|
|
93915
94223
|
* Audit data for Compliance DLP Endpoint Discovery events.
|
|
93916
94224
|
*/
|
|
94225
|
+
@open
|
|
93917
94226
|
@complex model complianceDLPEndpointDiscoveryAuditRecord extends auditData {
|
|
93918
94227
|
}
|
|
93919
94228
|
|
|
93920
94229
|
/**
|
|
93921
94230
|
* Audit data for Compliance DLP Enforcement events.
|
|
93922
94231
|
*/
|
|
94232
|
+
@open
|
|
93923
94233
|
@complex model complianceDLPEnforcementAuditRecord extends auditData {
|
|
93924
94234
|
}
|
|
93925
94235
|
|
|
93926
94236
|
/**
|
|
93927
94237
|
* Audit data for Compliance DLP Exchange events.
|
|
93928
94238
|
*/
|
|
94239
|
+
@open
|
|
93929
94240
|
@complex model complianceDLPExchangeAuditRecord extends auditData {
|
|
93930
94241
|
}
|
|
93931
94242
|
|
|
93932
94243
|
/**
|
|
93933
94244
|
* Audit data for Compliance DLP Exchange Classification events.
|
|
93934
94245
|
*/
|
|
94246
|
+
@open
|
|
93935
94247
|
@complex model complianceDLPExchangeClassificationAuditRecord extends auditData {
|
|
93936
94248
|
}
|
|
93937
94249
|
|
|
93938
94250
|
/**
|
|
93939
94251
|
* Audit data for Compliance DLP Exchange Classification CDP events.
|
|
93940
94252
|
*/
|
|
94253
|
+
@open
|
|
93941
94254
|
@complex model complianceDLPExchangeClassificationCdpRecord extends auditData {
|
|
93942
94255
|
}
|
|
93943
94256
|
|
|
93944
94257
|
/**
|
|
93945
94258
|
* Audit data for Compliance DLP Exchange Discovery events.
|
|
93946
94259
|
*/
|
|
94260
|
+
@open
|
|
93947
94261
|
@complex model complianceDLPExchangeDiscoveryAuditRecord extends auditData {
|
|
93948
94262
|
}
|
|
93949
94263
|
|
|
93950
94264
|
/**
|
|
93951
94265
|
* Audit data for Compliance DLP SharePoint events.
|
|
93952
94266
|
*/
|
|
94267
|
+
@open
|
|
93953
94268
|
@complex model complianceDLPSharePointAuditRecord extends auditData {
|
|
93954
94269
|
}
|
|
93955
94270
|
|
|
93956
94271
|
/**
|
|
93957
94272
|
* Audit data for Compliance DLP SharePoint Classification events.
|
|
93958
94273
|
*/
|
|
94274
|
+
@open
|
|
93959
94275
|
@complex model complianceDLPSharePointClassificationAuditRecord extends auditData {
|
|
93960
94276
|
}
|
|
93961
94277
|
|
|
93962
94278
|
/**
|
|
93963
94279
|
* Audit data for Compliance DLP SharePoint Classification CDP events.
|
|
93964
94280
|
*/
|
|
94281
|
+
@open
|
|
93965
94282
|
@complex model complianceDLPSharePointClassificationCdpRecord extends auditData {
|
|
93966
94283
|
}
|
|
93967
94284
|
|
|
93968
94285
|
/**
|
|
93969
94286
|
* Audit data for Compliance DLP SharePoint Classification Extended events.
|
|
93970
94287
|
*/
|
|
94288
|
+
@open
|
|
93971
94289
|
@complex model complianceDLPSharePointClassificationExtendedAuditRecord extends auditData {
|
|
93972
94290
|
}
|
|
93973
94291
|
|
|
93974
94292
|
/**
|
|
93975
94293
|
* Audit data for Compliance Exchange OCR events.
|
|
93976
94294
|
*/
|
|
94295
|
+
@open
|
|
93977
94296
|
@complex model complianceExchangeOcrAuditRecord extends auditData {
|
|
93978
94297
|
}
|
|
93979
94298
|
|
|
93980
94299
|
/**
|
|
93981
94300
|
* Audit data for Compliance Manager Action events.
|
|
93982
94301
|
*/
|
|
94302
|
+
@open
|
|
93983
94303
|
@complex model complianceManagerActionRecord extends auditData {
|
|
93984
94304
|
}
|
|
93985
94305
|
|
|
94306
|
+
/**
|
|
94307
|
+
* Audit data for Compliance Policy Grading SharePoint events.
|
|
94308
|
+
*/
|
|
94309
|
+
@open
|
|
94310
|
+
@complex model compliancePolicyGradingSharePointAuditRecord extends auditData {
|
|
94311
|
+
}
|
|
94312
|
+
|
|
93986
94313
|
/**
|
|
93987
94314
|
* Audit data for Compliance Settings Change events.
|
|
93988
94315
|
*/
|
|
94316
|
+
@open
|
|
93989
94317
|
@complex model complianceSettingsChangeAuditRecord extends auditData {
|
|
93990
94318
|
}
|
|
93991
94319
|
|
|
94320
|
+
/**
|
|
94321
|
+
* Audit data for Compliance SIT Grading SharePoint events.
|
|
94322
|
+
*/
|
|
94323
|
+
@open
|
|
94324
|
+
@complex model complianceSitGradingSharePointAuditRecord extends auditData {
|
|
94325
|
+
}
|
|
94326
|
+
|
|
93992
94327
|
/**
|
|
93993
94328
|
* Audit data for Compliance Supervision Exchange events.
|
|
93994
94329
|
*/
|
|
94330
|
+
@open
|
|
93995
94331
|
@complex model complianceSupervisionExchangeAuditRecord extends auditData {
|
|
93996
94332
|
}
|
|
93997
94333
|
|
|
@@ -94003,12 +94339,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94003
94339
|
/**
|
|
94004
94340
|
* Audit data for Connected AI App Interaction events.
|
|
94005
94341
|
*/
|
|
94342
|
+
@open
|
|
94006
94343
|
@complex model connectedAIAppInteractionAuditRecord extends auditData {
|
|
94007
94344
|
}
|
|
94008
94345
|
|
|
94009
94346
|
/**
|
|
94010
94347
|
* Audit data for Consumption Resource events.
|
|
94011
94348
|
*/
|
|
94349
|
+
@open
|
|
94012
94350
|
@complex model consumptionResourceAuditRecord extends auditData {
|
|
94013
94351
|
}
|
|
94014
94352
|
|
|
@@ -94048,84 +94386,105 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94048
94386
|
/**
|
|
94049
94387
|
* Audit data for Content Store Meta events.
|
|
94050
94388
|
*/
|
|
94389
|
+
@open
|
|
94051
94390
|
@complex model contentStoreMetadataRecord extends auditData {
|
|
94052
94391
|
}
|
|
94053
94392
|
|
|
94054
94393
|
/**
|
|
94055
94394
|
* Audit data for Copilot Agent Management events.
|
|
94056
94395
|
*/
|
|
94396
|
+
@open
|
|
94057
94397
|
@complex model copilotAgentManagementAuditRecord extends auditData {
|
|
94058
94398
|
}
|
|
94059
94399
|
|
|
94060
94400
|
/**
|
|
94061
94401
|
* Audit data for Copilot for Security Logging events.
|
|
94062
94402
|
*/
|
|
94403
|
+
@open
|
|
94063
94404
|
@complex model copilotForSecurityLoggingAuditRecord extends auditData {
|
|
94064
94405
|
}
|
|
94065
94406
|
|
|
94066
94407
|
/**
|
|
94067
94408
|
* Audit data for Copilot for Security Trigger events.
|
|
94068
94409
|
*/
|
|
94410
|
+
@open
|
|
94069
94411
|
@complex model copilotForSecurityTriggerAuditRecord extends auditData {
|
|
94070
94412
|
}
|
|
94071
94413
|
|
|
94072
94414
|
/**
|
|
94073
94415
|
* Audit data for Copilot Interaction events.
|
|
94074
94416
|
*/
|
|
94417
|
+
@open
|
|
94075
94418
|
@complex model copilotInteractionAuditRecord extends auditData {
|
|
94076
94419
|
}
|
|
94077
94420
|
|
|
94078
94421
|
/**
|
|
94079
94422
|
* Audit data for Copilot Plugin Setting events.
|
|
94080
94423
|
*/
|
|
94424
|
+
@open
|
|
94081
94425
|
@complex model copilotPluginSettingAuditRecord extends auditData {
|
|
94082
94426
|
}
|
|
94083
94427
|
|
|
94084
94428
|
/**
|
|
94085
94429
|
* Audit data for Copilot Prompt Book Setting events.
|
|
94086
94430
|
*/
|
|
94431
|
+
@open
|
|
94087
94432
|
@complex model copilotPromptBookSettingAuditRecord extends auditData {
|
|
94088
94433
|
}
|
|
94089
94434
|
|
|
94435
|
+
/**
|
|
94436
|
+
* Audit data for Copilot Session Sharing events.
|
|
94437
|
+
*/
|
|
94438
|
+
@open
|
|
94439
|
+
@complex model copilotSessionSharingAuditRecord extends auditData {
|
|
94440
|
+
}
|
|
94441
|
+
|
|
94090
94442
|
/**
|
|
94091
94443
|
* Audit data for Copilot Setting events.
|
|
94092
94444
|
*/
|
|
94445
|
+
@open
|
|
94093
94446
|
@complex model copilotSettingAuditRecord extends auditData {
|
|
94094
94447
|
}
|
|
94095
94448
|
|
|
94096
94449
|
/**
|
|
94097
94450
|
* Audit data for Copilot Workspace Setting events.
|
|
94098
94451
|
*/
|
|
94452
|
+
@open
|
|
94099
94453
|
@complex model copilotWorkspaceSettingAuditRecord extends auditData {
|
|
94100
94454
|
}
|
|
94101
94455
|
|
|
94102
94456
|
/**
|
|
94103
94457
|
* Audit data for Core Reporting Settings events.
|
|
94104
94458
|
*/
|
|
94459
|
+
@open
|
|
94105
94460
|
@complex model coreReportingSettingsAuditRecord extends auditData {
|
|
94106
94461
|
}
|
|
94107
94462
|
|
|
94108
94463
|
/**
|
|
94109
94464
|
* Audit data for Cortana Briefing events.
|
|
94110
94465
|
*/
|
|
94466
|
+
@open
|
|
94111
94467
|
@complex model cortanaBriefingAuditRecord extends auditData {
|
|
94112
94468
|
}
|
|
94113
94469
|
|
|
94114
94470
|
/**
|
|
94115
94471
|
* Audit data for Critical Asset Management Classification events.
|
|
94116
94472
|
*/
|
|
94473
|
+
@open
|
|
94117
94474
|
@complex model criticalAssetManagementClassificationRecord extends auditData {
|
|
94118
94475
|
}
|
|
94119
94476
|
|
|
94120
94477
|
/**
|
|
94121
94478
|
* Audit data for CRM Entity Operation events.
|
|
94122
94479
|
*/
|
|
94480
|
+
@open
|
|
94123
94481
|
@complex model crmEntityOperationAuditRecord extends auditData {
|
|
94124
94482
|
}
|
|
94125
94483
|
|
|
94126
94484
|
/**
|
|
94127
94485
|
* Audit data for Cross Tenant Access Policy events.
|
|
94128
94486
|
*/
|
|
94487
|
+
@open
|
|
94129
94488
|
@complex model crossTenantAccessPolicyAuditRecord extends auditData {
|
|
94130
94489
|
}
|
|
94131
94490
|
|
|
@@ -94137,6 +94496,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94137
94496
|
/**
|
|
94138
94497
|
* Audit data for Customer Key Service Encryption events.
|
|
94139
94498
|
*/
|
|
94499
|
+
@open
|
|
94140
94500
|
@complex model customerKeyServiceEncryptionAuditRecord extends auditData {
|
|
94141
94501
|
}
|
|
94142
94502
|
|
|
@@ -94149,36 +94509,42 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94149
94509
|
/**
|
|
94150
94510
|
* Audit data for Data Center Security cmdlet events.
|
|
94151
94511
|
*/
|
|
94512
|
+
@open
|
|
94152
94513
|
@complex model dataCenterSecurityCmdletAuditRecord extends auditData {
|
|
94153
94514
|
}
|
|
94154
94515
|
|
|
94155
94516
|
/**
|
|
94156
94517
|
* Audit data for Data Governance events.
|
|
94157
94518
|
*/
|
|
94519
|
+
@open
|
|
94158
94520
|
@complex model dataGovernanceAuditRecord extends auditData {
|
|
94159
94521
|
}
|
|
94160
94522
|
|
|
94161
94523
|
/**
|
|
94162
94524
|
* Audit data for Data Insights Rest Api events.
|
|
94163
94525
|
*/
|
|
94526
|
+
@open
|
|
94164
94527
|
@complex model dataInsightsRestApiAuditRecord extends auditData {
|
|
94165
94528
|
}
|
|
94166
94529
|
|
|
94167
94530
|
/**
|
|
94168
94531
|
* Audit data for Data Lake Export Operation events.
|
|
94169
94532
|
*/
|
|
94533
|
+
@open
|
|
94170
94534
|
@complex model dataLakeExportOperationAuditRecord extends auditData {
|
|
94171
94535
|
}
|
|
94172
94536
|
|
|
94173
94537
|
/**
|
|
94174
94538
|
* Audit data for Data Security Investigation events.
|
|
94175
94539
|
*/
|
|
94540
|
+
@open
|
|
94176
94541
|
@complex model dataSecurityInvestigationAuditRecord extends auditData {
|
|
94177
94542
|
}
|
|
94178
94543
|
|
|
94179
94544
|
/**
|
|
94180
94545
|
* Audit data for Data Share Operation events.
|
|
94181
94546
|
*/
|
|
94547
|
+
@open
|
|
94182
94548
|
@complex model dataShareOperationAuditRecord extends auditData {
|
|
94183
94549
|
}
|
|
94184
94550
|
|
|
@@ -94192,18 +94558,28 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94192
94558
|
/**
|
|
94193
94559
|
* Audit data for Defender Case Management events.
|
|
94194
94560
|
*/
|
|
94561
|
+
@open
|
|
94195
94562
|
@complex model defenderCaseManagementAuditRecord extends auditData {
|
|
94196
94563
|
}
|
|
94197
94564
|
|
|
94198
94565
|
/**
|
|
94199
94566
|
* Audit data for Defender Preview Features events.
|
|
94200
94567
|
*/
|
|
94568
|
+
@open
|
|
94201
94569
|
@complex model defenderPreviewFeaturesRecord extends auditData {
|
|
94202
94570
|
}
|
|
94203
94571
|
|
|
94572
|
+
/**
|
|
94573
|
+
* Audit data for Defender Security for AI Configuration events.
|
|
94574
|
+
*/
|
|
94575
|
+
@open
|
|
94576
|
+
@complex model defenderSecurityForAIConfigurationAuditRecord extends auditData {
|
|
94577
|
+
}
|
|
94578
|
+
|
|
94204
94579
|
/**
|
|
94205
94580
|
* Audit data for Deploy Feature Activity events.
|
|
94206
94581
|
*/
|
|
94582
|
+
@open
|
|
94207
94583
|
@complex model deployFeatureActivityRecord extends auditData {
|
|
94208
94584
|
}
|
|
94209
94585
|
|
|
@@ -94211,6 +94587,15 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94211
94587
|
deploymentAccessKey: string;
|
|
94212
94588
|
}
|
|
94213
94589
|
|
|
94590
|
+
@complex model detectionAction {
|
|
94591
|
+
alertTemplate: alertTemplate;
|
|
94592
|
+
automatedActions: automatedActionSet | null;
|
|
94593
|
+
organizationalScope: organizationalScope | null;
|
|
94594
|
+
|
|
94595
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
94596
|
+
responseActions: responseAction[] | null;
|
|
94597
|
+
}
|
|
94598
|
+
|
|
94214
94599
|
@graphDeprecated("Tasks_And_Plans")
|
|
94215
94600
|
@complex model detonationBehaviourDetails {
|
|
94216
94601
|
actionStatus: string | null;
|
|
@@ -94258,18 +94643,21 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94258
94643
|
/**
|
|
94259
94644
|
* Audit data for Device Discovery Settings Authenticated Scans events.
|
|
94260
94645
|
*/
|
|
94646
|
+
@open
|
|
94261
94647
|
@complex model deviceDiscoverySettingsAuthenticatedScansRecord extends auditData {
|
|
94262
94648
|
}
|
|
94263
94649
|
|
|
94264
94650
|
/**
|
|
94265
94651
|
* Audit data for Device Discovery Settings Exclusion events.
|
|
94266
94652
|
*/
|
|
94653
|
+
@open
|
|
94267
94654
|
@complex model deviceDiscoverySettingsExclusionRecord extends auditData {
|
|
94268
94655
|
}
|
|
94269
94656
|
|
|
94270
94657
|
/**
|
|
94271
94658
|
* Audit data for Device Discovery Settings events.
|
|
94272
94659
|
*/
|
|
94660
|
+
@open
|
|
94273
94661
|
@complex model deviceDiscoverySettingsRecord extends auditData {
|
|
94274
94662
|
}
|
|
94275
94663
|
|
|
@@ -94315,27 +94703,37 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94315
94703
|
/**
|
|
94316
94704
|
* Audit data for eDiscovery events.
|
|
94317
94705
|
*/
|
|
94706
|
+
@open
|
|
94318
94707
|
@complex model discoveryAuditRecord extends auditData {
|
|
94319
94708
|
}
|
|
94320
94709
|
|
|
94321
94710
|
/**
|
|
94322
94711
|
* Audit data for DLP Endpoint events.
|
|
94323
94712
|
*/
|
|
94713
|
+
@open
|
|
94324
94714
|
@complex model dlpEndpointAuditRecord extends auditData {
|
|
94325
94715
|
}
|
|
94326
94716
|
|
|
94327
94717
|
/**
|
|
94328
94718
|
* Audit data for DLP Import Result events.
|
|
94329
94719
|
*/
|
|
94720
|
+
@open
|
|
94330
94721
|
@complex model dlpImportResultAuditRecord extends auditData {
|
|
94331
94722
|
}
|
|
94332
94723
|
|
|
94333
94724
|
/**
|
|
94334
94725
|
* Audit data for DLP Sensitive Information Type Rule Package cmdlet events.
|
|
94335
94726
|
*/
|
|
94727
|
+
@open
|
|
94336
94728
|
@complex model dlpSensitiveInformationTypeRulePackageCmdletRecord extends auditData {
|
|
94337
94729
|
}
|
|
94338
94730
|
|
|
94731
|
+
@complex model dnsEntityMapping extends entityMapping {
|
|
94732
|
+
domainNameColumn: string;
|
|
94733
|
+
hostIpAddressColumn: string;
|
|
94734
|
+
serverIpColumn: string;
|
|
94735
|
+
}
|
|
94736
|
+
|
|
94339
94737
|
@complex model dnsEvidence extends alertEvidence {
|
|
94340
94738
|
dnsServerIp: ipEvidence | null;
|
|
94341
94739
|
domainName: string | null;
|
|
@@ -94348,6 +94746,34 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94348
94746
|
justificationMessage: string | null;
|
|
94349
94747
|
}
|
|
94350
94748
|
|
|
94749
|
+
/**
|
|
94750
|
+
* Audit data for Dragon Copilot Access events.
|
|
94751
|
+
*/
|
|
94752
|
+
@open
|
|
94753
|
+
@complex model dragonCopilotAccessRecord extends auditData {
|
|
94754
|
+
}
|
|
94755
|
+
|
|
94756
|
+
/**
|
|
94757
|
+
* Audit data for Dragon Copilot Admin events.
|
|
94758
|
+
*/
|
|
94759
|
+
@open
|
|
94760
|
+
@complex model dragonCopilotAdminRecord extends auditData {
|
|
94761
|
+
}
|
|
94762
|
+
|
|
94763
|
+
/**
|
|
94764
|
+
* Audit data for Dragon Copilot Clinical Data events.
|
|
94765
|
+
*/
|
|
94766
|
+
@open
|
|
94767
|
+
@complex model dragonCopilotClinicalDataRecord extends auditData {
|
|
94768
|
+
}
|
|
94769
|
+
|
|
94770
|
+
/**
|
|
94771
|
+
* Audit data for Dragon Copilot Session events.
|
|
94772
|
+
*/
|
|
94773
|
+
@open
|
|
94774
|
+
@complex model dragonCopilotSessionRecord extends auditData {
|
|
94775
|
+
}
|
|
94776
|
+
|
|
94351
94777
|
@open
|
|
94352
94778
|
@complex model dynamicColumnValue {
|
|
94353
94779
|
}
|
|
@@ -94355,12 +94781,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94355
94781
|
/**
|
|
94356
94782
|
* Audit data for Dynamics365 Business Central events.
|
|
94357
94783
|
*/
|
|
94784
|
+
@open
|
|
94358
94785
|
@complex model dynamics365BusinessCentralAuditRecord extends auditData {
|
|
94359
94786
|
}
|
|
94360
94787
|
|
|
94361
94788
|
/**
|
|
94362
94789
|
* Audit data for EHR Connector events.
|
|
94363
94790
|
*/
|
|
94791
|
+
@open
|
|
94364
94792
|
@complex model ehrConnectorAuditBaseRecord extends auditData {
|
|
94365
94793
|
}
|
|
94366
94794
|
|
|
@@ -94379,6 +94807,37 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94379
94807
|
@complex model enableUserIncidentTaskResponseAction extends incidentTaskResponseAction {
|
|
94380
94808
|
}
|
|
94381
94809
|
|
|
94810
|
+
@abstract
|
|
94811
|
+
@complex model entityMapping {
|
|
94812
|
+
}
|
|
94813
|
+
|
|
94814
|
+
@complex model entityMappingConfiguration {
|
|
94815
|
+
accounts: accountEntityMapping[];
|
|
94816
|
+
amazonResources: amazonResourceEntityMapping[];
|
|
94817
|
+
azureResources: azureResourceEntityMapping[];
|
|
94818
|
+
cloudApplications: cloudApplicationEntityMapping[];
|
|
94819
|
+
dns: dnsEntityMapping[];
|
|
94820
|
+
files: fileEntityMapping[];
|
|
94821
|
+
googleCloudResources: googleCloudResourceEntityMapping[];
|
|
94822
|
+
hosts: hostEntityMapping[];
|
|
94823
|
+
ips: ipEntityMapping[];
|
|
94824
|
+
mailboxes: mailboxEntityMapping[];
|
|
94825
|
+
mailClusters: mailClusterEntityMapping[];
|
|
94826
|
+
mailMessages: mailMessageEntityMapping[];
|
|
94827
|
+
oAuthApplications: oAuthApplicationEntityMapping[];
|
|
94828
|
+
processes: processEntityMapping[];
|
|
94829
|
+
registryValues: registryValueEntityMapping[];
|
|
94830
|
+
securityGroups: securityGroupEntityMapping[];
|
|
94831
|
+
urls: urlEntityMapping[];
|
|
94832
|
+
}
|
|
94833
|
+
|
|
94834
|
+
/**
|
|
94835
|
+
* Audit data for EOP Submission Feed Entity events.
|
|
94836
|
+
*/
|
|
94837
|
+
@open
|
|
94838
|
+
@complex model eopSubmissionFeedEntityAuditRecord extends auditData {
|
|
94839
|
+
}
|
|
94840
|
+
|
|
94382
94841
|
@complex model eventPropagationResult {
|
|
94383
94842
|
location: string | null;
|
|
94384
94843
|
serviceName: string | null;
|
|
@@ -94394,30 +94853,35 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94394
94853
|
/**
|
|
94395
94854
|
* Audit data for Exchange Admin events.
|
|
94396
94855
|
*/
|
|
94856
|
+
@open
|
|
94397
94857
|
@complex model exchangeAdminAuditRecord extends auditData {
|
|
94398
94858
|
}
|
|
94399
94859
|
|
|
94400
94860
|
/**
|
|
94401
94861
|
* Audit data for Exchange Aggregated Mailbox events.
|
|
94402
94862
|
*/
|
|
94863
|
+
@open
|
|
94403
94864
|
@complex model exchangeAggregatedMailboxAuditRecord extends auditData {
|
|
94404
94865
|
}
|
|
94405
94866
|
|
|
94406
94867
|
/**
|
|
94407
94868
|
* Audit data for Exchange Aggregated Operation events.
|
|
94408
94869
|
*/
|
|
94870
|
+
@open
|
|
94409
94871
|
@complex model exchangeAggregatedOperationRecord extends auditData {
|
|
94410
94872
|
}
|
|
94411
94873
|
|
|
94412
94874
|
/**
|
|
94413
94875
|
* Audit data for Exchange Mailbox Audit Group events.
|
|
94414
94876
|
*/
|
|
94877
|
+
@open
|
|
94415
94878
|
@complex model exchangeMailboxAuditGroupRecord extends auditData {
|
|
94416
94879
|
}
|
|
94417
94880
|
|
|
94418
94881
|
/**
|
|
94419
94882
|
* Audit data for Exchange Mailbox events.
|
|
94420
94883
|
*/
|
|
94884
|
+
@open
|
|
94421
94885
|
@complex model exchangeMailboxAuditRecord extends auditData {
|
|
94422
94886
|
}
|
|
94423
94887
|
|
|
@@ -94430,9 +94894,17 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94430
94894
|
/**
|
|
94431
94895
|
* Audit data for Microsoft Fabric events.
|
|
94432
94896
|
*/
|
|
94897
|
+
@open
|
|
94433
94898
|
@complex model fabricAuditRecord extends auditData {
|
|
94434
94899
|
}
|
|
94435
94900
|
|
|
94901
|
+
/**
|
|
94902
|
+
* Audit data for Fabric Policy events.
|
|
94903
|
+
*/
|
|
94904
|
+
@open
|
|
94905
|
+
@complex model fabricPolicyRecord extends auditData {
|
|
94906
|
+
}
|
|
94907
|
+
|
|
94436
94908
|
@complex model fileAction extends automatedAction {
|
|
94437
94909
|
deviceGroupNames: string[] | null;
|
|
94438
94910
|
sha1Column: string | null;
|
|
@@ -94452,6 +94924,12 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94452
94924
|
signer: string | null;
|
|
94453
94925
|
}
|
|
94454
94926
|
|
|
94927
|
+
@complex model fileEntityMapping extends entityMapping {
|
|
94928
|
+
nameColumn: string | null;
|
|
94929
|
+
sha1Column: string | null;
|
|
94930
|
+
sha256Column: string | null;
|
|
94931
|
+
}
|
|
94932
|
+
|
|
94455
94933
|
@complex model fileEvidence extends alertEvidence {
|
|
94456
94934
|
detectionStatus: detectionStatus | null;
|
|
94457
94935
|
fileDetails: fileDetails | null;
|
|
@@ -94541,6 +95019,10 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94541
95019
|
webUrl: string | null;
|
|
94542
95020
|
}
|
|
94543
95021
|
|
|
95022
|
+
@complex model googleCloudResourceEntityMapping extends entityMapping {
|
|
95023
|
+
fullResourceNameColumn: string;
|
|
95024
|
+
}
|
|
95025
|
+
|
|
94544
95026
|
@complex model googleCloudResourceEvidence extends alertEvidence {
|
|
94545
95027
|
fullResourceName: string | null;
|
|
94546
95028
|
location: string | null;
|
|
@@ -94564,15 +95046,25 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94564
95046
|
/**
|
|
94565
95047
|
* Audit data for Healthcare Signal events.
|
|
94566
95048
|
*/
|
|
95049
|
+
@open
|
|
94567
95050
|
@complex model healthcareSignalRecord extends auditData {
|
|
94568
95051
|
}
|
|
94569
95052
|
|
|
94570
95053
|
/**
|
|
94571
95054
|
* Audit data for Hosted RPA events.
|
|
94572
95055
|
*/
|
|
95056
|
+
@open
|
|
94573
95057
|
@complex model hostedRpaAuditRecord extends auditData {
|
|
94574
95058
|
}
|
|
94575
95059
|
|
|
95060
|
+
@complex model hostEntityMapping extends entityMapping {
|
|
95061
|
+
deviceIdColumn: string | null;
|
|
95062
|
+
dnsDomainColumn: string | null;
|
|
95063
|
+
nameColumn: string | null;
|
|
95064
|
+
netBiosNameColumn: string | null;
|
|
95065
|
+
ntDomainColumn: string | null;
|
|
95066
|
+
}
|
|
95067
|
+
|
|
94576
95068
|
@complex model hostLogonSessionEvidence extends alertEvidence {
|
|
94577
95069
|
account: userEvidence | null;
|
|
94578
95070
|
endUtcDateTime: offsetDateTime | null;
|
|
@@ -94612,6 +95104,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94612
95104
|
/**
|
|
94613
95105
|
* Audit data for HR Signal events.
|
|
94614
95106
|
*/
|
|
95107
|
+
@open
|
|
94615
95108
|
@complex model hrSignalAuditRecord extends auditData {
|
|
94616
95109
|
}
|
|
94617
95110
|
|
|
@@ -94676,6 +95169,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94676
95169
|
/**
|
|
94677
95170
|
* Audit data for Hygiene Event events.
|
|
94678
95171
|
*/
|
|
95172
|
+
@open
|
|
94679
95173
|
@complex model hygieneEventRecord extends auditData {
|
|
94680
95174
|
}
|
|
94681
95175
|
|
|
@@ -94716,6 +95210,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94716
95210
|
/**
|
|
94717
95211
|
* Audit data for Information Barrier Policy Application events.
|
|
94718
95212
|
*/
|
|
95213
|
+
@open
|
|
94719
95214
|
@complex model informationBarrierPolicyApplicationAuditRecord extends auditData {
|
|
94720
95215
|
}
|
|
94721
95216
|
|
|
@@ -94726,6 +95221,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94726
95221
|
/**
|
|
94727
95222
|
* Audit data for Information Worker Protection events.
|
|
94728
95223
|
*/
|
|
95224
|
+
@open
|
|
94729
95225
|
@complex model informationWorkerProtectionAuditRecord extends auditData {
|
|
94730
95226
|
}
|
|
94731
95227
|
|
|
@@ -94738,24 +95234,28 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94738
95234
|
/**
|
|
94739
95235
|
* Audit data for Insider Risk Scoped User Insights events.
|
|
94740
95236
|
*/
|
|
95237
|
+
@open
|
|
94741
95238
|
@complex model insiderRiskScopedUserInsightsRecord extends auditData {
|
|
94742
95239
|
}
|
|
94743
95240
|
|
|
94744
95241
|
/**
|
|
94745
95242
|
* Audit data for Insider Risk Scoped Users events.
|
|
94746
95243
|
*/
|
|
95244
|
+
@open
|
|
94747
95245
|
@complex model insiderRiskScopedUsersRecord extends auditData {
|
|
94748
95246
|
}
|
|
94749
95247
|
|
|
94750
95248
|
/**
|
|
94751
95249
|
* Audit data for Integrated Apps App Admin Activity events.
|
|
94752
95250
|
*/
|
|
95251
|
+
@open
|
|
94753
95252
|
@complex model integratedAppsAppAdminActivityAuditRecord extends auditData {
|
|
94754
95253
|
}
|
|
94755
95254
|
|
|
94756
95255
|
/**
|
|
94757
95256
|
* Audit data for Integrated Apps App Settings Admin Activity events.
|
|
94758
95257
|
*/
|
|
95258
|
+
@open
|
|
94759
95259
|
@complex model integratedAppsAppSettingsAdminActivityAuditRecord extends auditData {
|
|
94760
95260
|
}
|
|
94761
95261
|
|
|
@@ -94800,6 +95300,11 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94800
95300
|
zone: string | null;
|
|
94801
95301
|
}
|
|
94802
95302
|
|
|
95303
|
+
@complex model ipEntityMapping extends entityMapping {
|
|
95304
|
+
addressColumn: string | null;
|
|
95305
|
+
scopeColumn: string | null;
|
|
95306
|
+
}
|
|
95307
|
+
|
|
94803
95308
|
@complex model ipEvidence extends alertEvidence {
|
|
94804
95309
|
countryLetterCode: string | null;
|
|
94805
95310
|
ipAddress: string | null;
|
|
@@ -94810,12 +95315,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94810
95315
|
/**
|
|
94811
95316
|
* Audit data for IRM Activity Audit Trail events.
|
|
94812
95317
|
*/
|
|
95318
|
+
@open
|
|
94813
95319
|
@complex model irmActivityAuditTrailRecord extends auditData {
|
|
94814
95320
|
}
|
|
94815
95321
|
|
|
94816
95322
|
/**
|
|
94817
95323
|
* Audit data for IRM User Defined Detection events.
|
|
94818
95324
|
*/
|
|
95325
|
+
@open
|
|
94819
95326
|
@complex model irmUserDefinedDetectionRecord extends auditData {
|
|
94820
95327
|
}
|
|
94821
95328
|
|
|
@@ -94841,6 +95348,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94841
95348
|
/**
|
|
94842
95349
|
* Audit data for Microsoft Kaizala events.
|
|
94843
95350
|
*/
|
|
95351
|
+
@open
|
|
94844
95352
|
@complex model kaizalaAuditRecord extends auditData {
|
|
94845
95353
|
}
|
|
94846
95354
|
|
|
@@ -94916,12 +95424,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94916
95424
|
/**
|
|
94917
95425
|
* Audit data for Label Analytics Aggregate events.
|
|
94918
95426
|
*/
|
|
95427
|
+
@open
|
|
94919
95428
|
@complex model labelAnalyticsAggregateAuditRecord extends auditData {
|
|
94920
95429
|
}
|
|
94921
95430
|
|
|
94922
95431
|
/**
|
|
94923
95432
|
* Audit data for Label Content Explorer events.
|
|
94924
95433
|
*/
|
|
95434
|
+
@open
|
|
94925
95435
|
@complex model labelContentExplorerAuditRecord extends auditData {
|
|
94926
95436
|
}
|
|
94927
95437
|
|
|
@@ -94935,6 +95445,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94935
95445
|
/**
|
|
94936
95446
|
* Audit data for Large Content Meta events.
|
|
94937
95447
|
*/
|
|
95448
|
+
@open
|
|
94938
95449
|
@complex model largeContentMetadataAuditRecord extends auditData {
|
|
94939
95450
|
}
|
|
94940
95451
|
|
|
@@ -94946,24 +95457,28 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94946
95457
|
/**
|
|
94947
95458
|
* Audit data for M365 Compliance Connector events.
|
|
94948
95459
|
*/
|
|
95460
|
+
@open
|
|
94949
95461
|
@complex model m365ComplianceConnectorAuditRecord extends auditData {
|
|
94950
95462
|
}
|
|
94951
95463
|
|
|
94952
95464
|
/**
|
|
94953
95465
|
* Audit data for M365daad events.
|
|
94954
95466
|
*/
|
|
95467
|
+
@open
|
|
94955
95468
|
@complex model m365daadAuditRecord extends auditData {
|
|
94956
95469
|
}
|
|
94957
95470
|
|
|
94958
95471
|
/**
|
|
94959
95472
|
* Audit data for M365odsp Asset Meta events.
|
|
94960
95473
|
*/
|
|
95474
|
+
@open
|
|
94961
95475
|
@complex model m365odspAssetMetadataRecord extends auditData {
|
|
94962
95476
|
}
|
|
94963
95477
|
|
|
94964
95478
|
/**
|
|
94965
95479
|
* Audit data for M365 Search Sections events.
|
|
94966
95480
|
*/
|
|
95481
|
+
@open
|
|
94967
95482
|
@complex model m365SearchSectionsRecord extends auditData {
|
|
94968
95483
|
}
|
|
94969
95484
|
|
|
@@ -94976,6 +95491,10 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94976
95491
|
upn: string | null;
|
|
94977
95492
|
}
|
|
94978
95493
|
|
|
95494
|
+
@complex model mailboxEntityMapping extends entityMapping {
|
|
95495
|
+
primaryAddressColumn: string;
|
|
95496
|
+
}
|
|
95497
|
+
|
|
94979
95498
|
@complex model mailboxEvidence extends alertEvidence {
|
|
94980
95499
|
displayName: string | null;
|
|
94981
95500
|
primaryAddress: string | null;
|
|
@@ -94983,6 +95502,11 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94983
95502
|
userAccount: userAccount | null;
|
|
94984
95503
|
}
|
|
94985
95504
|
|
|
95505
|
+
@complex model mailClusterEntityMapping extends entityMapping {
|
|
95506
|
+
queryColumn: string;
|
|
95507
|
+
sourceColumn: string;
|
|
95508
|
+
}
|
|
95509
|
+
|
|
94986
95510
|
@complex model mailClusterEvidence extends alertEvidence {
|
|
94987
95511
|
clusterBy: string | null;
|
|
94988
95512
|
clusterByValue: string | null;
|
|
@@ -94992,9 +95516,17 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94992
95516
|
urn: string | null;
|
|
94993
95517
|
}
|
|
94994
95518
|
|
|
95519
|
+
@complex model mailMessageEntityMapping extends entityMapping {
|
|
95520
|
+
networkMessageIdColumn: string;
|
|
95521
|
+
recipientColumn: string;
|
|
95522
|
+
senderColumn: string;
|
|
95523
|
+
subjectColumn: string;
|
|
95524
|
+
}
|
|
95525
|
+
|
|
94995
95526
|
/**
|
|
94996
95527
|
* Audit data for Mail Submission events.
|
|
94997
95528
|
*/
|
|
95529
|
+
@open
|
|
94998
95530
|
@complex model mailSubmissionData extends auditData {
|
|
94999
95531
|
}
|
|
95000
95532
|
|
|
@@ -95008,36 +95540,42 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95008
95540
|
/**
|
|
95009
95541
|
* Audit data for Managed Services events.
|
|
95010
95542
|
*/
|
|
95543
|
+
@open
|
|
95011
95544
|
@complex model managedServicesAuditRecord extends auditData {
|
|
95012
95545
|
}
|
|
95013
95546
|
|
|
95014
95547
|
/**
|
|
95015
95548
|
* Audit data for Managed Tenants events.
|
|
95016
95549
|
*/
|
|
95550
|
+
@open
|
|
95017
95551
|
@complex model managedTenantsAuditRecord extends auditData {
|
|
95018
95552
|
}
|
|
95019
95553
|
|
|
95020
95554
|
/**
|
|
95021
95555
|
* Audit data for MAPG Alerts events.
|
|
95022
95556
|
*/
|
|
95557
|
+
@open
|
|
95023
95558
|
@complex model mapgAlertsAuditRecord extends auditData {
|
|
95024
95559
|
}
|
|
95025
95560
|
|
|
95026
95561
|
/**
|
|
95027
95562
|
* Audit data for MAPG Onboard events.
|
|
95028
95563
|
*/
|
|
95564
|
+
@open
|
|
95029
95565
|
@complex model mapgOnboardAuditRecord extends auditData {
|
|
95030
95566
|
}
|
|
95031
95567
|
|
|
95032
95568
|
/**
|
|
95033
95569
|
* Audit data for MAPG Policy events.
|
|
95034
95570
|
*/
|
|
95571
|
+
@open
|
|
95035
95572
|
@complex model mapgPolicyAuditRecord extends auditData {
|
|
95036
95573
|
}
|
|
95037
95574
|
|
|
95038
95575
|
/**
|
|
95039
95576
|
* Audit data for MAPG Remediation events.
|
|
95040
95577
|
*/
|
|
95578
|
+
@open
|
|
95041
95579
|
@complex model mapgRemediationAuditRecord extends auditData {
|
|
95042
95580
|
}
|
|
95043
95581
|
|
|
@@ -95054,36 +95592,49 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95054
95592
|
/**
|
|
95055
95593
|
* Audit data for MCAS Alerts events.
|
|
95056
95594
|
*/
|
|
95595
|
+
@open
|
|
95057
95596
|
@complex model mcasAlertsAuditRecord extends auditData {
|
|
95058
95597
|
}
|
|
95059
95598
|
|
|
95060
95599
|
/**
|
|
95061
95600
|
* Audit data for MDA events.
|
|
95062
95601
|
*/
|
|
95602
|
+
@open
|
|
95063
95603
|
@complex model mdaAuditRecord extends auditData {
|
|
95064
95604
|
}
|
|
95065
95605
|
|
|
95066
95606
|
/**
|
|
95067
95607
|
* Audit data for MDA Data Security Signal events.
|
|
95068
95608
|
*/
|
|
95609
|
+
@open
|
|
95069
95610
|
@complex model mdaDataSecuritySignalRecord extends auditData {
|
|
95070
95611
|
}
|
|
95071
95612
|
|
|
95613
|
+
/**
|
|
95614
|
+
* Audit data for MDASH events.
|
|
95615
|
+
*/
|
|
95616
|
+
@open
|
|
95617
|
+
@complex model mDASHAuditRecord extends auditData {
|
|
95618
|
+
}
|
|
95619
|
+
|
|
95072
95620
|
/**
|
|
95073
95621
|
* Audit data for MDATP events.
|
|
95074
95622
|
*/
|
|
95623
|
+
@open
|
|
95075
95624
|
@complex model mdatpAuditRecord extends auditData {
|
|
95076
95625
|
}
|
|
95077
95626
|
|
|
95078
95627
|
/**
|
|
95079
95628
|
* Audit data for MDC Events events.
|
|
95080
95629
|
*/
|
|
95630
|
+
@open
|
|
95081
95631
|
@complex model mdcEventsRecord extends auditData {
|
|
95082
95632
|
}
|
|
95083
95633
|
|
|
95084
95634
|
/**
|
|
95085
95635
|
* Audit data for MDI events.
|
|
95086
95636
|
*/
|
|
95637
|
+
@open
|
|
95087
95638
|
@complex model mdiAuditRecord extends auditData {
|
|
95088
95639
|
}
|
|
95089
95640
|
|
|
@@ -95094,6 +95645,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95094
95645
|
/**
|
|
95095
95646
|
* Audit data for Mesh Worlds events.
|
|
95096
95647
|
*/
|
|
95648
|
+
@open
|
|
95097
95649
|
@complex model meshWorldsAuditRecord extends auditData {
|
|
95098
95650
|
}
|
|
95099
95651
|
|
|
@@ -95105,153 +95657,185 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95105
95657
|
/**
|
|
95106
95658
|
* Audit data for Microsoft365 Backup Backup Item events.
|
|
95107
95659
|
*/
|
|
95660
|
+
@open
|
|
95108
95661
|
@complex model microsoft365BackupBackupItemAuditRecord extends auditData {
|
|
95109
95662
|
}
|
|
95110
95663
|
|
|
95111
95664
|
/**
|
|
95112
95665
|
* Audit data for Microsoft365 Backup Backup Policy events.
|
|
95113
95666
|
*/
|
|
95667
|
+
@open
|
|
95114
95668
|
@complex model microsoft365BackupBackupPolicyAuditRecord extends auditData {
|
|
95115
95669
|
}
|
|
95116
95670
|
|
|
95117
95671
|
/**
|
|
95118
95672
|
* Audit data for Microsoft365 Backup Granular Browse Task events.
|
|
95119
95673
|
*/
|
|
95674
|
+
@open
|
|
95120
95675
|
@complex model microsoft365BackupGranularBrowseTaskAuditRecord extends auditData {
|
|
95121
95676
|
}
|
|
95122
95677
|
|
|
95123
95678
|
/**
|
|
95124
95679
|
* Audit data for Microsoft365 Backup Restore Item events.
|
|
95125
95680
|
*/
|
|
95681
|
+
@open
|
|
95126
95682
|
@complex model microsoft365BackupRestoreItemAuditRecord extends auditData {
|
|
95127
95683
|
}
|
|
95128
95684
|
|
|
95129
95685
|
/**
|
|
95130
95686
|
* Audit data for Microsoft365 Backup Restore Task events.
|
|
95131
95687
|
*/
|
|
95688
|
+
@open
|
|
95132
95689
|
@complex model microsoft365BackupRestoreTaskAuditRecord extends auditData {
|
|
95133
95690
|
}
|
|
95134
95691
|
|
|
95135
95692
|
/**
|
|
95136
95693
|
* Audit data for Microsoft365 Copilot Scheduled Prompt events.
|
|
95137
95694
|
*/
|
|
95695
|
+
@open
|
|
95138
95696
|
@complex model microsoft365CopilotScheduledPromptAuditRecord extends auditData {
|
|
95139
95697
|
}
|
|
95140
95698
|
|
|
95141
95699
|
/**
|
|
95142
95700
|
* Audit data for Microsoft Defender Experts XDR events.
|
|
95143
95701
|
*/
|
|
95702
|
+
@open
|
|
95144
95703
|
@complex model microsoftDefenderExpertsXDRAuditRecord extends auditData {
|
|
95145
95704
|
}
|
|
95146
95705
|
|
|
95147
95706
|
/**
|
|
95148
95707
|
* Audit data for Microsoft Flow events.
|
|
95149
95708
|
*/
|
|
95709
|
+
@open
|
|
95150
95710
|
@complex model microsoftFlowAuditRecord extends auditData {
|
|
95151
95711
|
}
|
|
95152
95712
|
|
|
95153
95713
|
/**
|
|
95154
95714
|
* Audit data for Microsoft Forms events.
|
|
95155
95715
|
*/
|
|
95716
|
+
@open
|
|
95156
95717
|
@complex model microsoftFormsAuditRecord extends auditData {
|
|
95157
95718
|
}
|
|
95158
95719
|
|
|
95159
95720
|
/**
|
|
95160
95721
|
* Audit data for Microsoft Graph Data Connect Consent events.
|
|
95161
95722
|
*/
|
|
95723
|
+
@open
|
|
95162
95724
|
@complex model microsoftGraphDataConnectConsent extends auditData {
|
|
95163
95725
|
}
|
|
95164
95726
|
|
|
95165
95727
|
/**
|
|
95166
95728
|
* Audit data for Microsoft Graph Data Connect Operation events.
|
|
95167
95729
|
*/
|
|
95730
|
+
@open
|
|
95168
95731
|
@complex model microsoftGraphDataConnectOperation extends auditData {
|
|
95169
95732
|
}
|
|
95170
95733
|
|
|
95171
95734
|
/**
|
|
95172
95735
|
* Audit data for Microsoft Purview Data Catalog Operation events.
|
|
95173
95736
|
*/
|
|
95737
|
+
@open
|
|
95174
95738
|
@complex model microsoftPurviewDataCatalogOperationRecord extends auditData {
|
|
95175
95739
|
}
|
|
95176
95740
|
|
|
95177
95741
|
/**
|
|
95178
95742
|
* Audit data for Microsoft Purview Data Map Operation events.
|
|
95179
95743
|
*/
|
|
95744
|
+
@open
|
|
95180
95745
|
@complex model microsoftPurviewDataMapOperationRecord extends auditData {
|
|
95181
95746
|
}
|
|
95182
95747
|
|
|
95183
95748
|
/**
|
|
95184
95749
|
* Audit data for Microsoft Purview Metadata Policy Operation events.
|
|
95185
95750
|
*/
|
|
95751
|
+
@open
|
|
95186
95752
|
@complex model microsoftPurviewMetadataPolicyOperationRecord extends auditData {
|
|
95187
95753
|
}
|
|
95188
95754
|
|
|
95189
95755
|
/**
|
|
95190
95756
|
* Audit data for Microsoft Purview Policy Operation events.
|
|
95191
95757
|
*/
|
|
95758
|
+
@open
|
|
95192
95759
|
@complex model microsoftPurviewPolicyOperationRecord extends auditData {
|
|
95193
95760
|
}
|
|
95194
95761
|
|
|
95195
95762
|
/**
|
|
95196
95763
|
* Audit data for Microsoft Purview Privacy Audit Event events.
|
|
95197
95764
|
*/
|
|
95765
|
+
@open
|
|
95198
95766
|
@complex model microsoftPurviewPrivacyAuditEvent extends auditData {
|
|
95199
95767
|
}
|
|
95200
95768
|
|
|
95201
95769
|
/**
|
|
95202
95770
|
* Audit data for Microsoft Purview Unified Catalog Operation events.
|
|
95203
95771
|
*/
|
|
95772
|
+
@open
|
|
95204
95773
|
@complex model microsoftPurviewUnifiedCatalogOperationRecord extends auditData {
|
|
95205
95774
|
}
|
|
95206
95775
|
|
|
95207
95776
|
/**
|
|
95208
95777
|
* Audit data for Microsoft Stream events.
|
|
95209
95778
|
*/
|
|
95779
|
+
@open
|
|
95210
95780
|
@complex model microsoftStreamAuditRecord extends auditData {
|
|
95211
95781
|
}
|
|
95212
95782
|
|
|
95213
95783
|
/**
|
|
95214
95784
|
* Audit data for Microsoft Teams Admin events.
|
|
95215
95785
|
*/
|
|
95786
|
+
@open
|
|
95216
95787
|
@complex model microsoftTeamsAdminAuditRecord extends auditData {
|
|
95217
95788
|
}
|
|
95218
95789
|
|
|
95219
95790
|
/**
|
|
95220
95791
|
* Audit data for Microsoft Teams Analytics events.
|
|
95221
95792
|
*/
|
|
95793
|
+
@open
|
|
95222
95794
|
@complex model microsoftTeamsAnalyticsAuditRecord extends auditData {
|
|
95223
95795
|
}
|
|
95224
95796
|
|
|
95225
95797
|
/**
|
|
95226
95798
|
* Audit data for Microsoft Teams events.
|
|
95227
95799
|
*/
|
|
95800
|
+
@open
|
|
95228
95801
|
@complex model microsoftTeamsAuditRecord extends auditData {
|
|
95229
95802
|
}
|
|
95230
95803
|
|
|
95231
95804
|
/**
|
|
95232
95805
|
* Audit data for Microsoft Teams Device events.
|
|
95233
95806
|
*/
|
|
95807
|
+
@open
|
|
95234
95808
|
@complex model microsoftTeamsDeviceAuditRecord extends auditData {
|
|
95235
95809
|
}
|
|
95236
95810
|
|
|
95237
95811
|
/**
|
|
95238
95812
|
* Audit data for Microsoft Teams Retention Label Action events.
|
|
95239
95813
|
*/
|
|
95814
|
+
@open
|
|
95240
95815
|
@complex model microsoftTeamsRetentionLabelActionAuditRecord extends auditData {
|
|
95241
95816
|
}
|
|
95242
95817
|
|
|
95243
95818
|
/**
|
|
95244
95819
|
* Audit data for Microsoft Teams Sensitivity Label Action events.
|
|
95245
95820
|
*/
|
|
95821
|
+
@open
|
|
95246
95822
|
@complex model microsoftTeamsSensitivityLabelActionAuditRecord extends auditData {
|
|
95247
95823
|
}
|
|
95248
95824
|
|
|
95249
95825
|
/**
|
|
95250
95826
|
* Audit data for Microsoft Teams Shifts events.
|
|
95251
95827
|
*/
|
|
95828
|
+
@open
|
|
95252
95829
|
@complex model microsoftTeamsShiftsAuditRecord extends auditData {
|
|
95253
95830
|
}
|
|
95254
95831
|
|
|
95832
|
+
/**
|
|
95833
|
+
* Audit data for Microsoft Teams User Concern events.
|
|
95834
|
+
*/
|
|
95835
|
+
@open
|
|
95836
|
+
@complex model microsoftTeamsUserConcernAuditRecord extends auditData {
|
|
95837
|
+
}
|
|
95838
|
+
|
|
95255
95839
|
@complex model migrateSensorsResult {
|
|
95256
95840
|
failedMigrationSensorIds: string[] | null;
|
|
95257
95841
|
successfulMigrationSensorIds: string[] | null;
|
|
@@ -95260,60 +95844,70 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95260
95844
|
/**
|
|
95261
95845
|
* Audit data for MIP Auto Label Exchange Item events.
|
|
95262
95846
|
*/
|
|
95847
|
+
@open
|
|
95263
95848
|
@complex model mipAutoLabelExchangeItemAuditRecord extends auditData {
|
|
95264
95849
|
}
|
|
95265
95850
|
|
|
95266
95851
|
/**
|
|
95267
95852
|
* Audit data for MIP Auto Label Progress Feedback events.
|
|
95268
95853
|
*/
|
|
95854
|
+
@open
|
|
95269
95855
|
@complex model mipAutoLabelProgressFeedbackAuditRecord extends auditData {
|
|
95270
95856
|
}
|
|
95271
95857
|
|
|
95272
95858
|
/**
|
|
95273
95859
|
* Audit data for MIP Auto Label SharePoint Item events.
|
|
95274
95860
|
*/
|
|
95861
|
+
@open
|
|
95275
95862
|
@complex model mipAutoLabelSharePointItemAuditRecord extends auditData {
|
|
95276
95863
|
}
|
|
95277
95864
|
|
|
95278
95865
|
/**
|
|
95279
95866
|
* Audit data for MIP Auto Label SharePoint Policy Location events.
|
|
95280
95867
|
*/
|
|
95868
|
+
@open
|
|
95281
95869
|
@complex model mipAutoLabelSharePointPolicyLocationAuditRecord extends auditData {
|
|
95282
95870
|
}
|
|
95283
95871
|
|
|
95284
95872
|
/**
|
|
95285
95873
|
* Audit data for MIP Auto Label Simulation SharePoint Completion events.
|
|
95286
95874
|
*/
|
|
95875
|
+
@open
|
|
95287
95876
|
@complex model mipAutoLabelSimulationSharePointCompletionRecord extends auditData {
|
|
95288
95877
|
}
|
|
95289
95878
|
|
|
95290
95879
|
/**
|
|
95291
95880
|
* Audit data for MIP Auto Label Simulation SharePoint Progress events.
|
|
95292
95881
|
*/
|
|
95882
|
+
@open
|
|
95293
95883
|
@complex model mipAutoLabelSimulationSharePointProgressRecord extends auditData {
|
|
95294
95884
|
}
|
|
95295
95885
|
|
|
95296
95886
|
/**
|
|
95297
95887
|
* Audit data for MIP Auto Label Simulation Statistics events.
|
|
95298
95888
|
*/
|
|
95889
|
+
@open
|
|
95299
95890
|
@complex model mipAutoLabelSimulationStatisticsRecord extends auditData {
|
|
95300
95891
|
}
|
|
95301
95892
|
|
|
95302
95893
|
/**
|
|
95303
95894
|
* Audit data for MIP Exact Data Match events.
|
|
95304
95895
|
*/
|
|
95896
|
+
@open
|
|
95305
95897
|
@complex model mipExactDataMatchAuditRecord extends auditData {
|
|
95306
95898
|
}
|
|
95307
95899
|
|
|
95308
95900
|
/**
|
|
95309
95901
|
* Audit data for MIP Label Analytics events.
|
|
95310
95902
|
*/
|
|
95903
|
+
@open
|
|
95311
95904
|
@complex model mipLabelAnalyticsAuditRecord extends auditData {
|
|
95312
95905
|
}
|
|
95313
95906
|
|
|
95314
95907
|
/**
|
|
95315
95908
|
* Audit data for MIP Label events.
|
|
95316
95909
|
*/
|
|
95910
|
+
@open
|
|
95317
95911
|
@complex model mipLabelAuditRecord extends auditData {
|
|
95318
95912
|
}
|
|
95319
95913
|
|
|
@@ -95330,9 +95924,17 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95330
95924
|
/**
|
|
95331
95925
|
* Audit data for MOS Agent Info events.
|
|
95332
95926
|
*/
|
|
95927
|
+
@open
|
|
95333
95928
|
@complex model mosAgentInfoRecord extends auditData {
|
|
95334
95929
|
}
|
|
95335
95930
|
|
|
95931
|
+
/**
|
|
95932
|
+
* Audit data for MOS Agent Info V2 events.
|
|
95933
|
+
*/
|
|
95934
|
+
@open
|
|
95935
|
+
@complex model mosAgentInfoRecordV2 extends auditData {
|
|
95936
|
+
}
|
|
95937
|
+
|
|
95336
95938
|
// Warning: Malformed version string '2025-01' detected.
|
|
95337
95939
|
// Warning: Malformed version string '2025-01' detected.
|
|
95338
95940
|
@complex model moveToDeletedItemsResponseAction extends responseAction {
|
|
@@ -95354,66 +95956,84 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95354
95956
|
/**
|
|
95355
95957
|
* Audit data for MS365D Custom Detection events.
|
|
95356
95958
|
*/
|
|
95959
|
+
@open
|
|
95357
95960
|
@complex model ms365dCustomDetectionAuditRecord extends auditData {
|
|
95358
95961
|
}
|
|
95359
95962
|
|
|
95360
95963
|
/**
|
|
95361
95964
|
* Audit data for MS365D Incident events.
|
|
95362
95965
|
*/
|
|
95966
|
+
@open
|
|
95363
95967
|
@complex model ms365dIncidentAuditRecord extends auditData {
|
|
95364
95968
|
}
|
|
95365
95969
|
|
|
95366
95970
|
/**
|
|
95367
95971
|
* Audit data for MS365D Suppression Rule events.
|
|
95368
95972
|
*/
|
|
95973
|
+
@open
|
|
95369
95974
|
@complex model ms365dSuppressionRuleAuditRecord extends auditData {
|
|
95370
95975
|
}
|
|
95371
95976
|
|
|
95372
95977
|
/**
|
|
95373
95978
|
* Audit data for MSDE Custom Collection events.
|
|
95374
95979
|
*/
|
|
95980
|
+
@open
|
|
95375
95981
|
@complex model msdeCustomCollectionAuditRecord extends auditData {
|
|
95376
95982
|
}
|
|
95377
95983
|
|
|
95378
95984
|
/**
|
|
95379
95985
|
* Audit data for MSDE General Settings events.
|
|
95380
95986
|
*/
|
|
95987
|
+
@open
|
|
95381
95988
|
@complex model msdeGeneralSettingsAuditRecord extends auditData {
|
|
95382
95989
|
}
|
|
95383
95990
|
|
|
95384
95991
|
/**
|
|
95385
95992
|
* Audit data for MSDE Indicators Settings events.
|
|
95386
95993
|
*/
|
|
95994
|
+
@open
|
|
95387
95995
|
@complex model msdeIndicatorsSettingsAuditRecord extends auditData {
|
|
95388
95996
|
}
|
|
95389
95997
|
|
|
95390
95998
|
/**
|
|
95391
95999
|
* Audit data for MSDE Response Actions events.
|
|
95392
96000
|
*/
|
|
96001
|
+
@open
|
|
95393
96002
|
@complex model msdeResponseActionsAuditRecord extends auditData {
|
|
95394
96003
|
}
|
|
95395
96004
|
|
|
95396
96005
|
/**
|
|
95397
96006
|
* Audit data for MSDE Roles Settings events.
|
|
95398
96007
|
*/
|
|
96008
|
+
@open
|
|
95399
96009
|
@complex model msdeRolesSettingsAuditRecord extends auditData {
|
|
95400
96010
|
}
|
|
95401
96011
|
|
|
96012
|
+
/**
|
|
96013
|
+
* Audit data for MSP Vector Search Content Metadata events.
|
|
96014
|
+
*/
|
|
96015
|
+
@open
|
|
96016
|
+
@complex model mspVectorSearchContentMetadataAuditRecord extends auditData {
|
|
96017
|
+
}
|
|
96018
|
+
|
|
95402
96019
|
/**
|
|
95403
96020
|
* Audit data for MSTIC Nation State Notification events.
|
|
95404
96021
|
*/
|
|
96022
|
+
@open
|
|
95405
96023
|
@complex model msticNationStateNotificationRecord extends auditData {
|
|
95406
96024
|
}
|
|
95407
96025
|
|
|
95408
96026
|
/**
|
|
95409
96027
|
* Audit data for Multi Stage Disposition events.
|
|
95410
96028
|
*/
|
|
96029
|
+
@open
|
|
95411
96030
|
@complex model multiStageDispositionAuditRecord extends auditData {
|
|
95412
96031
|
}
|
|
95413
96032
|
|
|
95414
96033
|
/**
|
|
95415
96034
|
* Audit data for My Analytics Settings events.
|
|
95416
96035
|
*/
|
|
96036
|
+
@open
|
|
95417
96037
|
@complex model myAnalyticsSettingsAuditRecord extends auditData {
|
|
95418
96038
|
}
|
|
95419
96039
|
|
|
@@ -95434,9 +96054,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95434
96054
|
/**
|
|
95435
96055
|
* Audit data for Noisy Alert Policy events.
|
|
95436
96056
|
*/
|
|
96057
|
+
@open
|
|
95437
96058
|
@complex model noisyAlertPolicyAuditRecord extends auditData {
|
|
95438
96059
|
}
|
|
95439
96060
|
|
|
96061
|
+
@complex model oAuthApplicationEntityMapping extends entityMapping {
|
|
96062
|
+
oAuthAppIdColumn: string;
|
|
96063
|
+
}
|
|
96064
|
+
|
|
95440
96065
|
@complex model oauthApplicationEvidence extends alertEvidence {
|
|
95441
96066
|
appId: string | null;
|
|
95442
96067
|
displayName: string | null;
|
|
@@ -95453,42 +96078,49 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95453
96078
|
/**
|
|
95454
96079
|
* Audit data for Office Native events.
|
|
95455
96080
|
*/
|
|
96081
|
+
@open
|
|
95456
96082
|
@complex model officeNativeAuditRecord extends auditData {
|
|
95457
96083
|
}
|
|
95458
96084
|
|
|
95459
96085
|
/**
|
|
95460
96086
|
* Audit data for OME Portal events.
|
|
95461
96087
|
*/
|
|
96088
|
+
@open
|
|
95462
96089
|
@complex model omePortalAuditRecord extends auditData {
|
|
95463
96090
|
}
|
|
95464
96091
|
|
|
95465
96092
|
/**
|
|
95466
96093
|
* Audit data for On Demand SharePoint Classification events.
|
|
95467
96094
|
*/
|
|
96095
|
+
@open
|
|
95468
96096
|
@complex model onDemandSharePointClassificationAuditRecord extends auditData {
|
|
95469
96097
|
}
|
|
95470
96098
|
|
|
95471
96099
|
/**
|
|
95472
96100
|
* Audit data for OneDrive events.
|
|
95473
96101
|
*/
|
|
96102
|
+
@open
|
|
95474
96103
|
@complex model oneDriveAuditRecord extends auditData {
|
|
95475
96104
|
}
|
|
95476
96105
|
|
|
95477
96106
|
/**
|
|
95478
96107
|
* Audit data for On Premises File Share Scanner DLP events.
|
|
95479
96108
|
*/
|
|
96109
|
+
@open
|
|
95480
96110
|
@complex model onPremisesFileShareScannerDLPAuditRecord extends auditData {
|
|
95481
96111
|
}
|
|
95482
96112
|
|
|
95483
96113
|
/**
|
|
95484
96114
|
* Audit data for On Premises SharePoint Scanner DLP events.
|
|
95485
96115
|
*/
|
|
96116
|
+
@open
|
|
95486
96117
|
@complex model onPremisesSharePointScannerDLPAuditRecord extends auditData {
|
|
95487
96118
|
}
|
|
95488
96119
|
|
|
95489
96120
|
/**
|
|
95490
96121
|
* Audit data for Organizational Data In M365 events.
|
|
95491
96122
|
*/
|
|
96123
|
+
@open
|
|
95492
96124
|
@complex model organizationalDataInM365AuditRecord extends auditData {
|
|
95493
96125
|
}
|
|
95494
96126
|
|
|
@@ -95505,273 +96137,330 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95505
96137
|
/**
|
|
95506
96138
|
* Audit data for Outlook Copilot Automation events.
|
|
95507
96139
|
*/
|
|
96140
|
+
@open
|
|
95508
96141
|
@complex model outlookCopilotAutomationAuditRecord extends auditData {
|
|
95509
96142
|
}
|
|
95510
96143
|
|
|
95511
96144
|
/**
|
|
95512
96145
|
* Audit data for OWA Get Access Token For Resource events.
|
|
95513
96146
|
*/
|
|
96147
|
+
@open
|
|
95514
96148
|
@complex model owaGetAccessTokenForResourceAuditRecord extends auditData {
|
|
95515
96149
|
}
|
|
95516
96150
|
|
|
95517
96151
|
/**
|
|
95518
96152
|
* Audit data for P4AI Assessment Category events.
|
|
95519
96153
|
*/
|
|
96154
|
+
@open
|
|
95520
96155
|
@complex model p4aiAssessmentCategoryRecord extends auditData {
|
|
95521
96156
|
}
|
|
95522
96157
|
|
|
95523
96158
|
/**
|
|
95524
96159
|
* Audit data for P4AI Assessment Fabric Scanner events.
|
|
95525
96160
|
*/
|
|
96161
|
+
@open
|
|
95526
96162
|
@complex model p4aiAssessmentFabricScannerRecord extends auditData {
|
|
95527
96163
|
}
|
|
95528
96164
|
|
|
95529
96165
|
/**
|
|
95530
96166
|
* Audit data for P4AI Assessment Location Result events.
|
|
95531
96167
|
*/
|
|
96168
|
+
@open
|
|
95532
96169
|
@complex model p4aiAssessmentLocationResultRecord extends auditData {
|
|
95533
96170
|
}
|
|
95534
96171
|
|
|
95535
96172
|
/**
|
|
95536
96173
|
* Audit data for P4AI Assessment events.
|
|
95537
96174
|
*/
|
|
96175
|
+
@open
|
|
95538
96176
|
@complex model p4aiAssessmentRecord extends auditData {
|
|
95539
96177
|
}
|
|
95540
96178
|
|
|
96179
|
+
/**
|
|
96180
|
+
* Audit data for P4 AI Risk Score events.
|
|
96181
|
+
*/
|
|
96182
|
+
@open
|
|
96183
|
+
@complex model p4AIRiskScoreRecord extends auditData {
|
|
96184
|
+
}
|
|
96185
|
+
|
|
95541
96186
|
/**
|
|
95542
96187
|
* Audit data for People Admin Settings events.
|
|
95543
96188
|
*/
|
|
96189
|
+
@open
|
|
95544
96190
|
@complex model peopleAdminSettingsAuditRecord extends auditData {
|
|
95545
96191
|
}
|
|
95546
96192
|
|
|
95547
96193
|
/**
|
|
95548
96194
|
* Audit data for Physical Badging Signal events.
|
|
95549
96195
|
*/
|
|
96196
|
+
@open
|
|
95550
96197
|
@complex model physicalBadgingSignalAuditRecord extends auditData {
|
|
95551
96198
|
}
|
|
95552
96199
|
|
|
95553
96200
|
/**
|
|
95554
96201
|
* Audit data for Places Directory events.
|
|
95555
96202
|
*/
|
|
96203
|
+
@open
|
|
95556
96204
|
@complex model placesDirectoryAuditRecord extends auditData {
|
|
95557
96205
|
}
|
|
95558
96206
|
|
|
95559
96207
|
/**
|
|
95560
96208
|
* Audit data for Planner Chat Message events.
|
|
95561
96209
|
*/
|
|
96210
|
+
@open
|
|
95562
96211
|
@complex model plannerChatMessageAuditRecord extends auditData {
|
|
95563
96212
|
}
|
|
95564
96213
|
|
|
95565
96214
|
/**
|
|
95566
96215
|
* Audit data for Planner Chat Message List events.
|
|
95567
96216
|
*/
|
|
96217
|
+
@open
|
|
95568
96218
|
@complex model plannerChatMessageListAuditRecord extends auditData {
|
|
95569
96219
|
}
|
|
95570
96220
|
|
|
95571
96221
|
/**
|
|
95572
96222
|
* Audit data for Planner Copy Plan events.
|
|
95573
96223
|
*/
|
|
96224
|
+
@open
|
|
95574
96225
|
@complex model plannerCopyPlanAuditRecord extends auditData {
|
|
95575
96226
|
}
|
|
95576
96227
|
|
|
95577
96228
|
/**
|
|
95578
96229
|
* Audit data for Planner Goal events.
|
|
95579
96230
|
*/
|
|
96231
|
+
@open
|
|
95580
96232
|
@complex model plannerGoalAuditRecord extends auditData {
|
|
95581
96233
|
}
|
|
95582
96234
|
|
|
95583
96235
|
/**
|
|
95584
96236
|
* Audit data for Planner Goal List events.
|
|
95585
96237
|
*/
|
|
96238
|
+
@open
|
|
95586
96239
|
@complex model plannerGoalListAuditRecord extends auditData {
|
|
95587
96240
|
}
|
|
95588
96241
|
|
|
95589
96242
|
/**
|
|
95590
96243
|
* Audit data for Planner Plan events.
|
|
95591
96244
|
*/
|
|
96245
|
+
@open
|
|
95592
96246
|
@complex model plannerPlanAuditRecord extends auditData {
|
|
95593
96247
|
}
|
|
95594
96248
|
|
|
95595
96249
|
/**
|
|
95596
96250
|
* Audit data for Planner Plan List events.
|
|
95597
96251
|
*/
|
|
96252
|
+
@open
|
|
95598
96253
|
@complex model plannerPlanListAuditRecord extends auditData {
|
|
95599
96254
|
}
|
|
95600
96255
|
|
|
95601
96256
|
/**
|
|
95602
96257
|
* Audit data for Planner Plan Sensitivity Label events.
|
|
95603
96258
|
*/
|
|
96259
|
+
@open
|
|
95604
96260
|
@complex model plannerPlanSensitivityLabelAuditRecord extends auditData {
|
|
95605
96261
|
}
|
|
95606
96262
|
|
|
95607
96263
|
/**
|
|
95608
96264
|
* Audit data for Planner Roster events.
|
|
95609
96265
|
*/
|
|
96266
|
+
@open
|
|
95610
96267
|
@complex model plannerRosterAuditRecord extends auditData {
|
|
95611
96268
|
}
|
|
95612
96269
|
|
|
95613
96270
|
/**
|
|
95614
96271
|
* Audit data for Planner Roster Sensitivity Label events.
|
|
95615
96272
|
*/
|
|
96273
|
+
@open
|
|
95616
96274
|
@complex model plannerRosterSensitivityLabelAuditRecord extends auditData {
|
|
95617
96275
|
}
|
|
95618
96276
|
|
|
95619
96277
|
/**
|
|
95620
96278
|
* Audit data for Planner Task events.
|
|
95621
96279
|
*/
|
|
96280
|
+
@open
|
|
95622
96281
|
@complex model plannerTaskAuditRecord extends auditData {
|
|
95623
96282
|
}
|
|
95624
96283
|
|
|
95625
96284
|
/**
|
|
95626
96285
|
* Audit data for Planner Task List events.
|
|
95627
96286
|
*/
|
|
96287
|
+
@open
|
|
95628
96288
|
@complex model plannerTaskListAuditRecord extends auditData {
|
|
95629
96289
|
}
|
|
95630
96290
|
|
|
95631
96291
|
/**
|
|
95632
96292
|
* Audit data for Planner Tenant Settings events.
|
|
95633
96293
|
*/
|
|
96294
|
+
@open
|
|
95634
96295
|
@complex model plannerTenantSettingsAuditRecord extends auditData {
|
|
95635
96296
|
}
|
|
95636
96297
|
|
|
95637
96298
|
/**
|
|
95638
96299
|
* Audit data for Policy Config Change events.
|
|
95639
96300
|
*/
|
|
96301
|
+
@open
|
|
95640
96302
|
@complex model policyConfigChangeAuditRecord extends auditData {
|
|
95641
96303
|
}
|
|
95642
96304
|
|
|
95643
96305
|
/**
|
|
95644
96306
|
* Audit data for PowerApps Audit App events.
|
|
95645
96307
|
*/
|
|
96308
|
+
@open
|
|
95646
96309
|
@complex model powerAppsAuditAppRecord extends auditData {
|
|
95647
96310
|
}
|
|
95648
96311
|
|
|
95649
96312
|
/**
|
|
95650
96313
|
* Audit data for PowerApps Audit Plan events.
|
|
95651
96314
|
*/
|
|
96315
|
+
@open
|
|
95652
96316
|
@complex model powerAppsAuditPlanRecord extends auditData {
|
|
95653
96317
|
}
|
|
95654
96318
|
|
|
95655
96319
|
/**
|
|
95656
96320
|
* Audit data for PowerApps Audit Resource events.
|
|
95657
96321
|
*/
|
|
96322
|
+
@open
|
|
95658
96323
|
@complex model powerAppsAuditResourceRecord extends auditData {
|
|
95659
96324
|
}
|
|
95660
96325
|
|
|
95661
96326
|
/**
|
|
95662
96327
|
* Audit data for Power BI events.
|
|
95663
96328
|
*/
|
|
96329
|
+
@open
|
|
95664
96330
|
@complex model powerBIAuditRecord extends auditData {
|
|
95665
96331
|
}
|
|
95666
96332
|
|
|
95667
96333
|
/**
|
|
95668
96334
|
* Audit data for Power BI DLP events.
|
|
95669
96335
|
*/
|
|
96336
|
+
@open
|
|
95670
96337
|
@complex model powerBIDlpAuditRecord extends auditData {
|
|
95671
96338
|
}
|
|
95672
96339
|
|
|
95673
96340
|
/**
|
|
95674
96341
|
* Audit data for Power Pages Site events.
|
|
95675
96342
|
*/
|
|
96343
|
+
@open
|
|
95676
96344
|
@complex model powerPagesSiteAuditRecord extends auditData {
|
|
95677
96345
|
}
|
|
95678
96346
|
|
|
95679
96347
|
/**
|
|
95680
96348
|
* Audit data for Power Platform Admin DLP events.
|
|
95681
96349
|
*/
|
|
96350
|
+
@open
|
|
95682
96351
|
@complex model powerPlatformAdminDlpAuditRecord extends auditData {
|
|
95683
96352
|
}
|
|
95684
96353
|
|
|
95685
96354
|
/**
|
|
95686
96355
|
* Audit data for Power Platform Admin Environment events.
|
|
95687
96356
|
*/
|
|
96357
|
+
@open
|
|
95688
96358
|
@complex model powerPlatformAdminEnvironmentAuditRecord extends auditData {
|
|
95689
96359
|
}
|
|
95690
96360
|
|
|
95691
96361
|
/**
|
|
95692
96362
|
* Audit data for Power Platform Administrator Activity events.
|
|
95693
96363
|
*/
|
|
96364
|
+
@open
|
|
95694
96365
|
@complex model powerPlatformAdministratorActivityRecord extends auditData {
|
|
95695
96366
|
}
|
|
95696
96367
|
|
|
95697
96368
|
/**
|
|
95698
96369
|
* Audit data for Power Platform Lockbox Resource Access Request events.
|
|
95699
96370
|
*/
|
|
96371
|
+
@open
|
|
95700
96372
|
@complex model powerPlatformLockboxResourceAccessRequestAuditRecord extends auditData {
|
|
95701
96373
|
}
|
|
95702
96374
|
|
|
95703
96375
|
/**
|
|
95704
96376
|
* Audit data for Power Platform Lockbox Resource Command events.
|
|
95705
96377
|
*/
|
|
96378
|
+
@open
|
|
95706
96379
|
@complex model powerPlatformLockboxResourceCommandAuditRecord extends auditData {
|
|
95707
96380
|
}
|
|
95708
96381
|
|
|
95709
96382
|
/**
|
|
95710
96383
|
* Audit data for Power Platform Service Activity events.
|
|
95711
96384
|
*/
|
|
96385
|
+
@open
|
|
95712
96386
|
@complex model powerPlatformServiceActivityAuditRecord extends auditData {
|
|
95713
96387
|
}
|
|
95714
96388
|
|
|
95715
96389
|
/**
|
|
95716
96390
|
* Audit data for Power Platform Tenant Isolation events.
|
|
95717
96391
|
*/
|
|
96392
|
+
@open
|
|
95718
96393
|
@complex model powerPlatformTenantIsolationRecord extends auditData {
|
|
95719
96394
|
}
|
|
95720
96395
|
|
|
95721
96396
|
/**
|
|
95722
96397
|
* Audit data for Privacy Data Match events.
|
|
95723
96398
|
*/
|
|
96399
|
+
@open
|
|
95724
96400
|
@complex model privacyDataMatchAuditRecord extends auditData {
|
|
95725
96401
|
}
|
|
95726
96402
|
|
|
95727
96403
|
/**
|
|
95728
96404
|
* Audit data for Privacy Data Minimization events.
|
|
95729
96405
|
*/
|
|
96406
|
+
@open
|
|
95730
96407
|
@complex model privacyDataMinimizationRecord extends auditData {
|
|
95731
96408
|
}
|
|
95732
96409
|
|
|
95733
96410
|
/**
|
|
95734
96411
|
* Audit data for Privacy Digest Email events.
|
|
95735
96412
|
*/
|
|
96413
|
+
@open
|
|
95736
96414
|
@complex model privacyDigestEmailRecord extends auditData {
|
|
95737
96415
|
}
|
|
95738
96416
|
|
|
95739
96417
|
/**
|
|
95740
96418
|
* Audit data for Privacy Open Access events.
|
|
95741
96419
|
*/
|
|
96420
|
+
@open
|
|
95742
96421
|
@complex model privacyOpenAccessAuditRecord extends auditData {
|
|
95743
96422
|
}
|
|
95744
96423
|
|
|
95745
96424
|
/**
|
|
95746
96425
|
* Audit data for Privacy Portal events.
|
|
95747
96426
|
*/
|
|
96427
|
+
@open
|
|
95748
96428
|
@complex model privacyPortalAuditRecord extends auditData {
|
|
95749
96429
|
}
|
|
95750
96430
|
|
|
95751
96431
|
/**
|
|
95752
96432
|
* Audit data for Privacy Remediation Action events.
|
|
95753
96433
|
*/
|
|
96434
|
+
@open
|
|
95754
96435
|
@complex model privacyRemediationActionRecord extends auditData {
|
|
95755
96436
|
}
|
|
95756
96437
|
|
|
95757
96438
|
/**
|
|
95758
96439
|
* Audit data for Privacy Remediation events.
|
|
95759
96440
|
*/
|
|
96441
|
+
@open
|
|
95760
96442
|
@complex model privacyRemediationRecord extends auditData {
|
|
95761
96443
|
}
|
|
95762
96444
|
|
|
95763
96445
|
/**
|
|
95764
96446
|
* Audit data for Priva Privacy Assessment Operation events.
|
|
95765
96447
|
*/
|
|
96448
|
+
@open
|
|
95766
96449
|
@complex model privaPrivacyAssessmentOperationRecord extends auditData {
|
|
95767
96450
|
}
|
|
95768
96451
|
|
|
95769
96452
|
/**
|
|
95770
96453
|
* Audit data for Priva Privacy Consent Operation events.
|
|
95771
96454
|
*/
|
|
96455
|
+
@open
|
|
95772
96456
|
@complex model privaPrivacyConsentOperationRecord extends auditData {
|
|
95773
96457
|
}
|
|
95774
96458
|
|
|
96459
|
+
@complex model processEntityMapping extends entityMapping {
|
|
96460
|
+
sha1Column: string | null;
|
|
96461
|
+
sha256Column: string | null;
|
|
96462
|
+
}
|
|
96463
|
+
|
|
95775
96464
|
@complex model processEvidence extends alertEvidence {
|
|
95776
96465
|
detectionStatus: detectionStatus | null;
|
|
95777
96466
|
imageFile: fileDetails | null;
|
|
@@ -95788,48 +96477,56 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95788
96477
|
/**
|
|
95789
96478
|
* Audit data for Microsoft Project events.
|
|
95790
96479
|
*/
|
|
96480
|
+
@open
|
|
95791
96481
|
@complex model projectAuditRecord extends auditData {
|
|
95792
96482
|
}
|
|
95793
96483
|
|
|
95794
96484
|
/**
|
|
95795
96485
|
* Audit data for Project for the Web Assigned To Me Settings events.
|
|
95796
96486
|
*/
|
|
96487
|
+
@open
|
|
95797
96488
|
@complex model projectForTheWebAssignedToMeSettingsAuditRecord extends auditData {
|
|
95798
96489
|
}
|
|
95799
96490
|
|
|
95800
96491
|
/**
|
|
95801
96492
|
* Audit data for Project for the Web Project events.
|
|
95802
96493
|
*/
|
|
96494
|
+
@open
|
|
95803
96495
|
@complex model projectForTheWebProjectAuditRecord extends auditData {
|
|
95804
96496
|
}
|
|
95805
96497
|
|
|
95806
96498
|
/**
|
|
95807
96499
|
* Audit data for Project for the Web Project Settings events.
|
|
95808
96500
|
*/
|
|
96501
|
+
@open
|
|
95809
96502
|
@complex model projectForTheWebProjectSettingsAuditRecord extends auditData {
|
|
95810
96503
|
}
|
|
95811
96504
|
|
|
95812
96505
|
/**
|
|
95813
96506
|
* Audit data for Project for the Web Roadmap events.
|
|
95814
96507
|
*/
|
|
96508
|
+
@open
|
|
95815
96509
|
@complex model projectForTheWebRoadmapAuditRecord extends auditData {
|
|
95816
96510
|
}
|
|
95817
96511
|
|
|
95818
96512
|
/**
|
|
95819
96513
|
* Audit data for Project for the Web Roadmap Item events.
|
|
95820
96514
|
*/
|
|
96515
|
+
@open
|
|
95821
96516
|
@complex model projectForTheWebRoadmapItemAuditRecord extends auditData {
|
|
95822
96517
|
}
|
|
95823
96518
|
|
|
95824
96519
|
/**
|
|
95825
96520
|
* Audit data for Project for the Web Roadmap Settings events.
|
|
95826
96521
|
*/
|
|
96522
|
+
@open
|
|
95827
96523
|
@complex model projectForTheWebRoadmapSettingsAuditRecord extends auditData {
|
|
95828
96524
|
}
|
|
95829
96525
|
|
|
95830
96526
|
/**
|
|
95831
96527
|
* Audit data for Project for the Web Task events.
|
|
95832
96528
|
*/
|
|
96529
|
+
@open
|
|
95833
96530
|
@complex model projectForTheWebTaskAuditRecord extends auditData {
|
|
95834
96531
|
}
|
|
95835
96532
|
|
|
@@ -95846,36 +96543,42 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95846
96543
|
/**
|
|
95847
96544
|
* Audit data for Exchange public folder events.
|
|
95848
96545
|
*/
|
|
96546
|
+
@open
|
|
95849
96547
|
@complex model publicFolderAuditRecord extends auditData {
|
|
95850
96548
|
}
|
|
95851
96549
|
|
|
95852
96550
|
/**
|
|
95853
96551
|
* Audit data for Purview Insider Risk Alerts events.
|
|
95854
96552
|
*/
|
|
96553
|
+
@open
|
|
95855
96554
|
@complex model purviewInsiderRiskAlertsRecord extends auditData {
|
|
95856
96555
|
}
|
|
95857
96556
|
|
|
95858
96557
|
/**
|
|
95859
96558
|
* Audit data for Purview Insider Risk Cases events.
|
|
95860
96559
|
*/
|
|
96560
|
+
@open
|
|
95861
96561
|
@complex model purviewInsiderRiskCasesRecord extends auditData {
|
|
95862
96562
|
}
|
|
95863
96563
|
|
|
95864
96564
|
/**
|
|
95865
96565
|
* Audit data for Purview MC Recommendation events.
|
|
95866
96566
|
*/
|
|
96567
|
+
@open
|
|
95867
96568
|
@complex model purviewMCRecommendationRecord extends auditData {
|
|
95868
96569
|
}
|
|
95869
96570
|
|
|
95870
96571
|
/**
|
|
95871
96572
|
* Audit data for Purview Posture Agent events.
|
|
95872
96573
|
*/
|
|
96574
|
+
@open
|
|
95873
96575
|
@complex model purviewPostureAgentAuditRecord extends auditData {
|
|
95874
96576
|
}
|
|
95875
96577
|
|
|
95876
96578
|
/**
|
|
95877
96579
|
* Audit data for quarantine events.
|
|
95878
96580
|
*/
|
|
96581
|
+
@open
|
|
95879
96582
|
@complex model quarantineAuditRecord extends auditData {
|
|
95880
96583
|
}
|
|
95881
96584
|
|
|
@@ -95900,6 +96603,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95900
96603
|
/**
|
|
95901
96604
|
* Audit data for Records Management events.
|
|
95902
96605
|
*/
|
|
96606
|
+
@open
|
|
95903
96607
|
@complex model recordsManagementAuditRecord extends auditData {
|
|
95904
96608
|
}
|
|
95905
96609
|
|
|
@@ -95915,6 +96619,11 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95915
96619
|
registryKey: string | null;
|
|
95916
96620
|
}
|
|
95917
96621
|
|
|
96622
|
+
@complex model registryValueEntityMapping extends entityMapping {
|
|
96623
|
+
keyColumn: string;
|
|
96624
|
+
valueNameColumn: string;
|
|
96625
|
+
}
|
|
96626
|
+
|
|
95918
96627
|
@complex model registryValueEvidence extends alertEvidence {
|
|
95919
96628
|
mdeDeviceId: string | null;
|
|
95920
96629
|
registryHive: string | null;
|
|
@@ -95948,12 +96657,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95948
96657
|
/**
|
|
95949
96658
|
* Audit data for Report Submission events.
|
|
95950
96659
|
*/
|
|
96660
|
+
@open
|
|
95951
96661
|
@complex model reportSubmission extends auditData {
|
|
95952
96662
|
}
|
|
95953
96663
|
|
|
95954
96664
|
/**
|
|
95955
96665
|
* Audit data for Report Submission Result Detail events.
|
|
95956
96666
|
*/
|
|
96667
|
+
@open
|
|
95957
96668
|
@complex model reportSubmissionResultDetail extends auditData {
|
|
95958
96669
|
}
|
|
95959
96670
|
|
|
@@ -95986,6 +96697,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95986
96697
|
/**
|
|
95987
96698
|
* Audit data for Restricted Mode events.
|
|
95988
96699
|
*/
|
|
96700
|
+
@open
|
|
95989
96701
|
@complex model restrictedModeAuditRecord extends auditData {
|
|
95990
96702
|
}
|
|
95991
96703
|
|
|
@@ -96008,12 +96720,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96008
96720
|
/**
|
|
96009
96721
|
* Audit data for Retention Policy events.
|
|
96010
96722
|
*/
|
|
96723
|
+
@open
|
|
96011
96724
|
@complex model retentionPolicyAuditRecord extends auditData {
|
|
96012
96725
|
}
|
|
96013
96726
|
|
|
96014
96727
|
/**
|
|
96015
96728
|
* Audit data for RTI Operations Agent events.
|
|
96016
96729
|
*/
|
|
96730
|
+
@open
|
|
96017
96731
|
@complex model rtiOperationsAgentAuditRecord extends auditData {
|
|
96018
96732
|
}
|
|
96019
96733
|
|
|
@@ -96061,69 +96775,100 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96061
96775
|
/**
|
|
96062
96776
|
* Audit data for SBP Configuration Event events.
|
|
96063
96777
|
*/
|
|
96778
|
+
@open
|
|
96064
96779
|
@complex model sbpConfigurationEventRecord extends auditData {
|
|
96065
96780
|
}
|
|
96066
96781
|
|
|
96067
96782
|
/**
|
|
96068
96783
|
* Audit data for SBP Usage Event events.
|
|
96069
96784
|
*/
|
|
96785
|
+
@open
|
|
96070
96786
|
@complex model sbpUsageEventRecord extends auditData {
|
|
96071
96787
|
}
|
|
96072
96788
|
|
|
96073
96789
|
/**
|
|
96074
96790
|
* Audit data for Secure Score evidence events.
|
|
96075
96791
|
*/
|
|
96792
|
+
@open
|
|
96076
96793
|
@complex model scoreEvidence extends auditData {
|
|
96077
96794
|
}
|
|
96078
96795
|
|
|
96079
96796
|
/**
|
|
96080
96797
|
* Audit data for Score Platform Generic events.
|
|
96081
96798
|
*/
|
|
96799
|
+
@open
|
|
96082
96800
|
@complex model scorePlatformGenericAuditRecord extends auditData {
|
|
96083
96801
|
}
|
|
96084
96802
|
|
|
96085
96803
|
/**
|
|
96086
96804
|
* Audit data for Script Run events.
|
|
96087
96805
|
*/
|
|
96806
|
+
@open
|
|
96088
96807
|
@complex model scriptRunAuditRecord extends auditData {
|
|
96089
96808
|
}
|
|
96090
96809
|
|
|
96091
96810
|
/**
|
|
96092
96811
|
* Audit data for search events.
|
|
96093
96812
|
*/
|
|
96813
|
+
@open
|
|
96094
96814
|
@complex model searchAuditRecord extends auditData {
|
|
96095
96815
|
}
|
|
96096
96816
|
|
|
96097
96817
|
/**
|
|
96098
96818
|
* Audit data for Security Compliance Alert events.
|
|
96099
96819
|
*/
|
|
96820
|
+
@open
|
|
96100
96821
|
@complex model securityComplianceAlertRecord extends auditData {
|
|
96101
96822
|
}
|
|
96102
96823
|
|
|
96103
96824
|
/**
|
|
96104
96825
|
* Audit data for Security Compliance Center EOP cmdlet events.
|
|
96105
96826
|
*/
|
|
96827
|
+
@open
|
|
96106
96828
|
@complex model securityComplianceCenterEOPCmdletAuditRecord extends auditData {
|
|
96107
96829
|
}
|
|
96108
96830
|
|
|
96109
96831
|
/**
|
|
96110
96832
|
* Audit data for Security Compliance Insights events.
|
|
96111
96833
|
*/
|
|
96834
|
+
@open
|
|
96112
96835
|
@complex model securityComplianceInsightsAuditRecord extends auditData {
|
|
96113
96836
|
}
|
|
96114
96837
|
|
|
96115
96838
|
/**
|
|
96116
96839
|
* Audit data for Security Compliance RBAC events.
|
|
96117
96840
|
*/
|
|
96841
|
+
@open
|
|
96118
96842
|
@complex model securityComplianceRBACAuditRecord extends auditData {
|
|
96119
96843
|
}
|
|
96120
96844
|
|
|
96121
96845
|
/**
|
|
96122
96846
|
* Audit data for Security Compliance User Change events.
|
|
96123
96847
|
*/
|
|
96848
|
+
@open
|
|
96124
96849
|
@complex model securityComplianceUserChangeAuditRecord extends auditData {
|
|
96125
96850
|
}
|
|
96126
96851
|
|
|
96852
|
+
/**
|
|
96853
|
+
* Audit data for Security Copilot Identity Management events.
|
|
96854
|
+
*/
|
|
96855
|
+
@open
|
|
96856
|
+
@complex model securityCopilotIdentityManagementAuditRecord extends auditData {
|
|
96857
|
+
}
|
|
96858
|
+
|
|
96859
|
+
/**
|
|
96860
|
+
* Audit data for Security Development Lifecycle AI Log events.
|
|
96861
|
+
*/
|
|
96862
|
+
@open
|
|
96863
|
+
@complex model securityDevelopmentLifecycleAILogAuditRecord extends auditData {
|
|
96864
|
+
}
|
|
96865
|
+
|
|
96866
|
+
@complex model securityGroupEntityMapping extends entityMapping {
|
|
96867
|
+
distinguishedNameColumn: string | null;
|
|
96868
|
+
objectIdColumn: string | null;
|
|
96869
|
+
sidColumn: string | null;
|
|
96870
|
+
}
|
|
96871
|
+
|
|
96127
96872
|
@complex model securityGroupEvidence extends alertEvidence {
|
|
96128
96873
|
activeDirectoryObjectGuid: guid | null;
|
|
96129
96874
|
displayName: string | null;
|
|
@@ -96136,24 +96881,28 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96136
96881
|
/**
|
|
96137
96882
|
* Audit data for Sensitive Info Remediation Agent events.
|
|
96138
96883
|
*/
|
|
96884
|
+
@open
|
|
96139
96885
|
@complex model sensitiveInfoRemediationAgentDataRecord extends auditData {
|
|
96140
96886
|
}
|
|
96141
96887
|
|
|
96142
96888
|
/**
|
|
96143
96889
|
* Audit data for Sensitivity Label Action events.
|
|
96144
96890
|
*/
|
|
96891
|
+
@open
|
|
96145
96892
|
@complex model sensitivityLabelActionAuditRecord extends auditData {
|
|
96146
96893
|
}
|
|
96147
96894
|
|
|
96148
96895
|
/**
|
|
96149
96896
|
* Audit data for Sensitivity Labeled File Action events.
|
|
96150
96897
|
*/
|
|
96898
|
+
@open
|
|
96151
96899
|
@complex model sensitivityLabeledFileActionAuditRecord extends auditData {
|
|
96152
96900
|
}
|
|
96153
96901
|
|
|
96154
96902
|
/**
|
|
96155
96903
|
* Audit data for Sensitivity Label Policy Match events.
|
|
96156
96904
|
*/
|
|
96905
|
+
@open
|
|
96157
96906
|
@complex model sensitivityLabelPolicyMatchAuditRecord extends auditData {
|
|
96158
96907
|
}
|
|
96159
96908
|
|
|
@@ -96172,54 +96921,63 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96172
96921
|
/**
|
|
96173
96922
|
* Audit data for Sentinel AI Tool events.
|
|
96174
96923
|
*/
|
|
96924
|
+
@open
|
|
96175
96925
|
@complex model sentinelAIToolAuditRecord extends auditData {
|
|
96176
96926
|
}
|
|
96177
96927
|
|
|
96178
96928
|
/**
|
|
96179
96929
|
* Audit data for Sentinel Graph events.
|
|
96180
96930
|
*/
|
|
96931
|
+
@open
|
|
96181
96932
|
@complex model sentinelGraphAuditRecord extends auditData {
|
|
96182
96933
|
}
|
|
96183
96934
|
|
|
96184
96935
|
/**
|
|
96185
96936
|
* Audit data for Sentinel Job events.
|
|
96186
96937
|
*/
|
|
96938
|
+
@open
|
|
96187
96939
|
@complex model sentinelJobAuditRecord extends auditData {
|
|
96188
96940
|
}
|
|
96189
96941
|
|
|
96190
96942
|
/**
|
|
96191
96943
|
* Audit data for Sentinel KQL On Lake events.
|
|
96192
96944
|
*/
|
|
96945
|
+
@open
|
|
96193
96946
|
@complex model sentinelKQLOnLakeAuditRecord extends auditData {
|
|
96194
96947
|
}
|
|
96195
96948
|
|
|
96196
96949
|
/**
|
|
96197
96950
|
* Audit data for Sentinel Lake Data Onboarding events.
|
|
96198
96951
|
*/
|
|
96952
|
+
@open
|
|
96199
96953
|
@complex model sentinelLakeDataOnboardingAuditRecord extends auditData {
|
|
96200
96954
|
}
|
|
96201
96955
|
|
|
96202
96956
|
/**
|
|
96203
96957
|
* Audit data for Sentinel Lake Encryption events.
|
|
96204
96958
|
*/
|
|
96959
|
+
@open
|
|
96205
96960
|
@complex model sentinelLakeEncryptionAuditRecord extends auditData {
|
|
96206
96961
|
}
|
|
96207
96962
|
|
|
96208
96963
|
/**
|
|
96209
96964
|
* Audit data for Sentinel Lake Onboarding events.
|
|
96210
96965
|
*/
|
|
96966
|
+
@open
|
|
96211
96967
|
@complex model sentinelLakeOnboardingAuditRecord extends auditData {
|
|
96212
96968
|
}
|
|
96213
96969
|
|
|
96214
96970
|
/**
|
|
96215
96971
|
* Audit data for Sentinel Notebook On Lake events.
|
|
96216
96972
|
*/
|
|
96973
|
+
@open
|
|
96217
96974
|
@complex model sentinelNotebookOnLakeAuditRecord extends auditData {
|
|
96218
96975
|
}
|
|
96219
96976
|
|
|
96220
96977
|
/**
|
|
96221
96978
|
* Audit data for Sentinel Package events.
|
|
96222
96979
|
*/
|
|
96980
|
+
@open
|
|
96223
96981
|
@complex model sentinelPackageAuditRecord extends auditData {
|
|
96224
96982
|
}
|
|
96225
96983
|
|
|
@@ -96235,66 +96993,77 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96235
96993
|
/**
|
|
96236
96994
|
* Audit data for SharePoint App Permission Operation events.
|
|
96237
96995
|
*/
|
|
96996
|
+
@open
|
|
96238
96997
|
@complex model sharePointAppPermissionOperationAuditRecord extends auditData {
|
|
96239
96998
|
}
|
|
96240
96999
|
|
|
96241
97000
|
/**
|
|
96242
97001
|
* Audit data for SharePoint events.
|
|
96243
97002
|
*/
|
|
97003
|
+
@open
|
|
96244
97004
|
@complex model sharePointAuditRecord extends auditData {
|
|
96245
97005
|
}
|
|
96246
97006
|
|
|
96247
97007
|
/**
|
|
96248
97008
|
* Audit data for SharePoint Comment Operation events.
|
|
96249
97009
|
*/
|
|
97010
|
+
@open
|
|
96250
97011
|
@complex model sharePointCommentOperationAuditRecord extends auditData {
|
|
96251
97012
|
}
|
|
96252
97013
|
|
|
96253
97014
|
/**
|
|
96254
97015
|
* Audit data for SharePoint Content Security Policy events.
|
|
96255
97016
|
*/
|
|
97017
|
+
@open
|
|
96256
97018
|
@complex model sharePointContentSecurityPolicyAuditRecord extends auditData {
|
|
96257
97019
|
}
|
|
96258
97020
|
|
|
96259
97021
|
/**
|
|
96260
97022
|
* Audit data for SharePoint Content Type Operation events.
|
|
96261
97023
|
*/
|
|
97024
|
+
@open
|
|
96262
97025
|
@complex model sharePointContentTypeOperationAuditRecord extends auditData {
|
|
96263
97026
|
}
|
|
96264
97027
|
|
|
96265
97028
|
/**
|
|
96266
97029
|
* Audit data for SharePoint E Signature events.
|
|
96267
97030
|
*/
|
|
97031
|
+
@open
|
|
96268
97032
|
@complex model sharePointESignatureAuditRecord extends auditData {
|
|
96269
97033
|
}
|
|
96270
97034
|
|
|
96271
97035
|
/**
|
|
96272
97036
|
* Audit data for SharePoint Field Operation events.
|
|
96273
97037
|
*/
|
|
97038
|
+
@open
|
|
96274
97039
|
@complex model sharePointFieldOperationAuditRecord extends auditData {
|
|
96275
97040
|
}
|
|
96276
97041
|
|
|
96277
97042
|
/**
|
|
96278
97043
|
* Audit data for SharePoint File Operation events.
|
|
96279
97044
|
*/
|
|
97045
|
+
@open
|
|
96280
97046
|
@complex model sharePointFileOperationAuditRecord extends auditData {
|
|
96281
97047
|
}
|
|
96282
97048
|
|
|
96283
97049
|
/**
|
|
96284
97050
|
* Audit data for SharePoint List Item Operation events.
|
|
96285
97051
|
*/
|
|
97052
|
+
@open
|
|
96286
97053
|
@complex model sharePointListItemOperationAuditRecord extends auditData {
|
|
96287
97054
|
}
|
|
96288
97055
|
|
|
96289
97056
|
/**
|
|
96290
97057
|
* Audit data for SharePoint List Operation events.
|
|
96291
97058
|
*/
|
|
97059
|
+
@open
|
|
96292
97060
|
@complex model sharePointListOperationAuditRecord extends auditData {
|
|
96293
97061
|
}
|
|
96294
97062
|
|
|
96295
97063
|
/**
|
|
96296
97064
|
* Audit data for SharePoint Sharing Operation events.
|
|
96297
97065
|
*/
|
|
97066
|
+
@open
|
|
96298
97067
|
@complex model sharePointSharingOperationAuditRecord extends auditData {
|
|
96299
97068
|
}
|
|
96300
97069
|
|
|
@@ -96311,18 +97080,21 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96311
97080
|
/**
|
|
96312
97081
|
* Audit data for Skype for Business cmdlets events.
|
|
96313
97082
|
*/
|
|
97083
|
+
@open
|
|
96314
97084
|
@complex model skypeForBusinessCmdletsAuditRecord extends auditData {
|
|
96315
97085
|
}
|
|
96316
97086
|
|
|
96317
97087
|
/**
|
|
96318
97088
|
* Audit data for Skype for Business PSTN Usage events.
|
|
96319
97089
|
*/
|
|
97090
|
+
@open
|
|
96320
97091
|
@complex model skypeForBusinessPSTNUsageAuditRecord extends auditData {
|
|
96321
97092
|
}
|
|
96322
97093
|
|
|
96323
97094
|
/**
|
|
96324
97095
|
* Audit data for Skype for Business Users Blocked events.
|
|
96325
97096
|
*/
|
|
97097
|
+
@open
|
|
96326
97098
|
@complex model skypeForBusinessUsersBlockedAuditRecord extends auditData {
|
|
96327
97099
|
}
|
|
96328
97100
|
|
|
@@ -96339,9 +97111,45 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96339
97111
|
/**
|
|
96340
97112
|
* Audit data for Sonar Detonation Content Meta events.
|
|
96341
97113
|
*/
|
|
97114
|
+
@open
|
|
96342
97115
|
@complex model sonarDetonationContentMetadata extends auditData {
|
|
96343
97116
|
}
|
|
96344
97117
|
|
|
97118
|
+
/**
|
|
97119
|
+
* Audit data for Sonar Detonation Entity events.
|
|
97120
|
+
*/
|
|
97121
|
+
@open
|
|
97122
|
+
@complex model sonarDetonationEntityAuditRecord extends auditData {
|
|
97123
|
+
}
|
|
97124
|
+
|
|
97125
|
+
/**
|
|
97126
|
+
* Audit data for Sonar File Detonation Entity events.
|
|
97127
|
+
*/
|
|
97128
|
+
@open
|
|
97129
|
+
@complex model sonarFileDetonationEntityAuditRecord extends auditData {
|
|
97130
|
+
}
|
|
97131
|
+
|
|
97132
|
+
/**
|
|
97133
|
+
* Audit data for Sonar Submission Entity events.
|
|
97134
|
+
*/
|
|
97135
|
+
@open
|
|
97136
|
+
@complex model sonarSubmissionEntityAuditRecord extends auditData {
|
|
97137
|
+
}
|
|
97138
|
+
|
|
97139
|
+
/**
|
|
97140
|
+
* Audit data for Sonar URL Detonation Entity events.
|
|
97141
|
+
*/
|
|
97142
|
+
@open
|
|
97143
|
+
@complex model sonarUrlDetonationEntityAuditRecord extends auditData {
|
|
97144
|
+
}
|
|
97145
|
+
|
|
97146
|
+
/**
|
|
97147
|
+
* Audit data for Spark Core Custom Live Pool events.
|
|
97148
|
+
*/
|
|
97149
|
+
@open
|
|
97150
|
+
@complex model sparkCoreCustomLivePoolRecord extends auditData {
|
|
97151
|
+
}
|
|
97152
|
+
|
|
96345
97153
|
@complex model sslCertificateEntity {
|
|
96346
97154
|
address: reference.`microsoft.graph`.physicalAddress | null;
|
|
96347
97155
|
alternateNames: string[] | null;
|
|
@@ -96389,6 +97197,13 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96389
97197
|
fileName: string | null;
|
|
96390
97198
|
}
|
|
96391
97199
|
|
|
97200
|
+
/**
|
|
97201
|
+
* Audit data for Submission Entity events.
|
|
97202
|
+
*/
|
|
97203
|
+
@open
|
|
97204
|
+
@complex model submissionEntityAuditRecord extends auditData {
|
|
97205
|
+
}
|
|
97206
|
+
|
|
96392
97207
|
@complex model submissionMailEvidence extends alertEvidence {
|
|
96393
97208
|
networkMessageId: string | null;
|
|
96394
97209
|
recipient: string | null;
|
|
@@ -96417,48 +97232,56 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96417
97232
|
/**
|
|
96418
97233
|
* Audit data for Supervisory Review Day X Insights events.
|
|
96419
97234
|
*/
|
|
97235
|
+
@open
|
|
96420
97236
|
@complex model supervisoryReviewDayXInsightsAuditRecord extends auditData {
|
|
96421
97237
|
}
|
|
96422
97238
|
|
|
96423
97239
|
/**
|
|
96424
97240
|
* Audit data for Synthetic Probe events.
|
|
96425
97241
|
*/
|
|
97242
|
+
@open
|
|
96426
97243
|
@complex model syntheticProbeAuditRecord extends auditData {
|
|
96427
97244
|
}
|
|
96428
97245
|
|
|
96429
97246
|
/**
|
|
96430
97247
|
* Audit data for Team Copilot Interaction events.
|
|
96431
97248
|
*/
|
|
97249
|
+
@open
|
|
96432
97250
|
@complex model teamCopilotInteractionAuditRecord extends auditData {
|
|
96433
97251
|
}
|
|
96434
97252
|
|
|
96435
97253
|
/**
|
|
96436
97254
|
* Audit data for Teams Easy Approvals events.
|
|
96437
97255
|
*/
|
|
97256
|
+
@open
|
|
96438
97257
|
@complex model teamsEasyApprovalsAuditRecord extends auditData {
|
|
96439
97258
|
}
|
|
96440
97259
|
|
|
96441
97260
|
/**
|
|
96442
97261
|
* Audit data for Teams Eval Data Hub Admin Operation events.
|
|
96443
97262
|
*/
|
|
97263
|
+
@open
|
|
96444
97264
|
@complex model teamsEvalDataHubAdminOperationAuditRecord extends auditData {
|
|
96445
97265
|
}
|
|
96446
97266
|
|
|
96447
97267
|
/**
|
|
96448
97268
|
* Audit data for Teams Eval Data Hub Data Access events.
|
|
96449
97269
|
*/
|
|
97270
|
+
@open
|
|
96450
97271
|
@complex model teamsEvalDataHubDataAccessAuditRecord extends auditData {
|
|
96451
97272
|
}
|
|
96452
97273
|
|
|
96453
97274
|
/**
|
|
96454
97275
|
* Audit data for Teams Eval Data Hub Permission Change events.
|
|
96455
97276
|
*/
|
|
97277
|
+
@open
|
|
96456
97278
|
@complex model teamsEvalDataHubPermissionChangeAuditRecord extends auditData {
|
|
96457
97279
|
}
|
|
96458
97280
|
|
|
96459
97281
|
/**
|
|
96460
97282
|
* Audit data for Teams Healthcare events.
|
|
96461
97283
|
*/
|
|
97284
|
+
@open
|
|
96462
97285
|
@complex model teamsHealthcareAuditRecord extends auditData {
|
|
96463
97286
|
}
|
|
96464
97287
|
|
|
@@ -96492,12 +97315,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96492
97315
|
/**
|
|
96493
97316
|
* Audit data for Teams Updates events.
|
|
96494
97317
|
*/
|
|
97318
|
+
@open
|
|
96495
97319
|
@complex model teamsUpdatesAuditRecord extends auditData {
|
|
96496
97320
|
}
|
|
96497
97321
|
|
|
96498
97322
|
/**
|
|
96499
97323
|
* Audit data for Tenant Allow Block List events.
|
|
96500
97324
|
*/
|
|
97325
|
+
@open
|
|
96501
97326
|
@complex model tenantAllowBlockListAuditRecord extends auditData {
|
|
96502
97327
|
}
|
|
96503
97328
|
|
|
@@ -96525,36 +97350,42 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96525
97350
|
/**
|
|
96526
97351
|
* Audit data for Threat Finder events.
|
|
96527
97352
|
*/
|
|
97353
|
+
@open
|
|
96528
97354
|
@complex model threatFinderAuditRecord extends auditData {
|
|
96529
97355
|
}
|
|
96530
97356
|
|
|
96531
97357
|
/**
|
|
96532
97358
|
* Audit data for Threat Intelligence Atp Content events.
|
|
96533
97359
|
*/
|
|
97360
|
+
@open
|
|
96534
97361
|
@complex model threatIntelligenceAtpContentData extends auditData {
|
|
96535
97362
|
}
|
|
96536
97363
|
|
|
96537
97364
|
/**
|
|
96538
97365
|
* Audit data for Threat Intelligence Export events.
|
|
96539
97366
|
*/
|
|
97367
|
+
@open
|
|
96540
97368
|
@complex model threatIntelligenceExportAuditRecord extends auditData {
|
|
96541
97369
|
}
|
|
96542
97370
|
|
|
96543
97371
|
/**
|
|
96544
97372
|
* Audit data for Threat Intelligence Mail events.
|
|
96545
97373
|
*/
|
|
97374
|
+
@open
|
|
96546
97375
|
@complex model threatIntelligenceMailData extends auditData {
|
|
96547
97376
|
}
|
|
96548
97377
|
|
|
96549
97378
|
/**
|
|
96550
97379
|
* Audit data for Threat Intelligence Object events.
|
|
96551
97380
|
*/
|
|
97381
|
+
@open
|
|
96552
97382
|
@complex model threatIntelligenceObjectAuditRecord extends auditData {
|
|
96553
97383
|
}
|
|
96554
97384
|
|
|
96555
97385
|
/**
|
|
96556
97386
|
* Audit data for Threat Intelligence Url Click events.
|
|
96557
97387
|
*/
|
|
97388
|
+
@open
|
|
96558
97389
|
@complex model threatIntelligenceUrlClickData extends auditData {
|
|
96559
97390
|
}
|
|
96560
97391
|
|
|
@@ -96570,6 +97401,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96570
97401
|
/**
|
|
96571
97402
|
* Audit data for Microsoft To Do events.
|
|
96572
97403
|
*/
|
|
97404
|
+
@open
|
|
96573
97405
|
@complex model todoAuditRecord extends auditData {
|
|
96574
97406
|
}
|
|
96575
97407
|
|
|
@@ -96583,30 +97415,35 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96583
97415
|
/**
|
|
96584
97416
|
* Audit data for Trainable Classifier events.
|
|
96585
97417
|
*/
|
|
97418
|
+
@open
|
|
96586
97419
|
@complex model trainableClassifierAuditRecord extends auditData {
|
|
96587
97420
|
}
|
|
96588
97421
|
|
|
96589
97422
|
/**
|
|
96590
97423
|
* Audit data for UAM Operation events.
|
|
96591
97424
|
*/
|
|
97425
|
+
@open
|
|
96592
97426
|
@complex model uamOperationAuditRecord extends auditData {
|
|
96593
97427
|
}
|
|
96594
97428
|
|
|
96595
97429
|
/**
|
|
96596
97430
|
* Audit data for Unified Group events.
|
|
96597
97431
|
*/
|
|
97432
|
+
@open
|
|
96598
97433
|
@complex model unifiedGroupAuditRecord extends auditData {
|
|
96599
97434
|
}
|
|
96600
97435
|
|
|
96601
97436
|
/**
|
|
96602
97437
|
* Audit data for Unified Simulation Matched Item events.
|
|
96603
97438
|
*/
|
|
97439
|
+
@open
|
|
96604
97440
|
@complex model unifiedSimulationMatchedItemAuditRecord extends auditData {
|
|
96605
97441
|
}
|
|
96606
97442
|
|
|
96607
97443
|
/**
|
|
96608
97444
|
* Audit data for Unified Simulation Summary events.
|
|
96609
97445
|
*/
|
|
97446
|
+
@open
|
|
96610
97447
|
@complex model unifiedSimulationSummaryAuditRecord extends auditData {
|
|
96611
97448
|
}
|
|
96612
97449
|
|
|
@@ -96617,12 +97454,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96617
97454
|
/**
|
|
96618
97455
|
* Audit data for Universal Print Management events.
|
|
96619
97456
|
*/
|
|
97457
|
+
@open
|
|
96620
97458
|
@complex model universalPrintManagementAuditRecord extends auditData {
|
|
96621
97459
|
}
|
|
96622
97460
|
|
|
96623
97461
|
/**
|
|
96624
97462
|
* Audit data for Universal Print Print Job events.
|
|
96625
97463
|
*/
|
|
97464
|
+
@open
|
|
96626
97465
|
@complex model universalPrintPrintJobAuditRecord extends auditData {
|
|
96627
97466
|
}
|
|
96628
97467
|
|
|
@@ -96633,21 +97472,28 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96633
97472
|
/**
|
|
96634
97473
|
* Audit data for URBAC Assignment events.
|
|
96635
97474
|
*/
|
|
97475
|
+
@open
|
|
96636
97476
|
@complex model urbacAssignmentAuditRecord extends auditData {
|
|
96637
97477
|
}
|
|
96638
97478
|
|
|
96639
97479
|
/**
|
|
96640
97480
|
* Audit data for URBAC Enable State events.
|
|
96641
97481
|
*/
|
|
97482
|
+
@open
|
|
96642
97483
|
@complex model urbacEnableStateAuditRecord extends auditData {
|
|
96643
97484
|
}
|
|
96644
97485
|
|
|
96645
97486
|
/**
|
|
96646
97487
|
* Audit data for URBAC Role events.
|
|
96647
97488
|
*/
|
|
97489
|
+
@open
|
|
96648
97490
|
@complex model urbacRoleAuditRecord extends auditData {
|
|
96649
97491
|
}
|
|
96650
97492
|
|
|
97493
|
+
@complex model urlEntityMapping extends entityMapping {
|
|
97494
|
+
addressColumn: string;
|
|
97495
|
+
}
|
|
97496
|
+
|
|
96651
97497
|
@complex model urlEvidence extends alertEvidence {
|
|
96652
97498
|
url: string | null;
|
|
96653
97499
|
}
|
|
@@ -96672,12 +97518,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96672
97518
|
/**
|
|
96673
97519
|
* Audit data for User Training events.
|
|
96674
97520
|
*/
|
|
97521
|
+
@open
|
|
96675
97522
|
@complex model userTrainingAuditRecord extends auditData {
|
|
96676
97523
|
}
|
|
96677
97524
|
|
|
96678
97525
|
/**
|
|
96679
97526
|
* Audit data for USX Workspace Onboarding events.
|
|
96680
97527
|
*/
|
|
97528
|
+
@open
|
|
96681
97529
|
@complex model usxWorkspaceOnboardingAuditRecord extends auditData {
|
|
96682
97530
|
}
|
|
96683
97531
|
|
|
@@ -96688,156 +97536,189 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96688
97536
|
/**
|
|
96689
97537
|
* Audit data for VFAM Create Policy events.
|
|
96690
97538
|
*/
|
|
97539
|
+
@open
|
|
96691
97540
|
@complex model vfamCreatePolicyAuditRecord extends auditData {
|
|
96692
97541
|
}
|
|
96693
97542
|
|
|
96694
97543
|
/**
|
|
96695
97544
|
* Audit data for VFAM Delete Policy events.
|
|
96696
97545
|
*/
|
|
97546
|
+
@open
|
|
96697
97547
|
@complex model vfamDeletePolicyAuditRecord extends auditData {
|
|
96698
97548
|
}
|
|
96699
97549
|
|
|
96700
97550
|
/**
|
|
96701
97551
|
* Audit data for VFAM Update Policy events.
|
|
96702
97552
|
*/
|
|
97553
|
+
@open
|
|
96703
97554
|
@complex model vfamUpdatePolicyAuditRecord extends auditData {
|
|
96704
97555
|
}
|
|
96705
97556
|
|
|
96706
97557
|
/**
|
|
96707
97558
|
* Audit data for Viva Amplify events.
|
|
96708
97559
|
*/
|
|
97560
|
+
@open
|
|
96709
97561
|
@complex model vivaAmplifyAuditRecord extends auditData {
|
|
96710
97562
|
}
|
|
96711
97563
|
|
|
96712
97564
|
/**
|
|
96713
97565
|
* Audit data for Viva Engage Events events.
|
|
96714
97566
|
*/
|
|
97567
|
+
@open
|
|
96715
97568
|
@complex model vivaEngageEventsAuditRecord extends auditData {
|
|
96716
97569
|
}
|
|
96717
97570
|
|
|
96718
97571
|
/**
|
|
96719
97572
|
* Audit data for Viva Engage Network Association events.
|
|
96720
97573
|
*/
|
|
97574
|
+
@open
|
|
96721
97575
|
@complex model vivaEngageNetworkAssociationAuditRecord extends auditData {
|
|
96722
97576
|
}
|
|
96723
97577
|
|
|
96724
97578
|
/**
|
|
96725
97579
|
* Audit data for Viva Engage Segment events.
|
|
96726
97580
|
*/
|
|
97581
|
+
@open
|
|
96727
97582
|
@complex model vivaEngageSegmentAuditRecord extends auditData {
|
|
96728
97583
|
}
|
|
96729
97584
|
|
|
96730
97585
|
/**
|
|
96731
97586
|
* Audit data for Viva Glint Advanced Configuration events.
|
|
96732
97587
|
*/
|
|
97588
|
+
@open
|
|
96733
97589
|
@complex model vivaGlintAdvancedConfigurationAuditRecord extends auditData {
|
|
96734
97590
|
}
|
|
96735
97591
|
|
|
97592
|
+
/**
|
|
97593
|
+
* Audit data for Viva Glint Agentic Campaign events.
|
|
97594
|
+
*/
|
|
97595
|
+
@open
|
|
97596
|
+
@complex model vivaGlintAgenticCampaignAuditRecord extends auditData {
|
|
97597
|
+
}
|
|
97598
|
+
|
|
96736
97599
|
/**
|
|
96737
97600
|
* Audit data for Viva Glint Feedback Program events.
|
|
96738
97601
|
*/
|
|
97602
|
+
@open
|
|
96739
97603
|
@complex model vivaGlintFeedbackProgramAuditRecord extends auditData {
|
|
96740
97604
|
}
|
|
96741
97605
|
|
|
96742
97606
|
/**
|
|
96743
97607
|
* Audit data for Viva Glint Organizational events.
|
|
96744
97608
|
*/
|
|
97609
|
+
@open
|
|
96745
97610
|
@complex model vivaGlintOrganizationalDataAuditRecord extends auditData {
|
|
96746
97611
|
}
|
|
96747
97612
|
|
|
96748
97613
|
/**
|
|
96749
97614
|
* Audit data for Viva Glint Pulse Program events.
|
|
96750
97615
|
*/
|
|
97616
|
+
@open
|
|
96751
97617
|
@complex model vivaGlintPulseProgramAuditRecord extends auditData {
|
|
96752
97618
|
}
|
|
96753
97619
|
|
|
96754
97620
|
/**
|
|
96755
97621
|
* Audit data for Viva Glint Pulse Program Respondent Rate events.
|
|
96756
97622
|
*/
|
|
97623
|
+
@open
|
|
96757
97624
|
@complex model vivaGlintPulseProgramRespondentRateAuditRecord extends auditData {
|
|
96758
97625
|
}
|
|
96759
97626
|
|
|
96760
97627
|
/**
|
|
96761
97628
|
* Audit data for Viva Glint Question events.
|
|
96762
97629
|
*/
|
|
97630
|
+
@open
|
|
96763
97631
|
@complex model vivaGlintQuestionAuditRecord extends auditData {
|
|
96764
97632
|
}
|
|
96765
97633
|
|
|
96766
97634
|
/**
|
|
96767
97635
|
* Audit data for Viva Glint Role events.
|
|
96768
97636
|
*/
|
|
97637
|
+
@open
|
|
96769
97638
|
@complex model vivaGlintRoleAuditRecord extends auditData {
|
|
96770
97639
|
}
|
|
96771
97640
|
|
|
96772
97641
|
/**
|
|
96773
97642
|
* Audit data for Viva Glint Rubicon events.
|
|
96774
97643
|
*/
|
|
97644
|
+
@open
|
|
96775
97645
|
@complex model vivaGlintRubiconAuditRecord extends auditData {
|
|
96776
97646
|
}
|
|
96777
97647
|
|
|
96778
97648
|
/**
|
|
96779
97649
|
* Audit data for Viva Glint Support Access events.
|
|
96780
97650
|
*/
|
|
97651
|
+
@open
|
|
96781
97652
|
@complex model vivaGlintSupportAccessAuditRecord extends auditData {
|
|
96782
97653
|
}
|
|
96783
97654
|
|
|
96784
97655
|
/**
|
|
96785
97656
|
* Audit data for Viva Glint System events.
|
|
96786
97657
|
*/
|
|
97658
|
+
@open
|
|
96787
97659
|
@complex model vivaGlintSystemAuditRecord extends auditData {
|
|
96788
97660
|
}
|
|
96789
97661
|
|
|
96790
97662
|
/**
|
|
96791
97663
|
* Audit data for Viva Glint User events.
|
|
96792
97664
|
*/
|
|
97665
|
+
@open
|
|
96793
97666
|
@complex model vivaGlintUserAuditRecord extends auditData {
|
|
96794
97667
|
}
|
|
96795
97668
|
|
|
96796
97669
|
/**
|
|
96797
97670
|
* Audit data for Viva Glint User Group events.
|
|
96798
97671
|
*/
|
|
97672
|
+
@open
|
|
96799
97673
|
@complex model vivaGlintUserGroupAuditRecord extends auditData {
|
|
96800
97674
|
}
|
|
96801
97675
|
|
|
96802
97676
|
/**
|
|
96803
97677
|
* Audit data for Viva Goals events.
|
|
96804
97678
|
*/
|
|
97679
|
+
@open
|
|
96805
97680
|
@complex model vivaGoalsAuditRecord extends auditData {
|
|
96806
97681
|
}
|
|
96807
97682
|
|
|
96808
97683
|
/**
|
|
96809
97684
|
* Audit data for Viva Learning Admin events.
|
|
96810
97685
|
*/
|
|
97686
|
+
@open
|
|
96811
97687
|
@complex model vivaLearningAdminAuditRecord extends auditData {
|
|
96812
97688
|
}
|
|
96813
97689
|
|
|
96814
97690
|
/**
|
|
96815
97691
|
* Audit data for Viva Learning events.
|
|
96816
97692
|
*/
|
|
97693
|
+
@open
|
|
96817
97694
|
@complex model vivaLearningAuditRecord extends auditData {
|
|
96818
97695
|
}
|
|
96819
97696
|
|
|
96820
97697
|
/**
|
|
96821
97698
|
* Audit data for Viva Pulse Admin events.
|
|
96822
97699
|
*/
|
|
97700
|
+
@open
|
|
96823
97701
|
@complex model vivaPulseAdminAuditRecord extends auditData {
|
|
96824
97702
|
}
|
|
96825
97703
|
|
|
96826
97704
|
/**
|
|
96827
97705
|
* Audit data for Viva Pulse Organizer events.
|
|
96828
97706
|
*/
|
|
97707
|
+
@open
|
|
96829
97708
|
@complex model vivaPulseOrganizerAuditRecord extends auditData {
|
|
96830
97709
|
}
|
|
96831
97710
|
|
|
96832
97711
|
/**
|
|
96833
97712
|
* Audit data for Viva Pulse Report events.
|
|
96834
97713
|
*/
|
|
97714
|
+
@open
|
|
96835
97715
|
@complex model vivaPulseReportAuditRecord extends auditData {
|
|
96836
97716
|
}
|
|
96837
97717
|
|
|
96838
97718
|
/**
|
|
96839
97719
|
* Audit data for Viva Pulse Response events.
|
|
96840
97720
|
*/
|
|
97721
|
+
@open
|
|
96841
97722
|
@complex model vivaPulseResponseAuditRecord extends auditData {
|
|
96842
97723
|
}
|
|
96843
97724
|
|
|
@@ -96851,12 +97732,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96851
97732
|
/**
|
|
96852
97733
|
* Audit data for WDATP Alerts events.
|
|
96853
97734
|
*/
|
|
97735
|
+
@open
|
|
96854
97736
|
@complex model wdatpAlertsAuditRecord extends auditData {
|
|
96855
97737
|
}
|
|
96856
97738
|
|
|
96857
97739
|
/**
|
|
96858
97740
|
* Audit data for Web Content Filtering events.
|
|
96859
97741
|
*/
|
|
97742
|
+
@open
|
|
96860
97743
|
@complex model webContentFilteringAuditRecord extends auditData {
|
|
96861
97744
|
}
|
|
96862
97745
|
|
|
@@ -96878,37 +97761,31 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96878
97761
|
/**
|
|
96879
97762
|
* Audit data for Windows365 Customer Lockbox events.
|
|
96880
97763
|
*/
|
|
97764
|
+
@open
|
|
96881
97765
|
@complex model windows365CustomerLockboxAuditRecord extends auditData {
|
|
96882
97766
|
}
|
|
96883
97767
|
|
|
96884
97768
|
/**
|
|
96885
97769
|
* Audit data for Workplace Analytics events.
|
|
96886
97770
|
*/
|
|
97771
|
+
@open
|
|
96887
97772
|
@complex model workplaceAnalyticsAuditRecord extends auditData {
|
|
96888
97773
|
}
|
|
96889
97774
|
|
|
96890
97775
|
/**
|
|
96891
97776
|
* Audit data for Yammer events.
|
|
96892
97777
|
*/
|
|
97778
|
+
@open
|
|
96893
97779
|
@complex model yammerAuditRecord extends auditData {
|
|
96894
97780
|
}
|
|
96895
97781
|
|
|
96896
97782
|
/**
|
|
96897
97783
|
* Audit data for Yammer User Hiding events.
|
|
96898
97784
|
*/
|
|
97785
|
+
@open
|
|
96899
97786
|
@complex model yammerUserHidingAuditRecord extends auditData {
|
|
96900
97787
|
}
|
|
96901
97788
|
|
|
96902
|
-
@entity model accountEntityMapping extends entityMapping {
|
|
96903
|
-
aadUserIdColumn: string | null;
|
|
96904
|
-
dnsDomainColumn: string | null;
|
|
96905
|
-
nameColumn: string | null;
|
|
96906
|
-
ntDomainColumn: string | null;
|
|
96907
|
-
sidColumn: string | null;
|
|
96908
|
-
upnColumn: string | null;
|
|
96909
|
-
upnSuffixColumn: string | null;
|
|
96910
|
-
}
|
|
96911
|
-
|
|
96912
97789
|
@entity model aggregatedEnvironment extends MsGraph.SharedModels.entity {
|
|
96913
97790
|
count: int32;
|
|
96914
97791
|
@computed @key kind: string;
|
|
@@ -96954,29 +97831,6 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96954
97831
|
title: string | null;
|
|
96955
97832
|
}
|
|
96956
97833
|
|
|
96957
|
-
@entity model alertTemplate extends reference.`microsoft.graph`.entity {
|
|
96958
|
-
|
|
96959
|
-
// Warning: Malformed version string '2025-01' detected.
|
|
96960
|
-
category: string | null;
|
|
96961
|
-
customDetails: alertCustomDetails | null;
|
|
96962
|
-
description: string;
|
|
96963
|
-
|
|
96964
|
-
// Warning: Malformed version string '2025-01' detected.
|
|
96965
|
-
impactedAssets: impactedAsset[];
|
|
96966
|
-
|
|
96967
|
-
// Warning: Malformed version string '2025-01' detected.
|
|
96968
|
-
mitreTechniques: string[] | null;
|
|
96969
|
-
recommendedActions: string | null;
|
|
96970
|
-
severity: alertSeverity;
|
|
96971
|
-
tactics: mitreTactic[] | null;
|
|
96972
|
-
title: string;
|
|
96973
|
-
@contains entityMappings: entityMappingConfiguration;
|
|
96974
|
-
}
|
|
96975
|
-
|
|
96976
|
-
@entity model amazonResourceEntityMapping extends entityMapping {
|
|
96977
|
-
amazonResourceIdColumn: string;
|
|
96978
|
-
}
|
|
96979
|
-
|
|
96980
97834
|
@entity model analyzedEmail extends reference.`microsoft.graph`.entity {
|
|
96981
97835
|
alertIds: string[] | null;
|
|
96982
97836
|
attachments: analyzedEmailAttachment[] | null;
|
|
@@ -97087,10 +97941,6 @@ namespace reference.`microsoft.graph.security` {
|
|
|
97087
97941
|
isAutomatic: boolean;
|
|
97088
97942
|
}
|
|
97089
97943
|
|
|
97090
|
-
@entity model azureResourceEntityMapping extends entityMapping {
|
|
97091
|
-
resourceIdColumn: string;
|
|
97092
|
-
}
|
|
97093
|
-
|
|
97094
97944
|
@abstract
|
|
97095
97945
|
@entity model case extends reference.`microsoft.graph`.entity {
|
|
97096
97946
|
@computed createdDateTime: offsetDateTime | null;
|
|
@@ -97140,11 +97990,6 @@ namespace reference.`microsoft.graph.security` {
|
|
|
97140
97990
|
supportedTrafficTypes: trafficType[];
|
|
97141
97991
|
}
|
|
97142
97992
|
|
|
97143
|
-
@entity model cloudApplicationEntityMapping extends entityMapping {
|
|
97144
|
-
appIdColumn: string | null;
|
|
97145
|
-
nameColumn: string | null;
|
|
97146
|
-
}
|
|
97147
|
-
|
|
97148
97993
|
@abstract
|
|
97149
97994
|
@entity model collaborationRoot extends reference.`microsoft.graph`.entity {
|
|
97150
97995
|
@contains analyzedEmails: analyzedEmail[];
|
|
@@ -97187,19 +98032,11 @@ namespace reference.`microsoft.graph.security` {
|
|
|
97187
98032
|
@entity model departmentTemplate extends filePlanDescriptorTemplate {
|
|
97188
98033
|
}
|
|
97189
98034
|
|
|
97190
|
-
@entity model detectionAction extends reference.`microsoft.graph`.entity {
|
|
97191
|
-
automatedActions: automatedActionSet | null;
|
|
97192
|
-
organizationalScope: organizationalScope | null;
|
|
97193
|
-
|
|
97194
|
-
// Warning: Malformed version string '2025-01' detected.
|
|
97195
|
-
responseActions: responseAction[] | null;
|
|
97196
|
-
@contains alertTemplate: alertTemplate;
|
|
97197
|
-
}
|
|
97198
|
-
|
|
97199
98035
|
@entity model detectionRule extends reference.`microsoft.graph`.entity {
|
|
97200
98036
|
createdBy: string;
|
|
97201
98037
|
@computed createdDateTime: offsetDateTime;
|
|
97202
98038
|
description: string | null;
|
|
98039
|
+
detectionAction: detectionAction;
|
|
97203
98040
|
|
|
97204
98041
|
// Warning: Malformed version string '2025-01' detected.
|
|
97205
98042
|
detectorId: string | null;
|
|
@@ -97215,7 +98052,6 @@ namespace reference.`microsoft.graph.security` {
|
|
|
97215
98052
|
queryCondition: queryCondition;
|
|
97216
98053
|
schedule: ruleSchedule;
|
|
97217
98054
|
status: detectionRuleStatus;
|
|
97218
|
-
@contains detectionAction: detectionAction | null;
|
|
97219
98055
|
}
|
|
97220
98056
|
|
|
97221
98057
|
@entity model discoveredCloudAppDetail extends reference.`microsoft.graph`.entity {
|
|
@@ -97341,12 +98177,6 @@ namespace reference.`microsoft.graph.security` {
|
|
|
97341
98177
|
@computed @key stageNumber: string;
|
|
97342
98178
|
}
|
|
97343
98179
|
|
|
97344
|
-
@entity model dnsEntityMapping extends entityMapping {
|
|
97345
|
-
domainNameColumn: string;
|
|
97346
|
-
hostIpAddressColumn: string;
|
|
97347
|
-
serverIpColumn: string;
|
|
97348
|
-
}
|
|
97349
|
-
|
|
97350
98180
|
@entity model ediscoveryAddToReviewSetOperation extends caseOperation {
|
|
97351
98181
|
additionalDataOptions: additionalDataOptions | null;
|
|
97352
98182
|
cloudAttachmentVersion: cloudAttachmentVersion | null;
|
|
@@ -97547,30 +98377,6 @@ namespace reference.`microsoft.graph.security` {
|
|
|
97547
98377
|
role: entityDefinitionInputRole;
|
|
97548
98378
|
}
|
|
97549
98379
|
|
|
97550
|
-
@abstract
|
|
97551
|
-
@entity model entityMapping extends reference.`microsoft.graph`.entity {
|
|
97552
|
-
}
|
|
97553
|
-
|
|
97554
|
-
@entity model entityMappingConfiguration extends reference.`microsoft.graph`.entity {
|
|
97555
|
-
@contains accounts: accountEntityMapping[];
|
|
97556
|
-
@contains amazonResources: amazonResourceEntityMapping[];
|
|
97557
|
-
@contains azureResources: azureResourceEntityMapping[];
|
|
97558
|
-
@contains cloudApplications: cloudApplicationEntityMapping[];
|
|
97559
|
-
@contains dns: dnsEntityMapping[];
|
|
97560
|
-
@contains files: fileEntityMapping[];
|
|
97561
|
-
@contains googleCloudResources: googleCloudResourceEntityMapping[];
|
|
97562
|
-
@contains hosts: hostEntityMapping[];
|
|
97563
|
-
@contains ips: ipEntityMapping[];
|
|
97564
|
-
@contains mailboxes: mailboxEntityMapping[];
|
|
97565
|
-
@contains mailClusters: mailClusterEntityMapping[];
|
|
97566
|
-
@contains mailMessages: mailMessageEntityMapping[];
|
|
97567
|
-
@contains oAuthApplications: oAuthApplicationEntityMapping[];
|
|
97568
|
-
@contains processes: processEntityMapping[];
|
|
97569
|
-
@contains registryValues: registryValueEntityMapping[];
|
|
97570
|
-
@contains securityGroups: securityGroupEntityMapping[];
|
|
97571
|
-
@contains urls: urlEntityMapping[];
|
|
97572
|
-
}
|
|
97573
|
-
|
|
97574
98380
|
@entity model environment extends reference.`microsoft.graph`.entity {
|
|
97575
98381
|
kind: environmentKind;
|
|
97576
98382
|
}
|
|
@@ -97594,12 +98400,6 @@ namespace reference.`microsoft.graph.security` {
|
|
|
97594
98400
|
fileContent: string;
|
|
97595
98401
|
}
|
|
97596
98402
|
|
|
97597
|
-
@entity model fileEntityMapping extends entityMapping {
|
|
97598
|
-
nameColumn: string | null;
|
|
97599
|
-
sha1Column: string | null;
|
|
97600
|
-
sha256Column: string | null;
|
|
97601
|
-
}
|
|
97602
|
-
|
|
97603
98403
|
@entity model filePlanDescriptor extends reference.`microsoft.graph`.entity {
|
|
97604
98404
|
authority: filePlanAuthority | null;
|
|
97605
98405
|
category: filePlanAppliedCategory | null;
|
|
@@ -97630,10 +98430,6 @@ namespace reference.`microsoft.graph.security` {
|
|
|
97630
98430
|
fileUrl: string;
|
|
97631
98431
|
}
|
|
97632
98432
|
|
|
97633
|
-
@entity model googleCloudResourceEntityMapping extends entityMapping {
|
|
97634
|
-
fullResourceNameColumn: string;
|
|
97635
|
-
}
|
|
97636
|
-
|
|
97637
98433
|
@entity model healthIssue extends reference.`microsoft.graph`.entity {
|
|
97638
98434
|
additionalInformation: string[];
|
|
97639
98435
|
@computed createdDateTime: offsetDateTime;
|
|
@@ -97686,14 +98482,6 @@ namespace reference.`microsoft.graph.security` {
|
|
|
97686
98482
|
@references host: host;
|
|
97687
98483
|
}
|
|
97688
98484
|
|
|
97689
|
-
@entity model hostEntityMapping extends entityMapping {
|
|
97690
|
-
deviceIdColumn: string | null;
|
|
97691
|
-
dnsDomainColumn: string | null;
|
|
97692
|
-
nameColumn: string | null;
|
|
97693
|
-
netBiosNameColumn: string | null;
|
|
97694
|
-
ntDomainColumn: string | null;
|
|
97695
|
-
}
|
|
97696
|
-
|
|
97697
98485
|
@entity model hostname extends host {
|
|
97698
98486
|
registrant: string | null;
|
|
97699
98487
|
registrar: string | null;
|
|
@@ -97846,11 +98634,6 @@ namespace reference.`microsoft.graph.security` {
|
|
|
97846
98634
|
netblock: string | null;
|
|
97847
98635
|
}
|
|
97848
98636
|
|
|
97849
|
-
@entity model ipEntityMapping extends entityMapping {
|
|
97850
|
-
addressColumn: string | null;
|
|
97851
|
-
scopeColumn: string | null;
|
|
97852
|
-
}
|
|
97853
|
-
|
|
97854
98637
|
@entity model labelsRoot extends reference.`microsoft.graph`.entity {
|
|
97855
98638
|
@contains authorities: authorityTemplate[];
|
|
97856
98639
|
@contains categories: categoryTemplate[];
|
|
@@ -97860,22 +98643,6 @@ namespace reference.`microsoft.graph.security` {
|
|
|
97860
98643
|
@contains retentionLabels: retentionLabel[];
|
|
97861
98644
|
}
|
|
97862
98645
|
|
|
97863
|
-
@entity model mailboxEntityMapping extends entityMapping {
|
|
97864
|
-
primaryAddressColumn: string;
|
|
97865
|
-
}
|
|
97866
|
-
|
|
97867
|
-
@entity model mailClusterEntityMapping extends entityMapping {
|
|
97868
|
-
queryColumn: string;
|
|
97869
|
-
sourceColumn: string;
|
|
97870
|
-
}
|
|
97871
|
-
|
|
97872
|
-
@entity model mailMessageEntityMapping extends entityMapping {
|
|
97873
|
-
networkMessageIdColumn: string;
|
|
97874
|
-
recipientColumn: string;
|
|
97875
|
-
senderColumn: string;
|
|
97876
|
-
subjectColumn: string;
|
|
97877
|
-
}
|
|
97878
|
-
|
|
97879
98646
|
@entity model manualAlert extends alert {
|
|
97880
98647
|
isExcludedFromCorrelation: boolean;
|
|
97881
98648
|
linkToIncident: int64 | null;
|
|
@@ -97888,10 +98655,6 @@ namespace reference.`microsoft.graph.security` {
|
|
|
97888
98655
|
name: string | null;
|
|
97889
98656
|
}
|
|
97890
98657
|
|
|
97891
|
-
@entity model oAuthApplicationEntityMapping extends entityMapping {
|
|
97892
|
-
oAuthAppIdColumn: string;
|
|
97893
|
-
}
|
|
97894
|
-
|
|
97895
98658
|
@entity model passiveDnsRecord extends artifact {
|
|
97896
98659
|
collectedDateTime: offsetDateTime;
|
|
97897
98660
|
firstSeenDateTime: offsetDateTime;
|
|
@@ -97912,16 +98675,6 @@ namespace reference.`microsoft.graph.security` {
|
|
|
97912
98675
|
status: policyStatus | null;
|
|
97913
98676
|
}
|
|
97914
98677
|
|
|
97915
|
-
@entity model processEntityMapping extends entityMapping {
|
|
97916
|
-
sha1Column: string | null;
|
|
97917
|
-
sha256Column: string | null;
|
|
97918
|
-
}
|
|
97919
|
-
|
|
97920
|
-
@entity model registryValueEntityMapping extends entityMapping {
|
|
97921
|
-
keyColumn: string;
|
|
97922
|
-
valueNameColumn: string;
|
|
97923
|
-
}
|
|
97924
|
-
|
|
97925
98678
|
@entity model retentionEvent extends reference.`microsoft.graph`.entity {
|
|
97926
98679
|
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
97927
98680
|
@computed createdDateTime: offsetDateTime | null;
|
|
@@ -97985,12 +98738,6 @@ namespace reference.`microsoft.graph.security` {
|
|
|
97985
98738
|
@contains informationProtection: informationProtection | null;
|
|
97986
98739
|
}
|
|
97987
98740
|
|
|
97988
|
-
@entity model securityGroupEntityMapping extends entityMapping {
|
|
97989
|
-
distinguishedNameColumn: string | null;
|
|
97990
|
-
objectIdColumn: string | null;
|
|
97991
|
-
sidColumn: string | null;
|
|
97992
|
-
}
|
|
97993
|
-
|
|
97994
98741
|
@entity model sensitivityLabel extends reference.`microsoft.graph`.entity {
|
|
97995
98742
|
color: string | null;
|
|
97996
98743
|
contentFormats: string[] | null;
|
|
@@ -98138,10 +98885,6 @@ namespace reference.`microsoft.graph.security` {
|
|
|
98138
98885
|
@references group: reference.`microsoft.graph`.group;
|
|
98139
98886
|
}
|
|
98140
98887
|
|
|
98141
|
-
@entity model urlEntityMapping extends entityMapping {
|
|
98142
|
-
addressColumn: string;
|
|
98143
|
-
}
|
|
98144
|
-
|
|
98145
98888
|
@entity model urlThreatSubmission extends threatSubmission {
|
|
98146
98889
|
webUrl: string;
|
|
98147
98890
|
}
|
|
@@ -98949,9 +99692,35 @@ namespace reference.`microsoft.graph.security` {
|
|
|
98949
99692
|
TeamsEvalDataHubPermissionChange: 445,
|
|
98950
99693
|
TeamsEvalDataHubAdminOperation: 446,
|
|
98951
99694
|
VivaGlintOrganizationalData: 447,
|
|
98952
|
-
|
|
98953
|
-
|
|
98954
|
-
|
|
99695
|
+
AlertSubmission: 448,
|
|
99696
|
+
AlertSubmissionResultDetail: 449,
|
|
99697
|
+
ComplianceSitGradingSharePoint: 450,
|
|
99698
|
+
CompliancePolicyGradingSharePoint: 451,
|
|
99699
|
+
AzureAISearchAudit: 452,
|
|
99700
|
+
P4AIRiskScoreRecord: 453,
|
|
99701
|
+
DragonCopilotAdmin: 454,
|
|
99702
|
+
AISpanOutputs: 455,
|
|
99703
|
+
EopSubmissionFeedEntity: 456,
|
|
99704
|
+
SonarFileDetonationEntity: 457,
|
|
99705
|
+
SonarSubmissionEntity: 458,
|
|
99706
|
+
SonarUrlDetonationEntity: 459,
|
|
99707
|
+
SubmissionEntity: 460,
|
|
99708
|
+
SonarDetonationEntity: 461,
|
|
99709
|
+
MicrosoftTeamsUserConcern: 462,
|
|
99710
|
+
VivaGlintAgenticCampaign: 463,
|
|
99711
|
+
MSPVectorSearchContentMetadata: 464,
|
|
99712
|
+
FabricPolicy: 465,
|
|
99713
|
+
SecurityCopilotAgentIdentityManagement: 466,
|
|
99714
|
+
CopilotSessionSharing: 467,
|
|
99715
|
+
DragonCopilotAccess: 468,
|
|
99716
|
+
DragonCopilotClinicalData: 469,
|
|
99717
|
+
DragonCopilotSession: 470,
|
|
99718
|
+
MosAgentInfoRecordV2: 471,
|
|
99719
|
+
SecurityDevelopmentLifecycleAILog: 472,
|
|
99720
|
+
MDASH: 473,
|
|
99721
|
+
DefenderSecurityForAIConfiguration: 474,
|
|
99722
|
+
SparkCoreCustomLivePool: 475,
|
|
99723
|
+
unknownFutureValue: 476,
|
|
98955
99724
|
}
|
|
98956
99725
|
|
|
98957
99726
|
/**
|
|
@@ -101181,6 +101950,10 @@ namespace reference.`microsoft.graph.tenantGovernanceServices` {
|
|
|
101181
101950
|
|
|
101182
101951
|
@entity model relatedTenant extends reference.`microsoft.graph`.entity {
|
|
101183
101952
|
@computed createdDateTime: offsetDateTime;
|
|
101953
|
+
/**
|
|
101954
|
+
* Indicates whether this tenant is a Microsoft infrastructure tenant.
|
|
101955
|
+
*/
|
|
101956
|
+
isMicrosoftInfrastructure: boolean;
|
|
101184
101957
|
@references appB2BSignInActivityMetrics: b2BSignInActivityMetrics | null;
|
|
101185
101958
|
@references b2BRegistrationMetrics: b2bRegistrationMetrics | null;
|
|
101186
101959
|
@references b2BSignInActivityMetrics: b2BSignInActivityMetrics | null;
|