@microsoft/typespec-msgraph-reference 1.0.5 → 1.0.7
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 +19 -19
- package/.rush/temp/shrinkwrap-deps.json +10 -10
- package/CHANGELOG.md +18 -0
- package/lib/Bleu/Beta/main.tsp +235 -6
- package/lib/Bleu/V1.0/main.tsp +672 -12
- package/lib/Delos/Beta/main.tsp +3542 -22
- package/lib/Delos/V1.0/main.tsp +2963 -38
- package/lib/Fairfax/Beta/main.tsp +360 -5
- package/lib/Fairfax/V1.0/main.tsp +325 -25
- package/lib/GovSG/Beta/main.tsp +1 -0
- package/lib/GovSG/V1.0/main.tsp +29 -1
- package/lib/Mooncake/Beta/main.tsp +209 -4
- package/lib/Mooncake/V1.0/main.tsp +122 -1
- package/lib/Prod/Beta/main.tsp +1550 -175
- package/lib/Prod/V1.0/main.tsp +3736 -84
- package/lib/USNat/Beta/main.tsp +375 -2
- package/lib/USNat/V1.0/main.tsp +317 -22
- package/lib/USSec/Beta/main.tsp +392 -2
- package/lib/USSec/V1.0/main.tsp +317 -22
- package/package.json +2 -2
package/lib/Prod/V1.0/main.tsp
CHANGED
|
@@ -9,6 +9,7 @@ scalar binary; //TODO: Enables support for Edm.Binary
|
|
|
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
11
|
@deprecatedDefinition("identityProvider", "<ChangeLogCategory>", "2021-08-24", "2023-03-15", "The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API.")
|
|
12
|
+
@privatePreviewDefinition("remoteTenantGroupsAPI", "2025-12-02", "2028-12-07", "<theOwner>")
|
|
12
13
|
@deprecatedDefinition("PasskeyGlobalProperties", "<ChangeLogCategory>", "2025-10-15", "2027-10-15", "This property is deprecated and will stop returning data on October 15, 2027. Please use passkeyProfiles property.")
|
|
13
14
|
@deprecatedDefinition("Removal", "<ChangeLogCategory>", "2026-01-28", "2028-01-01", "This API is deprecated and will stop returning data after January, 2028.")
|
|
14
15
|
// Metadata item DeprecatedDefinition_Removal was already defined with a different value.
|
|
@@ -1073,6 +1074,13 @@ namespace reference.`microsoft.graph` {
|
|
|
1073
1074
|
authenticationContextValue: string | null;
|
|
1074
1075
|
}
|
|
1075
1076
|
|
|
1077
|
+
@complex model authenticationAppDeviceDetails {
|
|
1078
|
+
appVersion: string | null;
|
|
1079
|
+
clientApp: string | null;
|
|
1080
|
+
deviceId: string | null;
|
|
1081
|
+
operatingSystem: string | null;
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1076
1084
|
@complex model authenticationAttributeCollectionInputConfiguration {
|
|
1077
1085
|
attribute: string;
|
|
1078
1086
|
defaultValue: string | null;
|
|
@@ -1964,6 +1972,12 @@ namespace reference.`microsoft.graph` {
|
|
|
1964
1972
|
locale: string | null;
|
|
1965
1973
|
}
|
|
1966
1974
|
|
|
1975
|
+
@complex model cloudVideoInteropInfo {
|
|
1976
|
+
moreInfoWebUrl: string | null;
|
|
1977
|
+
tenantKey: string | null;
|
|
1978
|
+
videoTeleconferenceId: string | null;
|
|
1979
|
+
}
|
|
1980
|
+
|
|
1967
1981
|
@complex model coachmarkLocation {
|
|
1968
1982
|
length: int32 | null;
|
|
1969
1983
|
offset: int32 | null;
|
|
@@ -2354,6 +2368,15 @@ namespace reference.`microsoft.graph` {
|
|
|
2354
2368
|
applicationRestrictions: customAppManagementApplicationConfiguration | null;
|
|
2355
2369
|
}
|
|
2356
2370
|
|
|
2371
|
+
@complex model customDataProvidedResourceUploadSessionRequest {
|
|
2372
|
+
data: reference.`microsoft.graph.customDataProvidedResourcePayloads`.data;
|
|
2373
|
+
}
|
|
2374
|
+
|
|
2375
|
+
@complex model customDataProvidedResourceUploadStats {
|
|
2376
|
+
filesUploaded: int32;
|
|
2377
|
+
totalBytesUploaded: int64;
|
|
2378
|
+
}
|
|
2379
|
+
|
|
2357
2380
|
@abstract
|
|
2358
2381
|
@complex model customExtensionAuthenticationConfiguration {
|
|
2359
2382
|
}
|
|
@@ -5777,6 +5800,10 @@ namespace reference.`microsoft.graph` {
|
|
|
5777
5800
|
@complex model placeMode {
|
|
5778
5801
|
}
|
|
5779
5802
|
|
|
5803
|
+
@complex model placeServicePlanInfo {
|
|
5804
|
+
servicePlanId: string | null;
|
|
5805
|
+
}
|
|
5806
|
+
|
|
5780
5807
|
@open
|
|
5781
5808
|
@complex model plannerAppliedCategories {
|
|
5782
5809
|
}
|
|
@@ -9296,6 +9323,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9296
9323
|
@references environment: accessPackageResourceEnvironment | null;
|
|
9297
9324
|
@contains roles: accessPackageResourceRole[];
|
|
9298
9325
|
@contains scopes: accessPackageResourceScope[];
|
|
9326
|
+
@contains uploadSessions: customDataProvidedResourceUploadSession[];
|
|
9299
9327
|
}
|
|
9300
9328
|
|
|
9301
9329
|
@entity model accessPackageResourceEnvironment extends entity {
|
|
@@ -9542,9 +9570,6 @@ namespace reference.`microsoft.graph` {
|
|
|
9542
9570
|
@references sponsors: directoryObject[];
|
|
9543
9571
|
}
|
|
9544
9572
|
|
|
9545
|
-
/**
|
|
9546
|
-
* Represents a Microsoft Entra user account.
|
|
9547
|
-
*/
|
|
9548
9573
|
@open
|
|
9549
9574
|
@entity model agentUser extends user {
|
|
9550
9575
|
}
|
|
@@ -11650,6 +11675,13 @@ namespace reference.`microsoft.graph` {
|
|
|
11650
11675
|
@entity model cloudPcReport extends entity {
|
|
11651
11676
|
}
|
|
11652
11677
|
|
|
11678
|
+
@entity model cloudPcServicePlan extends entity {
|
|
11679
|
+
displayName: string;
|
|
11680
|
+
ramInGB: int32;
|
|
11681
|
+
storageInGB: int32;
|
|
11682
|
+
vCpuCount: int32;
|
|
11683
|
+
}
|
|
11684
|
+
|
|
11653
11685
|
@entity model cloudPcUserSetting extends entity {
|
|
11654
11686
|
@computed createdDateTime: offsetDateTime | null;
|
|
11655
11687
|
displayName: string | null;
|
|
@@ -12059,6 +12091,7 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
12059
12091
|
appId: string | null;
|
|
12060
12092
|
assetId: string | null;
|
|
12061
12093
|
availableTo: packageStatus;
|
|
12094
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
12062
12095
|
deployedTo: packageStatus;
|
|
12063
12096
|
displayName: string | null;
|
|
12064
12097
|
elementTypes: string[];
|
|
@@ -12083,6 +12116,7 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
12083
12116
|
elementDetails: packageElementDetail[];
|
|
12084
12117
|
longDescription: string | null;
|
|
12085
12118
|
sensitivity: string | null;
|
|
12119
|
+
sharedWithUsersAndGroups: packageAccessEntity[];
|
|
12086
12120
|
}
|
|
12087
12121
|
|
|
12088
12122
|
@entity model copilotReportRoot extends entity {
|
|
@@ -12160,6 +12194,30 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
12160
12194
|
endpointConfiguration: customExtensionEndpointConfiguration | null;
|
|
12161
12195
|
}
|
|
12162
12196
|
|
|
12197
|
+
@entity model customDataProvidedResource extends accessPackageResource {
|
|
12198
|
+
notificationEndpointConfiguration: customExtensionEndpointConfiguration | null;
|
|
12199
|
+
}
|
|
12200
|
+
|
|
12201
|
+
@entity model customDataProvidedResourceAccessReviewUploadSession extends customDataProvidedResourceUploadSession {
|
|
12202
|
+
}
|
|
12203
|
+
|
|
12204
|
+
@entity model customDataProvidedResourceFile extends entity {
|
|
12205
|
+
name: string;
|
|
12206
|
+
size: int64;
|
|
12207
|
+
uploadedDateTime: offsetDateTime;
|
|
12208
|
+
}
|
|
12209
|
+
|
|
12210
|
+
@abstract
|
|
12211
|
+
@entity model customDataProvidedResourceUploadSession extends entity {
|
|
12212
|
+
@computed createdDateTime: offsetDateTime;
|
|
12213
|
+
data: reference.`microsoft.graph.customDataProvidedResourcePayloads`.data | null;
|
|
12214
|
+
isUploadDone: boolean;
|
|
12215
|
+
referenceId: string | null;
|
|
12216
|
+
stats: customDataProvidedResourceUploadStats;
|
|
12217
|
+
status: customDataProvidedResourceUploadStatus;
|
|
12218
|
+
@references files: customDataProvidedResourceFile[];
|
|
12219
|
+
}
|
|
12220
|
+
|
|
12163
12221
|
@entity model customExtensionStageSetting extends entity {
|
|
12164
12222
|
stage: accessPackageCustomExtensionStage;
|
|
12165
12223
|
@references customExtension: customCalloutExtension | null;
|
|
@@ -12328,6 +12386,7 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
12328
12386
|
heightAdjustableState: placeFeatureEnablement;
|
|
12329
12387
|
mailboxDetails: mailboxDetails | null;
|
|
12330
12388
|
mode: placeMode | null;
|
|
12389
|
+
servicePlans: placeServicePlanInfo[];
|
|
12331
12390
|
}
|
|
12332
12391
|
|
|
12333
12392
|
/**
|
|
@@ -13770,6 +13829,10 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
13770
13829
|
@contains federationConfigurations: identityProviderBase[];
|
|
13771
13830
|
@contains onPremisesSynchronization: onPremisesDirectorySynchronization[];
|
|
13772
13831
|
@contains publicKeyInfrastructure: publicKeyInfrastructureRoot | null;
|
|
13832
|
+
@contains recovery: reference.`microsoft.graph.entraRecoveryServices`.recovery | null;
|
|
13833
|
+
|
|
13834
|
+
@privatePreview("remoteTenantGroupsAPI")
|
|
13835
|
+
@contains remoteTenantGroups: remoteTenantGroup[];
|
|
13773
13836
|
@contains subscriptions: companySubscription[];
|
|
13774
13837
|
}
|
|
13775
13838
|
|
|
@@ -14303,9 +14366,6 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
14303
14366
|
policyName: string | null;
|
|
14304
14367
|
}
|
|
14305
14368
|
|
|
14306
|
-
/**
|
|
14307
|
-
* Represents a container that exposes navigation properties for employee experience resources.
|
|
14308
|
-
*/
|
|
14309
14369
|
@entity model employeeExperience extends MsGraph.SharedModels.entity {
|
|
14310
14370
|
/**
|
|
14311
14371
|
* A collection of communities in Viva Engage.
|
|
@@ -14807,7 +14867,7 @@ within the time frame of their original request.
|
|
|
14807
14867
|
description: string | null;
|
|
14808
14868
|
issuer: string;
|
|
14809
14869
|
name: string;
|
|
14810
|
-
subject: string;
|
|
14870
|
+
subject: string | null;
|
|
14811
14871
|
}
|
|
14812
14872
|
|
|
14813
14873
|
@entity model federatedTokenValidationPolicy extends directoryObject {
|
|
@@ -14963,9 +15023,6 @@ within the time frame of their original request.
|
|
|
14963
15023
|
siteId: string | null;
|
|
14964
15024
|
}
|
|
14965
15025
|
|
|
14966
|
-
/**
|
|
14967
|
-
* Represents a Microsoft Entra group.
|
|
14968
|
-
*/
|
|
14969
15026
|
@open
|
|
14970
15027
|
@entity model group extends directoryObject {
|
|
14971
15028
|
accessType: groupAccessType | null;
|
|
@@ -15115,6 +15172,7 @@ within the time frame of their original request.
|
|
|
15115
15172
|
@entity model identityGovernance extends MsGraph.SharedModels.entity {
|
|
15116
15173
|
@contains accessReviews: accessReviewSet | null;
|
|
15117
15174
|
@contains appConsent: appConsentApprovalRoute | null;
|
|
15175
|
+
@contains catalogs: accessPackageCatalog[];
|
|
15118
15176
|
@contains entitlementManagement: entitlementManagement | null;
|
|
15119
15177
|
@contains lifecycleWorkflows: reference.`microsoft.graph.identityGovernance`.lifecycleWorkflowsContainer | null;
|
|
15120
15178
|
@contains privilegedAccess: privilegedAccessRoot | null;
|
|
@@ -16374,6 +16432,7 @@ within the time frame of their original request.
|
|
|
16374
16432
|
@contains drive: drive | null;
|
|
16375
16433
|
@contains items: listItem[];
|
|
16376
16434
|
@contains operations: richLongRunningOperation[];
|
|
16435
|
+
@contains permissions: permission[];
|
|
16377
16436
|
@contains subscriptions: subscription[];
|
|
16378
16437
|
}
|
|
16379
16438
|
|
|
@@ -16385,6 +16444,7 @@ within the time frame of their original request.
|
|
|
16385
16444
|
@contains documentSetVersions: documentSetVersion[];
|
|
16386
16445
|
@contains driveItem: driveItem | null;
|
|
16387
16446
|
@contains fields: fieldValueSet | null;
|
|
16447
|
+
@contains permissions: permission[];
|
|
16388
16448
|
@contains versions: listItemVersion[];
|
|
16389
16449
|
}
|
|
16390
16450
|
|
|
@@ -18421,9 +18481,6 @@ within the time frame of their original request.
|
|
|
18421
18481
|
handler: onInteractiveAuthFlowStartHandler | null;
|
|
18422
18482
|
}
|
|
18423
18483
|
|
|
18424
|
-
/**
|
|
18425
|
-
* Represents a Microsoft online meeting.
|
|
18426
|
-
*/
|
|
18427
18484
|
@open
|
|
18428
18485
|
@entity model onlineMeeting extends onlineMeetingBase {
|
|
18429
18486
|
attendeeReport: stream | null;
|
|
@@ -18459,6 +18516,7 @@ within the time frame of their original request.
|
|
|
18459
18516
|
audioConferencing: audioConferencing | null;
|
|
18460
18517
|
chatInfo: chatInfo | null;
|
|
18461
18518
|
chatRestrictions: chatRestrictions | null;
|
|
18519
|
+
cloudVideoInteropInfo: cloudVideoInteropInfo | null;
|
|
18462
18520
|
expiryDateTime: offsetDateTime | null;
|
|
18463
18521
|
isEndToEndEncryptionEnabled: boolean | null;
|
|
18464
18522
|
isEntryExitAnnounced: boolean | null;
|
|
@@ -18468,6 +18526,7 @@ within the time frame of their original request.
|
|
|
18468
18526
|
lobbyBypassSettings: lobbyBypassSettings | null;
|
|
18469
18527
|
meetingOptionsWebUrl: string | null;
|
|
18470
18528
|
meetingSpokenLanguageTag: string | null;
|
|
18529
|
+
meetingType: onlineMeetingType | null;
|
|
18471
18530
|
recordAutomatically: boolean | null;
|
|
18472
18531
|
sensitivityLabelAssignment: onlineMeetingSensitivityLabelAssignment | null;
|
|
18473
18532
|
shareMeetingChatHistoryDefault: meetingChatHistoryDefaultMode | null;
|
|
@@ -18864,6 +18923,7 @@ within the time frame of their original request.
|
|
|
18864
18923
|
label: string | null;
|
|
18865
18924
|
parentId: string | null;
|
|
18866
18925
|
phone: string | null;
|
|
18926
|
+
placeId: string | null;
|
|
18867
18927
|
tags: string[];
|
|
18868
18928
|
@contains checkIns: checkInClaim[];
|
|
18869
18929
|
}
|
|
@@ -19528,6 +19588,15 @@ within the time frame of their original request.
|
|
|
19528
19588
|
@contains targetDeviceGroups: targetDeviceGroup[];
|
|
19529
19589
|
}
|
|
19530
19590
|
|
|
19591
|
+
@privatePreview("remoteTenantGroupsAPI")
|
|
19592
|
+
@entity model remoteTenantGroup extends directoryObject {
|
|
19593
|
+
remoteGroupDisplayName: string | null;
|
|
19594
|
+
remoteGroupId: guid | null;
|
|
19595
|
+
remoteTenantDisplayName: string | null;
|
|
19596
|
+
remoteTenantId: guid | null;
|
|
19597
|
+
remoteTenantPrimaryDomain: string | null;
|
|
19598
|
+
}
|
|
19599
|
+
|
|
19531
19600
|
@entity model reportRoot extends MsGraph.SharedModels.entity {
|
|
19532
19601
|
@contains authenticationMethods: authenticationMethodsRoot | null;
|
|
19533
19602
|
@contains dailyPrintUsageByPrinter: printUsageByPrinter[];
|
|
@@ -19768,7 +19837,6 @@ within the time frame of their original request.
|
|
|
19768
19837
|
floorLabel: string | null;
|
|
19769
19838
|
floorNumber: int32 | null;
|
|
19770
19839
|
nickname: string;
|
|
19771
|
-
placeId: string | null;
|
|
19772
19840
|
teamsEnabledState: placeFeatureEnablement;
|
|
19773
19841
|
videoDeviceName: string | null;
|
|
19774
19842
|
}
|
|
@@ -19911,10 +19979,14 @@ within the time frame of their original request.
|
|
|
19911
19979
|
vendorInformation: securityVendorInformation | null;
|
|
19912
19980
|
}
|
|
19913
19981
|
|
|
19982
|
+
/**
|
|
19983
|
+
* Security singleton providing access to audit log resources.
|
|
19984
|
+
*/
|
|
19914
19985
|
@entity model security extends MsGraph.SharedModels.entity {
|
|
19915
19986
|
@contains alerts: alert[];
|
|
19916
19987
|
@contains alerts_v2: reference.`microsoft.graph.security`.alert[];
|
|
19917
19988
|
@contains attackSimulation: attackSimulationRoot | null;
|
|
19989
|
+
@contains auditLog: reference.`microsoft.graph.security`.auditCoreRoot | null;
|
|
19918
19990
|
@contains cases: reference.`microsoft.graph.security`.casesRoot | null;
|
|
19919
19991
|
@contains collaboration: reference.`microsoft.graph.security`.collaborationRoot | null;
|
|
19920
19992
|
@contains dataSecurityAndGovernance: tenantDataSecurityAndGovernance | null;
|
|
@@ -20370,23 +20442,29 @@ within the time frame of their original request.
|
|
|
20370
20442
|
appDisplayName: string | null;
|
|
20371
20443
|
appId: string | null;
|
|
20372
20444
|
appliedConditionalAccessPolicies: appliedConditionalAccessPolicy[] | null;
|
|
20445
|
+
authenticationAppDeviceDetails: authenticationAppDeviceDetails | null;
|
|
20373
20446
|
clientAppUsed: string | null;
|
|
20374
20447
|
conditionalAccessStatus: conditionalAccessStatus | null;
|
|
20375
20448
|
correlationId: string | null;
|
|
20376
20449
|
@computed createdDateTime: offsetDateTime;
|
|
20377
20450
|
deviceDetail: deviceDetail | null;
|
|
20451
|
+
homeTenantId: string | null;
|
|
20378
20452
|
ipAddress: string | null;
|
|
20379
20453
|
isInteractive: boolean | null;
|
|
20380
20454
|
location: signInLocation | null;
|
|
20381
20455
|
resourceDisplayName: string | null;
|
|
20382
20456
|
resourceId: string | null;
|
|
20457
|
+
resourceTenantId: string | null;
|
|
20383
20458
|
riskDetail: riskDetail | null;
|
|
20384
20459
|
riskEventTypes: riskEventType[] | null;
|
|
20385
20460
|
riskEventTypes_v2: string[] | null;
|
|
20386
20461
|
riskLevelAggregated: riskLevel | null;
|
|
20387
20462
|
riskLevelDuringSignIn: riskLevel | null;
|
|
20388
20463
|
riskState: riskState | null;
|
|
20464
|
+
servicePrincipalId: string | null;
|
|
20465
|
+
servicePrincipalName: string | null;
|
|
20389
20466
|
status: signInStatus | null;
|
|
20467
|
+
userAgent: string | null;
|
|
20390
20468
|
userDisplayName: string | null;
|
|
20391
20469
|
userId: string;
|
|
20392
20470
|
userPrincipalName: string | null;
|
|
@@ -21436,9 +21514,6 @@ within the time frame of their original request.
|
|
|
21436
21514
|
@references resource: entity | null;
|
|
21437
21515
|
}
|
|
21438
21516
|
|
|
21439
|
-
/**
|
|
21440
|
-
* Represents a Microsoft Entra user account.
|
|
21441
|
-
*/
|
|
21442
21517
|
@open
|
|
21443
21518
|
@entity model user extends directoryObject {
|
|
21444
21519
|
aboutMe: string | null;
|
|
@@ -22696,6 +22771,7 @@ within the time frame of their original request.
|
|
|
22696
22771
|
@contains onPremisesConnections: cloudPcOnPremisesConnection[];
|
|
22697
22772
|
@contains provisioningPolicies: cloudPcProvisioningPolicy[];
|
|
22698
22773
|
@contains report: cloudPcReport | null;
|
|
22774
|
+
@contains servicePlans: cloudPcServicePlan[];
|
|
22699
22775
|
@contains userSettings: cloudPcUserSetting[];
|
|
22700
22776
|
}
|
|
22701
22777
|
|
|
@@ -22705,6 +22781,7 @@ within the time frame of their original request.
|
|
|
22705
22781
|
displayName: string | null;
|
|
22706
22782
|
endDateTime: dateTimeTimeZone | null;
|
|
22707
22783
|
externalEventInformation: virtualEventExternalInformation[] | null;
|
|
22784
|
+
isRegistrationRequired: boolean | null;
|
|
22708
22785
|
settings: virtualEventSettings | null;
|
|
22709
22786
|
startDateTime: dateTimeTimeZone | null;
|
|
22710
22787
|
status: virtualEventStatus | null;
|
|
@@ -22735,6 +22812,8 @@ within the time frame of their original request.
|
|
|
22735
22812
|
|
|
22736
22813
|
@entity model virtualEventRegistrationConfiguration extends entity {
|
|
22737
22814
|
capacity: int32 | null;
|
|
22815
|
+
isManualApprovalEnabled: boolean | null;
|
|
22816
|
+
isWaitlistEnabled: boolean | null;
|
|
22738
22817
|
registrationWebUrl: string | null;
|
|
22739
22818
|
@contains questions: virtualEventRegistrationQuestionBase[];
|
|
22740
22819
|
}
|
|
@@ -22755,6 +22834,7 @@ within the time frame of their original request.
|
|
|
22755
22834
|
}
|
|
22756
22835
|
|
|
22757
22836
|
@entity model virtualEventSession extends onlineMeetingBase {
|
|
22837
|
+
capacity: int32 | null;
|
|
22758
22838
|
endDateTime: dateTimeTimeZone | null;
|
|
22759
22839
|
startDateTime: dateTimeTimeZone | null;
|
|
22760
22840
|
videoOnDemandWebUrl: string | null;
|
|
@@ -22768,9 +22848,15 @@ within the time frame of their original request.
|
|
|
22768
22848
|
|
|
22769
22849
|
@entity model virtualEventTownhall extends virtualEvent {
|
|
22770
22850
|
audience: meetingAudience | null;
|
|
22851
|
+
capacity: int32 | null;
|
|
22771
22852
|
coOrganizers: communicationsUserIdentity[] | null;
|
|
22772
22853
|
invitedAttendees: identity[] | null;
|
|
22773
22854
|
isInviteOnly: boolean | null;
|
|
22855
|
+
@contains registrationConfiguration: virtualEventTownhallRegistrationConfiguration | null;
|
|
22856
|
+
@contains registrations: virtualEventRegistration[];
|
|
22857
|
+
}
|
|
22858
|
+
|
|
22859
|
+
@entity model virtualEventTownhallRegistrationConfiguration extends virtualEventRegistrationConfiguration {
|
|
22774
22860
|
}
|
|
22775
22861
|
|
|
22776
22862
|
@entity model virtualEventWebinar extends virtualEvent {
|
|
@@ -22781,8 +22867,6 @@ within the time frame of their original request.
|
|
|
22781
22867
|
}
|
|
22782
22868
|
|
|
22783
22869
|
@entity model virtualEventWebinarRegistrationConfiguration extends virtualEventRegistrationConfiguration {
|
|
22784
|
-
isManualApprovalEnabled: boolean | null;
|
|
22785
|
-
isWaitlistEnabled: boolean | null;
|
|
22786
22870
|
}
|
|
22787
22871
|
|
|
22788
22872
|
@entity model voiceAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
|
|
@@ -25765,7 +25849,6 @@ within the time frame of their original request.
|
|
|
25765
25849
|
emailAddress: string | null;
|
|
25766
25850
|
mode: placeMode | null;
|
|
25767
25851
|
nickname: string;
|
|
25768
|
-
placeId: string | null;
|
|
25769
25852
|
}
|
|
25770
25853
|
|
|
25771
25854
|
@entity model x509CertificateAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
|
|
@@ -27792,6 +27875,13 @@ within the time frame of their original request.
|
|
|
27792
27875
|
unknownFutureValue: 7,
|
|
27793
27876
|
}
|
|
27794
27877
|
|
|
27878
|
+
enum customDataProvidedResourceUploadStatus {
|
|
27879
|
+
active: 0,
|
|
27880
|
+
complete: 1,
|
|
27881
|
+
expired: 2,
|
|
27882
|
+
unknownFutureValue: 3,
|
|
27883
|
+
}
|
|
27884
|
+
|
|
27795
27885
|
enum customExtensionCalloutInstanceStatus {
|
|
27796
27886
|
calloutSent: 1,
|
|
27797
27887
|
callbackReceived: 2,
|
|
@@ -30836,6 +30926,15 @@ within the time frame of their original request.
|
|
|
30836
30926
|
coorganizer: 4,
|
|
30837
30927
|
}
|
|
30838
30928
|
|
|
30929
|
+
enum onlineMeetingType {
|
|
30930
|
+
adhoc: 0,
|
|
30931
|
+
scheduled: 1,
|
|
30932
|
+
recurring: 2,
|
|
30933
|
+
broadcast: 3,
|
|
30934
|
+
meetnow: 4,
|
|
30935
|
+
unknownFutureValue: 5,
|
|
30936
|
+
}
|
|
30937
|
+
|
|
30839
30938
|
@graphFlags
|
|
30840
30939
|
enum onlineMeetingVideoDisabledReason {
|
|
30841
30940
|
watermarkProtection: 1,
|
|
@@ -36760,6 +36859,184 @@ namespace reference.`microsoft.graph.callRecords` {
|
|
|
36760
36859
|
unknownFutureValue: 7,
|
|
36761
36860
|
}
|
|
36762
36861
|
|
|
36862
|
+
}
|
|
36863
|
+
@publicNamespace("microsoft.graph.customdataprovidedresourcepayloads")
|
|
36864
|
+
namespace reference.`microsoft.graph.customDataProvidedResourcePayloads` {
|
|
36865
|
+
@complex model accessReviewContextData extends accessReviewContextDataBase {
|
|
36866
|
+
}
|
|
36867
|
+
|
|
36868
|
+
@abstract
|
|
36869
|
+
@complex model accessReviewContextDataBase extends data {
|
|
36870
|
+
reviewDefinitionId: string;
|
|
36871
|
+
reviewInstanceId: string;
|
|
36872
|
+
}
|
|
36873
|
+
|
|
36874
|
+
@complex model applyDecisionContextData extends accessReviewContextDataBase {
|
|
36875
|
+
}
|
|
36876
|
+
|
|
36877
|
+
@abstract
|
|
36878
|
+
@complex model data {
|
|
36879
|
+
}
|
|
36880
|
+
|
|
36881
|
+
}
|
|
36882
|
+
@publicNamespace("microsoft.graph.entrarecoveryservices")
|
|
36883
|
+
namespace reference.`microsoft.graph.entraRecoveryServices` {
|
|
36884
|
+
@complex model entityTypeAndIds {
|
|
36885
|
+
entityIds: string[];
|
|
36886
|
+
entityType: resourceTypeName;
|
|
36887
|
+
}
|
|
36888
|
+
|
|
36889
|
+
@complex model recoveryJobEntityNameAndIdsFilter extends recoveryJobFilteringCriteriaBase {
|
|
36890
|
+
filterValues: entityTypeAndIds[];
|
|
36891
|
+
}
|
|
36892
|
+
|
|
36893
|
+
@complex model recoveryJobEntityNamesFilter extends recoveryJobFilteringCriteriaBase {
|
|
36894
|
+
entityTypes: resourceTypeName[];
|
|
36895
|
+
}
|
|
36896
|
+
|
|
36897
|
+
@complex model recoveryJobFilteringCriteriaBase {
|
|
36898
|
+
}
|
|
36899
|
+
|
|
36900
|
+
@entity model recovery extends reference.`microsoft.graph`.entity {
|
|
36901
|
+
@contains jobs: recoveryJobBase[];
|
|
36902
|
+
@contains snapshots: snapshot[];
|
|
36903
|
+
}
|
|
36904
|
+
|
|
36905
|
+
@open
|
|
36906
|
+
@entity model recoveryChangeObjectBase extends reference.`microsoft.graph`.entity {
|
|
36907
|
+
displayName: string | null;
|
|
36908
|
+
entityTypeName: resourceTypeName;
|
|
36909
|
+
failureMessage: string | null;
|
|
36910
|
+
recoveryAction: recoveryAction;
|
|
36911
|
+
}
|
|
36912
|
+
|
|
36913
|
+
@entity model recoveryJob extends recoveryJobBase {
|
|
36914
|
+
totalFailedChanges: int32 | null;
|
|
36915
|
+
totalLinksModified: int32 | null;
|
|
36916
|
+
totalObjectsModified: int32 | null;
|
|
36917
|
+
}
|
|
36918
|
+
|
|
36919
|
+
@abstract
|
|
36920
|
+
@entity model recoveryJobBase extends reference.`microsoft.graph`.entity {
|
|
36921
|
+
filteringCriteria: recoveryJobFilteringCriteriaBase | null;
|
|
36922
|
+
jobCompletionDateTime: offsetDateTime | null;
|
|
36923
|
+
jobStartDateTime: offsetDateTime;
|
|
36924
|
+
status: recoveryStatus;
|
|
36925
|
+
targetStateDateTime: offsetDateTime;
|
|
36926
|
+
totalChangedLinksCalculated: int32 | null;
|
|
36927
|
+
totalChangedObjectsCalculated: int32 | null;
|
|
36928
|
+
}
|
|
36929
|
+
|
|
36930
|
+
@entity model recoveryPreviewJob extends recoveryJobBase {
|
|
36931
|
+
}
|
|
36932
|
+
|
|
36933
|
+
@entity model snapshot extends reference.`microsoft.graph`.entity {
|
|
36934
|
+
@computed createdDateTime: offsetDateTime;
|
|
36935
|
+
totalChangedObjects: int32 | null;
|
|
36936
|
+
@references recoveryJobs: recoveryJob[];
|
|
36937
|
+
@references recoveryPreviewJobs: recoveryPreviewJob[];
|
|
36938
|
+
}
|
|
36939
|
+
|
|
36940
|
+
enum recoveryAction {
|
|
36941
|
+
/**
|
|
36942
|
+
* Represents a soft delete action during recovery
|
|
36943
|
+
*/
|
|
36944
|
+
softDelete: 0,
|
|
36945
|
+
/**
|
|
36946
|
+
* Represents an update action during recovery
|
|
36947
|
+
*/
|
|
36948
|
+
update: 1,
|
|
36949
|
+
/**
|
|
36950
|
+
* Represents a restore action during recovery
|
|
36951
|
+
*/
|
|
36952
|
+
restore: 2,
|
|
36953
|
+
unknownFutureValue: 3,
|
|
36954
|
+
}
|
|
36955
|
+
|
|
36956
|
+
enum recoveryStatus {
|
|
36957
|
+
/**
|
|
36958
|
+
* Represents a job that has been initialized but has not been started yet
|
|
36959
|
+
*/
|
|
36960
|
+
initialized: 0,
|
|
36961
|
+
/**
|
|
36962
|
+
* Represents a job that is in progress
|
|
36963
|
+
*/
|
|
36964
|
+
running: 1,
|
|
36965
|
+
/**
|
|
36966
|
+
* Represents a job that ran successfully and is now complete
|
|
36967
|
+
*/
|
|
36968
|
+
successful: 2,
|
|
36969
|
+
/**
|
|
36970
|
+
* Represents a job that we were not able to run successfully
|
|
36971
|
+
*/
|
|
36972
|
+
failed: 3,
|
|
36973
|
+
/**
|
|
36974
|
+
* Represents a job that was abandoned by the user
|
|
36975
|
+
*/
|
|
36976
|
+
abandoned: 4,
|
|
36977
|
+
unknownFutureValue: 5,
|
|
36978
|
+
/**
|
|
36979
|
+
* Represents a job for which we have started calculating the diff/preview.
|
|
36980
|
+
*/
|
|
36981
|
+
calculating: 6,
|
|
36982
|
+
/**
|
|
36983
|
+
* Represents a job for which we have started loading data of the snapshot.
|
|
36984
|
+
*/
|
|
36985
|
+
loadingData: 7,
|
|
36986
|
+
}
|
|
36987
|
+
|
|
36988
|
+
enum resourceTypeName {
|
|
36989
|
+
/**
|
|
36990
|
+
* Represents the user entity
|
|
36991
|
+
*/
|
|
36992
|
+
user: 0,
|
|
36993
|
+
/**
|
|
36994
|
+
* Represents the group entity
|
|
36995
|
+
*/
|
|
36996
|
+
group: 1,
|
|
36997
|
+
/**
|
|
36998
|
+
* Represents the conditional access policy entity
|
|
36999
|
+
*/
|
|
37000
|
+
conditionalAccessPolicy: 2,
|
|
37001
|
+
/**
|
|
37002
|
+
* Represents the named location policy entity
|
|
37003
|
+
*/
|
|
37004
|
+
namedLocationPolicy: 3,
|
|
37005
|
+
/**
|
|
37006
|
+
* Represents the authentication method policy entity
|
|
37007
|
+
*/
|
|
37008
|
+
authenticationMethodPolicy: 4,
|
|
37009
|
+
/**
|
|
37010
|
+
* Represents the authorization policy entity
|
|
37011
|
+
*/
|
|
37012
|
+
authorizationPolicy: 5,
|
|
37013
|
+
/**
|
|
37014
|
+
* Represents the authentication strength policy entity
|
|
37015
|
+
*/
|
|
37016
|
+
authenticationStrengthPolicy: 6,
|
|
37017
|
+
/**
|
|
37018
|
+
* Represents the application entity
|
|
37019
|
+
*/
|
|
37020
|
+
application: 7,
|
|
37021
|
+
/**
|
|
37022
|
+
* Represents the service principal entity
|
|
37023
|
+
*/
|
|
37024
|
+
servicePrincipal: 8,
|
|
37025
|
+
unknownFutureValue: 9,
|
|
37026
|
+
/**
|
|
37027
|
+
* Represents the oAuth2PermissionGrant entity.
|
|
37028
|
+
*/
|
|
37029
|
+
oAuth2PermissionGrant: 10,
|
|
37030
|
+
/**
|
|
37031
|
+
* Represents the appRoleAssignment entity.
|
|
37032
|
+
*/
|
|
37033
|
+
appRoleAssignment: 11,
|
|
37034
|
+
/**
|
|
37035
|
+
* Represents the organization entity.
|
|
37036
|
+
*/
|
|
37037
|
+
organization: 12,
|
|
37038
|
+
}
|
|
37039
|
+
|
|
36763
37040
|
}
|
|
36764
37041
|
@publicNamespace("microsoft.graph.externalconnectors")
|
|
36765
37042
|
namespace reference.`microsoft.graph.externalConnectors` {
|
|
@@ -37083,6 +37360,18 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37083
37360
|
triggerAttributes: triggerAttribute[];
|
|
37084
37361
|
}
|
|
37085
37362
|
|
|
37363
|
+
@complex model cancelRunsScope extends cancelScope {
|
|
37364
|
+
@references runs: run[];
|
|
37365
|
+
}
|
|
37366
|
+
|
|
37367
|
+
@abstract
|
|
37368
|
+
@complex model cancelScope {
|
|
37369
|
+
}
|
|
37370
|
+
|
|
37371
|
+
@complex model countBasedQuarantineCondition extends quarantineCondition {
|
|
37372
|
+
threshold: int64;
|
|
37373
|
+
}
|
|
37374
|
+
|
|
37086
37375
|
@complex model customTaskExtensionCallbackConfiguration extends reference.`microsoft.graph`.customExtensionCallbackConfiguration {
|
|
37087
37376
|
@references authorizedApps: reference.`microsoft.graph`.application[];
|
|
37088
37377
|
}
|
|
@@ -37115,6 +37404,32 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37115
37404
|
valueType: valueType;
|
|
37116
37405
|
}
|
|
37117
37406
|
|
|
37407
|
+
@complex model percentageBasedQuarantineCondition extends quarantineCondition {
|
|
37408
|
+
percentage: int32;
|
|
37409
|
+
}
|
|
37410
|
+
|
|
37411
|
+
@complex model previewFailedTask {
|
|
37412
|
+
definitionId: string;
|
|
37413
|
+
failureReason: string;
|
|
37414
|
+
name: string;
|
|
37415
|
+
taskId: string;
|
|
37416
|
+
}
|
|
37417
|
+
|
|
37418
|
+
@abstract
|
|
37419
|
+
@complex model quarantineCondition {
|
|
37420
|
+
}
|
|
37421
|
+
|
|
37422
|
+
@complex model quarantineConfiguration {
|
|
37423
|
+
conditions: quarantineCondition[];
|
|
37424
|
+
matchMode: matchMode;
|
|
37425
|
+
}
|
|
37426
|
+
|
|
37427
|
+
@complex model quarantineDetails {
|
|
37428
|
+
quarantinedDateTime: offsetDateTime | null;
|
|
37429
|
+
quarantineReason: string | null;
|
|
37430
|
+
quarantineType: quarantineType;
|
|
37431
|
+
}
|
|
37432
|
+
|
|
37118
37433
|
@complex model ruleBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
37119
37434
|
rule: string;
|
|
37120
37435
|
}
|
|
@@ -37201,6 +37516,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37201
37516
|
@complex model workflowExecutionTrigger {
|
|
37202
37517
|
}
|
|
37203
37518
|
|
|
37519
|
+
@complex model workflowSetting {
|
|
37520
|
+
quarantineConfiguration: quarantineConfiguration | null;
|
|
37521
|
+
}
|
|
37522
|
+
|
|
37204
37523
|
@complex model workflowsInsightsByCategory {
|
|
37205
37524
|
failedJoinerRuns: int32;
|
|
37206
37525
|
failedLeaverRuns: int32;
|
|
@@ -37238,6 +37557,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37238
37557
|
|
|
37239
37558
|
@entity model lifecycleManagementSettings extends reference.`microsoft.graph`.entity {
|
|
37240
37559
|
emailSettings: reference.`microsoft.graph`.emailSettings;
|
|
37560
|
+
quarantineConfiguration: quarantineConfiguration | null;
|
|
37241
37561
|
workflowScheduleIntervalInHours: int32;
|
|
37242
37562
|
}
|
|
37243
37563
|
|
|
@@ -37336,8 +37656,11 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37336
37656
|
deletedDateTime: offsetDateTime | null;
|
|
37337
37657
|
@computed @key id: string;
|
|
37338
37658
|
nextScheduleRunDateTime: offsetDateTime | null;
|
|
37659
|
+
quarantineDetails: quarantineDetails;
|
|
37660
|
+
settings: workflowSetting;
|
|
37339
37661
|
version: int32 | null;
|
|
37340
37662
|
@references executionScope: userProcessingResult[];
|
|
37663
|
+
@references previewScope: reference.`microsoft.graph`.directoryObject[];
|
|
37341
37664
|
@contains runs: run[];
|
|
37342
37665
|
@contains taskReports: taskReport[];
|
|
37343
37666
|
@contains userProcessingResults: userProcessingResult[];
|
|
@@ -37369,6 +37692,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37369
37692
|
}
|
|
37370
37693
|
|
|
37371
37694
|
@entity model workflowVersion extends workflowBase {
|
|
37695
|
+
settings: workflowSetting;
|
|
37372
37696
|
@computed @key versionNumber: int32;
|
|
37373
37697
|
}
|
|
37374
37698
|
|
|
@@ -37413,6 +37737,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37413
37737
|
canceled: 4,
|
|
37414
37738
|
failed: 5,
|
|
37415
37739
|
unknownFutureValue: 6,
|
|
37740
|
+
canceling: 7,
|
|
37741
|
+
quarantined: 8,
|
|
37742
|
+
}
|
|
37743
|
+
|
|
37744
|
+
enum matchMode {
|
|
37745
|
+
any: 0,
|
|
37746
|
+
all: 1,
|
|
37747
|
+
unknownFutureValue: 2,
|
|
37416
37748
|
}
|
|
37417
37749
|
|
|
37418
37750
|
enum membershipChangeType {
|
|
@@ -37421,6 +37753,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37421
37753
|
unknownFutureValue: 3,
|
|
37422
37754
|
}
|
|
37423
37755
|
|
|
37756
|
+
enum quarantineType {
|
|
37757
|
+
notQuarantined: 0,
|
|
37758
|
+
countBasedThresholdExceeded: 1,
|
|
37759
|
+
percentageBasedThresholdExceeded: 2,
|
|
37760
|
+
multipleConditionsExceeded: 3,
|
|
37761
|
+
unknownFutureValue: 4,
|
|
37762
|
+
}
|
|
37763
|
+
|
|
37424
37764
|
enum valueType {
|
|
37425
37765
|
`enum`: 0,
|
|
37426
37766
|
`string`: 1,
|
|
@@ -37434,6 +37774,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37434
37774
|
onDemand: 1,
|
|
37435
37775
|
unknownFutureValue: 2,
|
|
37436
37776
|
activatedWithScope: 3,
|
|
37777
|
+
preview: 4,
|
|
37437
37778
|
}
|
|
37438
37779
|
|
|
37439
37780
|
enum workflowTriggerTimeBasedAttribute {
|
|
@@ -37603,6 +37944,48 @@ namespace reference.`microsoft.graph.search` {
|
|
|
37603
37944
|
// Metadata item DeprecatedDefinition_Tasks_And_Plans was already defined with a different value.
|
|
37604
37945
|
@publicNamespace("microsoft.graph.security")
|
|
37605
37946
|
namespace reference.`microsoft.graph.security` {
|
|
37947
|
+
/**
|
|
37948
|
+
* Audit data for A365 AI Execute Tool events.
|
|
37949
|
+
*/
|
|
37950
|
+
@open
|
|
37951
|
+
@complex model a365AiExecuteTool extends auditData {
|
|
37952
|
+
}
|
|
37953
|
+
|
|
37954
|
+
/**
|
|
37955
|
+
* Audit data for A365 AI Inference Call events.
|
|
37956
|
+
*/
|
|
37957
|
+
@open
|
|
37958
|
+
@complex model a365AiInferenceCall extends auditData {
|
|
37959
|
+
}
|
|
37960
|
+
|
|
37961
|
+
/**
|
|
37962
|
+
* Audit data for A365 AI Invoke Agent events.
|
|
37963
|
+
*/
|
|
37964
|
+
@open
|
|
37965
|
+
@complex model a365AiInvokeAgent extends auditData {
|
|
37966
|
+
}
|
|
37967
|
+
|
|
37968
|
+
/**
|
|
37969
|
+
* Audit data for A365 AI Run Summary events.
|
|
37970
|
+
*/
|
|
37971
|
+
@open
|
|
37972
|
+
@complex model a365AiRunSummary extends auditData {
|
|
37973
|
+
}
|
|
37974
|
+
|
|
37975
|
+
/**
|
|
37976
|
+
* Audit data for A365 Span Outputs events.
|
|
37977
|
+
*/
|
|
37978
|
+
@open
|
|
37979
|
+
@complex model a365SpanOutputs extends auditData {
|
|
37980
|
+
}
|
|
37981
|
+
|
|
37982
|
+
/**
|
|
37983
|
+
* Audit data for AAD Risk Detection events.
|
|
37984
|
+
*/
|
|
37985
|
+
@open
|
|
37986
|
+
@complex model aadRiskDetectionAuditRecord extends auditData {
|
|
37987
|
+
}
|
|
37988
|
+
|
|
37606
37989
|
@complex model account {
|
|
37607
37990
|
actions: action[];
|
|
37608
37991
|
identifier: string;
|
|
@@ -37614,6 +37997,27 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37614
37997
|
trustedDomains: activeDirectoryDomainEvidence[];
|
|
37615
37998
|
}
|
|
37616
37999
|
|
|
38000
|
+
/**
|
|
38001
|
+
* Audit data for Advanced eDiscovery events.
|
|
38002
|
+
*/
|
|
38003
|
+
@open
|
|
38004
|
+
@complex model aedAuditRecord extends auditData {
|
|
38005
|
+
}
|
|
38006
|
+
|
|
38007
|
+
/**
|
|
38008
|
+
* Audit data for Agent Admin Activity events.
|
|
38009
|
+
*/
|
|
38010
|
+
@open
|
|
38011
|
+
@complex model agentAdminActivityRecord extends auditData {
|
|
38012
|
+
}
|
|
38013
|
+
|
|
38014
|
+
/**
|
|
38015
|
+
* Audit data for Agent Setting Admin Activity events.
|
|
38016
|
+
*/
|
|
38017
|
+
@open
|
|
38018
|
+
@complex model agentSettingAdminActivity extends auditData {
|
|
38019
|
+
}
|
|
38020
|
+
|
|
37617
38021
|
@complex model aiAgentEvidence extends alertEvidence {
|
|
37618
38022
|
agentId: string | null;
|
|
37619
38023
|
agentName: string | null;
|
|
@@ -37621,6 +38025,118 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37621
38025
|
instructions: string | null;
|
|
37622
38026
|
}
|
|
37623
38027
|
|
|
38028
|
+
/**
|
|
38029
|
+
* Audit data for AI App Interaction events.
|
|
38030
|
+
*/
|
|
38031
|
+
@open
|
|
38032
|
+
@complex model aiAppInteractionAuditRecord extends auditData {
|
|
38033
|
+
}
|
|
38034
|
+
|
|
38035
|
+
/**
|
|
38036
|
+
* Audit data for AI Execute Tool events.
|
|
38037
|
+
*/
|
|
38038
|
+
@open
|
|
38039
|
+
@complex model aiExecuteToolAuditRecord extends auditData {
|
|
38040
|
+
}
|
|
38041
|
+
|
|
38042
|
+
/**
|
|
38043
|
+
* Audit data for AI Interactions Change Notification events.
|
|
38044
|
+
*/
|
|
38045
|
+
@open
|
|
38046
|
+
@complex model aiInteractionsChangeNotificationAuditRecord extends auditData {
|
|
38047
|
+
}
|
|
38048
|
+
|
|
38049
|
+
/**
|
|
38050
|
+
* Audit data for AI Interactions Export events.
|
|
38051
|
+
*/
|
|
38052
|
+
@open
|
|
38053
|
+
@complex model aiInteractionsExportAuditRecord extends auditData {
|
|
38054
|
+
}
|
|
38055
|
+
|
|
38056
|
+
/**
|
|
38057
|
+
* Audit data for AI Interactions Subscription events.
|
|
38058
|
+
*/
|
|
38059
|
+
@open
|
|
38060
|
+
@complex model aiInteractionsSubscriptionAuditRecord extends auditData {
|
|
38061
|
+
}
|
|
38062
|
+
|
|
38063
|
+
/**
|
|
38064
|
+
* Audit data for AI Invoke Agent events.
|
|
38065
|
+
*/
|
|
38066
|
+
@open
|
|
38067
|
+
@complex model aiInvokeAgentAuditRecord extends auditData {
|
|
38068
|
+
}
|
|
38069
|
+
|
|
38070
|
+
/**
|
|
38071
|
+
* Audit data for AIP Discover events.
|
|
38072
|
+
*/
|
|
38073
|
+
@open
|
|
38074
|
+
@complex model aipDiscover extends auditData {
|
|
38075
|
+
}
|
|
38076
|
+
|
|
38077
|
+
/**
|
|
38078
|
+
* Audit data for AIP File Deleted events.
|
|
38079
|
+
*/
|
|
38080
|
+
@open
|
|
38081
|
+
@complex model aipFileDeleted extends auditData {
|
|
38082
|
+
}
|
|
38083
|
+
|
|
38084
|
+
/**
|
|
38085
|
+
* Audit data for AIP Heart Beat events.
|
|
38086
|
+
*/
|
|
38087
|
+
@open
|
|
38088
|
+
@complex model aipHeartBeat extends auditData {
|
|
38089
|
+
}
|
|
38090
|
+
|
|
38091
|
+
/**
|
|
38092
|
+
* Audit data for AIP Protection Action log request events.
|
|
38093
|
+
*/
|
|
38094
|
+
@open
|
|
38095
|
+
@complex model aipProtectionActionLogRequest extends auditData {
|
|
38096
|
+
}
|
|
38097
|
+
|
|
38098
|
+
/**
|
|
38099
|
+
* Audit data for AIP Scanner Discover Event events.
|
|
38100
|
+
*/
|
|
38101
|
+
@open
|
|
38102
|
+
@complex model aipScannerDiscoverEvent extends auditData {
|
|
38103
|
+
}
|
|
38104
|
+
|
|
38105
|
+
/**
|
|
38106
|
+
* Audit data for AIP Sensitivity Label Action log request events.
|
|
38107
|
+
*/
|
|
38108
|
+
@open
|
|
38109
|
+
@complex model aipSensitivityLabelActionLogRequest extends auditData {
|
|
38110
|
+
}
|
|
38111
|
+
|
|
38112
|
+
/**
|
|
38113
|
+
* Audit data for AIR Admin Action Investigation events.
|
|
38114
|
+
*/
|
|
38115
|
+
@open
|
|
38116
|
+
@complex model airAdminActionInvestigationData extends auditData {
|
|
38117
|
+
}
|
|
38118
|
+
|
|
38119
|
+
/**
|
|
38120
|
+
* Audit data for AIR Investigation events.
|
|
38121
|
+
*/
|
|
38122
|
+
@open
|
|
38123
|
+
@complex model airInvestigationData extends auditData {
|
|
38124
|
+
}
|
|
38125
|
+
|
|
38126
|
+
/**
|
|
38127
|
+
* Audit data for AIR Manual Investigation events.
|
|
38128
|
+
*/
|
|
38129
|
+
@open
|
|
38130
|
+
@complex model airManualInvestigationData extends auditData {
|
|
38131
|
+
}
|
|
38132
|
+
|
|
38133
|
+
/**
|
|
38134
|
+
* Audit data for AI Span Outputs events.
|
|
38135
|
+
*/
|
|
38136
|
+
@open
|
|
38137
|
+
@complex model aISpanOutputsAuditRecord extends auditData {
|
|
38138
|
+
}
|
|
38139
|
+
|
|
37624
38140
|
@complex model alertComment {
|
|
37625
38141
|
comment: string | null;
|
|
37626
38142
|
createdByDisplayName: string | null;
|
|
@@ -37637,6 +38153,20 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37637
38153
|
verdict: evidenceVerdict;
|
|
37638
38154
|
}
|
|
37639
38155
|
|
|
38156
|
+
/**
|
|
38157
|
+
* Audit data for Alert Submission events.
|
|
38158
|
+
*/
|
|
38159
|
+
@open
|
|
38160
|
+
@complex model alertSubmissionAuditRecord extends auditData {
|
|
38161
|
+
}
|
|
38162
|
+
|
|
38163
|
+
/**
|
|
38164
|
+
* Audit data for Alert Submission Result Detail events.
|
|
38165
|
+
*/
|
|
38166
|
+
@open
|
|
38167
|
+
@complex model alertSubmissionResultDetailAuditRecord extends auditData {
|
|
38168
|
+
}
|
|
38169
|
+
|
|
37640
38170
|
@complex model amazonResourceEvidence extends alertEvidence {
|
|
37641
38171
|
amazonAccountId: string | null;
|
|
37642
38172
|
amazonResourceId: string | null;
|
|
@@ -37726,6 +38256,49 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37726
38256
|
urn: string | null;
|
|
37727
38257
|
}
|
|
37728
38258
|
|
|
38259
|
+
/**
|
|
38260
|
+
* Audit data for Attack Sim Admin events.
|
|
38261
|
+
*/
|
|
38262
|
+
@open
|
|
38263
|
+
@complex model attackSimAdminAuditRecord extends auditData {
|
|
38264
|
+
}
|
|
38265
|
+
|
|
38266
|
+
/**
|
|
38267
|
+
* Audit data for Attack Sim events.
|
|
38268
|
+
*/
|
|
38269
|
+
@open
|
|
38270
|
+
@complex model attackSimAuditRecord extends auditData {
|
|
38271
|
+
}
|
|
38272
|
+
|
|
38273
|
+
/**
|
|
38274
|
+
* Audit data for Audit Config events.
|
|
38275
|
+
*/
|
|
38276
|
+
@open
|
|
38277
|
+
@complex model auditConfigAuditRecord extends auditData {
|
|
38278
|
+
}
|
|
38279
|
+
|
|
38280
|
+
/**
|
|
38281
|
+
* Abstract base type for audit event data.
|
|
38282
|
+
*/
|
|
38283
|
+
@abstract
|
|
38284
|
+
@complex model auditData {
|
|
38285
|
+
dynamicProperties: auditRecordTypeDictionary | null;
|
|
38286
|
+
}
|
|
38287
|
+
|
|
38288
|
+
/**
|
|
38289
|
+
* A dictionary of name-value pairs for dynamic audit event properties.
|
|
38290
|
+
*/
|
|
38291
|
+
@open
|
|
38292
|
+
@complex model auditRecordTypeDictionary {
|
|
38293
|
+
}
|
|
38294
|
+
|
|
38295
|
+
/**
|
|
38296
|
+
* Audit data for Audit Search events.
|
|
38297
|
+
*/
|
|
38298
|
+
@open
|
|
38299
|
+
@complex model auditSearchAuditRecord extends auditData {
|
|
38300
|
+
}
|
|
38301
|
+
|
|
37729
38302
|
@complex model autonomousSystem {
|
|
37730
38303
|
name: string;
|
|
37731
38304
|
number: int32;
|
|
@@ -37733,6 +38306,55 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37733
38306
|
value: string;
|
|
37734
38307
|
}
|
|
37735
38308
|
|
|
38309
|
+
/**
|
|
38310
|
+
* Audit data for Azfw Application Rule Aggregation Event events.
|
|
38311
|
+
*/
|
|
38312
|
+
@open
|
|
38313
|
+
@complex model azfwApplicationRuleAggregationEventRecord extends auditData {
|
|
38314
|
+
}
|
|
38315
|
+
|
|
38316
|
+
/**
|
|
38317
|
+
* Audit data for Azfw Dns Query Event events.
|
|
38318
|
+
*/
|
|
38319
|
+
@open
|
|
38320
|
+
@complex model azfwDnsQueryEventRecord extends auditData {
|
|
38321
|
+
}
|
|
38322
|
+
|
|
38323
|
+
/**
|
|
38324
|
+
* Audit data for Azfw Network Rule Event events.
|
|
38325
|
+
*/
|
|
38326
|
+
@open
|
|
38327
|
+
@complex model azfwNetworkRuleEventRecord extends auditData {
|
|
38328
|
+
}
|
|
38329
|
+
|
|
38330
|
+
/**
|
|
38331
|
+
* Audit data for Azure Active Directory Account Logon events.
|
|
38332
|
+
*/
|
|
38333
|
+
@open
|
|
38334
|
+
@complex model azureActiveDirectoryAccountLogonAuditRecord extends auditData {
|
|
38335
|
+
}
|
|
38336
|
+
|
|
38337
|
+
/**
|
|
38338
|
+
* Audit data for Azure Active Directory events.
|
|
38339
|
+
*/
|
|
38340
|
+
@open
|
|
38341
|
+
@complex model azureActiveDirectoryAuditRecord extends auditData {
|
|
38342
|
+
}
|
|
38343
|
+
|
|
38344
|
+
/**
|
|
38345
|
+
* Audit data for Azure Active Directory STS Logon events.
|
|
38346
|
+
*/
|
|
38347
|
+
@open
|
|
38348
|
+
@complex model azureActiveDirectoryStsLogonAuditRecord extends auditData {
|
|
38349
|
+
}
|
|
38350
|
+
|
|
38351
|
+
/**
|
|
38352
|
+
* Audit data for Azure AI Search Audit events.
|
|
38353
|
+
*/
|
|
38354
|
+
@open
|
|
38355
|
+
@complex model azureAISearchAuditRecord extends auditData {
|
|
38356
|
+
}
|
|
38357
|
+
|
|
37736
38358
|
@complex model azureResourceEvidence extends alertEvidence {
|
|
37737
38359
|
resourceId: string | null;
|
|
37738
38360
|
resourceName: string | null;
|
|
@@ -37753,6 +38375,83 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37753
38375
|
url: string | null;
|
|
37754
38376
|
}
|
|
37755
38377
|
|
|
38378
|
+
/**
|
|
38379
|
+
* Audit data for threat campaign events.
|
|
38380
|
+
*/
|
|
38381
|
+
@open
|
|
38382
|
+
@complex model campaignAuditRecord extends auditData {
|
|
38383
|
+
}
|
|
38384
|
+
|
|
38385
|
+
/**
|
|
38386
|
+
* Audit data for CCRAI Policy Violation events.
|
|
38387
|
+
*/
|
|
38388
|
+
@open
|
|
38389
|
+
@complex model ccraiPolicyViolationRecord extends auditData {
|
|
38390
|
+
}
|
|
38391
|
+
|
|
38392
|
+
/**
|
|
38393
|
+
* Audit data for CDP Classifier Health events.
|
|
38394
|
+
*/
|
|
38395
|
+
@open
|
|
38396
|
+
@complex model cdpClassifierHealthRecord extends auditData {
|
|
38397
|
+
}
|
|
38398
|
+
|
|
38399
|
+
/**
|
|
38400
|
+
* Audit data for CDP Cold Crawl Status events.
|
|
38401
|
+
*/
|
|
38402
|
+
@open
|
|
38403
|
+
@complex model cdpColdCrawlStatusRecord extends auditData {
|
|
38404
|
+
}
|
|
38405
|
+
|
|
38406
|
+
/**
|
|
38407
|
+
* Audit data for CDP Consumption Resource events.
|
|
38408
|
+
*/
|
|
38409
|
+
@open
|
|
38410
|
+
@complex model cdpConsumptionResourceRecord extends auditData {
|
|
38411
|
+
}
|
|
38412
|
+
|
|
38413
|
+
/**
|
|
38414
|
+
* Audit data for CDP Content Explorer Aggregate events.
|
|
38415
|
+
*/
|
|
38416
|
+
@open
|
|
38417
|
+
@complex model cdpContentExplorerAggregateRecord extends auditData {
|
|
38418
|
+
}
|
|
38419
|
+
|
|
38420
|
+
/**
|
|
38421
|
+
* Audit data for Cdpdlmai Interaction Insights events.
|
|
38422
|
+
*/
|
|
38423
|
+
@open
|
|
38424
|
+
@complex model cdpdlmaiInteractionInsightsRecord extends auditData {
|
|
38425
|
+
}
|
|
38426
|
+
|
|
38427
|
+
/**
|
|
38428
|
+
* Audit data for CDP DLP Sensitive Endpoint events.
|
|
38429
|
+
*/
|
|
38430
|
+
@open
|
|
38431
|
+
@complex model cdpDlpSensitiveEndpointAuditRecord extends auditData {
|
|
38432
|
+
}
|
|
38433
|
+
|
|
38434
|
+
/**
|
|
38435
|
+
* Audit data for CDP Log events.
|
|
38436
|
+
*/
|
|
38437
|
+
@open
|
|
38438
|
+
@complex model cdpLogRecord extends auditData {
|
|
38439
|
+
}
|
|
38440
|
+
|
|
38441
|
+
/**
|
|
38442
|
+
* Audit data for CDP OCR Billing events.
|
|
38443
|
+
*/
|
|
38444
|
+
@open
|
|
38445
|
+
@complex model cdpOcrBillingRecord extends auditData {
|
|
38446
|
+
}
|
|
38447
|
+
|
|
38448
|
+
/**
|
|
38449
|
+
* Audit data for CDP Resource Scope Change Event events.
|
|
38450
|
+
*/
|
|
38451
|
+
@open
|
|
38452
|
+
@complex model cdpResourceScopeChangeEventRecord extends auditData {
|
|
38453
|
+
}
|
|
38454
|
+
|
|
37756
38455
|
@complex model cloudApplicationEvidence extends alertEvidence {
|
|
37757
38456
|
appId: int64 | null;
|
|
37758
38457
|
displayName: string | null;
|
|
@@ -37778,11 +38477,200 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37778
38477
|
userAgent: string | null;
|
|
37779
38478
|
}
|
|
37780
38479
|
|
|
38480
|
+
/**
|
|
38481
|
+
* Audit data for Cloud Update Device Config events.
|
|
38482
|
+
*/
|
|
38483
|
+
@open
|
|
38484
|
+
@complex model cloudUpdateDeviceConfigAuditRecord extends auditData {
|
|
38485
|
+
}
|
|
38486
|
+
|
|
38487
|
+
/**
|
|
38488
|
+
* Audit data for Cloud Update Profile Config events.
|
|
38489
|
+
*/
|
|
38490
|
+
@open
|
|
38491
|
+
@complex model cloudUpdateProfileConfigAuditRecord extends auditData {
|
|
38492
|
+
}
|
|
38493
|
+
|
|
38494
|
+
/**
|
|
38495
|
+
* Audit data for Cloud Update Tenant Config events.
|
|
38496
|
+
*/
|
|
38497
|
+
@open
|
|
38498
|
+
@complex model cloudUpdateTenantConfigAuditRecord extends auditData {
|
|
38499
|
+
}
|
|
38500
|
+
|
|
38501
|
+
/**
|
|
38502
|
+
* Audit data for Compliance Connector events.
|
|
38503
|
+
*/
|
|
38504
|
+
@open
|
|
38505
|
+
@complex model complianceConnectorAuditRecord extends auditData {
|
|
38506
|
+
}
|
|
38507
|
+
|
|
38508
|
+
/**
|
|
38509
|
+
* Audit data for Compliance DLM Exchange events.
|
|
38510
|
+
*/
|
|
38511
|
+
@open
|
|
38512
|
+
@complex model complianceDLMExchangeAuditRecord extends auditData {
|
|
38513
|
+
}
|
|
38514
|
+
|
|
38515
|
+
/**
|
|
38516
|
+
* Audit data for Compliance DLM SharePoint events.
|
|
38517
|
+
*/
|
|
38518
|
+
@open
|
|
38519
|
+
@complex model complianceDLMSharePointAuditRecord extends auditData {
|
|
38520
|
+
}
|
|
38521
|
+
|
|
38522
|
+
/**
|
|
38523
|
+
* Audit data for Compliance DLP Applications events.
|
|
38524
|
+
*/
|
|
38525
|
+
@open
|
|
38526
|
+
@complex model complianceDLPApplicationsAuditRecord extends auditData {
|
|
38527
|
+
}
|
|
38528
|
+
|
|
38529
|
+
/**
|
|
38530
|
+
* Audit data for Compliance DLP Applications Classification events.
|
|
38531
|
+
*/
|
|
38532
|
+
@open
|
|
38533
|
+
@complex model complianceDLPApplicationsClassificationAuditRecord extends auditData {
|
|
38534
|
+
}
|
|
38535
|
+
|
|
38536
|
+
/**
|
|
38537
|
+
* Audit data for Compliance DLP Endpoint events.
|
|
38538
|
+
*/
|
|
38539
|
+
@open
|
|
38540
|
+
@complex model complianceDLPEndpointAuditRecord extends auditData {
|
|
38541
|
+
}
|
|
38542
|
+
|
|
38543
|
+
/**
|
|
38544
|
+
* Audit data for Compliance DLP Endpoint Discovery events.
|
|
38545
|
+
*/
|
|
38546
|
+
@open
|
|
38547
|
+
@complex model complianceDLPEndpointDiscoveryAuditRecord extends auditData {
|
|
38548
|
+
}
|
|
38549
|
+
|
|
38550
|
+
/**
|
|
38551
|
+
* Audit data for Compliance DLP Enforcement events.
|
|
38552
|
+
*/
|
|
38553
|
+
@open
|
|
38554
|
+
@complex model complianceDLPEnforcementAuditRecord extends auditData {
|
|
38555
|
+
}
|
|
38556
|
+
|
|
38557
|
+
/**
|
|
38558
|
+
* Audit data for Compliance DLP Exchange events.
|
|
38559
|
+
*/
|
|
38560
|
+
@open
|
|
38561
|
+
@complex model complianceDLPExchangeAuditRecord extends auditData {
|
|
38562
|
+
}
|
|
38563
|
+
|
|
38564
|
+
/**
|
|
38565
|
+
* Audit data for Compliance DLP Exchange Classification events.
|
|
38566
|
+
*/
|
|
38567
|
+
@open
|
|
38568
|
+
@complex model complianceDLPExchangeClassificationAuditRecord extends auditData {
|
|
38569
|
+
}
|
|
38570
|
+
|
|
38571
|
+
/**
|
|
38572
|
+
* Audit data for Compliance DLP Exchange Classification CDP events.
|
|
38573
|
+
*/
|
|
38574
|
+
@open
|
|
38575
|
+
@complex model complianceDLPExchangeClassificationCdpRecord extends auditData {
|
|
38576
|
+
}
|
|
38577
|
+
|
|
38578
|
+
/**
|
|
38579
|
+
* Audit data for Compliance DLP Exchange Discovery events.
|
|
38580
|
+
*/
|
|
38581
|
+
@open
|
|
38582
|
+
@complex model complianceDLPExchangeDiscoveryAuditRecord extends auditData {
|
|
38583
|
+
}
|
|
38584
|
+
|
|
38585
|
+
/**
|
|
38586
|
+
* Audit data for Compliance DLP SharePoint events.
|
|
38587
|
+
*/
|
|
38588
|
+
@open
|
|
38589
|
+
@complex model complianceDLPSharePointAuditRecord extends auditData {
|
|
38590
|
+
}
|
|
38591
|
+
|
|
38592
|
+
/**
|
|
38593
|
+
* Audit data for Compliance DLP SharePoint Classification events.
|
|
38594
|
+
*/
|
|
38595
|
+
@open
|
|
38596
|
+
@complex model complianceDLPSharePointClassificationAuditRecord extends auditData {
|
|
38597
|
+
}
|
|
38598
|
+
|
|
38599
|
+
/**
|
|
38600
|
+
* Audit data for Compliance DLP SharePoint Classification CDP events.
|
|
38601
|
+
*/
|
|
38602
|
+
@open
|
|
38603
|
+
@complex model complianceDLPSharePointClassificationCdpRecord extends auditData {
|
|
38604
|
+
}
|
|
38605
|
+
|
|
38606
|
+
/**
|
|
38607
|
+
* Audit data for Compliance DLP SharePoint Classification Extended events.
|
|
38608
|
+
*/
|
|
38609
|
+
@open
|
|
38610
|
+
@complex model complianceDLPSharePointClassificationExtendedAuditRecord extends auditData {
|
|
38611
|
+
}
|
|
38612
|
+
|
|
38613
|
+
/**
|
|
38614
|
+
* Audit data for Compliance Exchange OCR events.
|
|
38615
|
+
*/
|
|
38616
|
+
@open
|
|
38617
|
+
@complex model complianceExchangeOcrAuditRecord extends auditData {
|
|
38618
|
+
}
|
|
38619
|
+
|
|
38620
|
+
/**
|
|
38621
|
+
* Audit data for Compliance Manager Action events.
|
|
38622
|
+
*/
|
|
38623
|
+
@open
|
|
38624
|
+
@complex model complianceManagerActionRecord extends auditData {
|
|
38625
|
+
}
|
|
38626
|
+
|
|
38627
|
+
/**
|
|
38628
|
+
* Audit data for Compliance Policy Grading SharePoint events.
|
|
38629
|
+
*/
|
|
38630
|
+
@open
|
|
38631
|
+
@complex model compliancePolicyGradingSharePointAuditRecord extends auditData {
|
|
38632
|
+
}
|
|
38633
|
+
|
|
38634
|
+
/**
|
|
38635
|
+
* Audit data for Compliance Settings Change events.
|
|
38636
|
+
*/
|
|
38637
|
+
@open
|
|
38638
|
+
@complex model complianceSettingsChangeAuditRecord extends auditData {
|
|
38639
|
+
}
|
|
38640
|
+
|
|
38641
|
+
/**
|
|
38642
|
+
* Audit data for Compliance SIT Grading SharePoint events.
|
|
38643
|
+
*/
|
|
38644
|
+
@open
|
|
38645
|
+
@complex model complianceSitGradingSharePointAuditRecord extends auditData {
|
|
38646
|
+
}
|
|
38647
|
+
|
|
38648
|
+
/**
|
|
38649
|
+
* Audit data for Compliance Supervision Exchange events.
|
|
38650
|
+
*/
|
|
38651
|
+
@open
|
|
38652
|
+
@complex model complianceSupervisionExchangeAuditRecord extends auditData {
|
|
38653
|
+
}
|
|
38654
|
+
|
|
37781
38655
|
@complex model compromiseIndicator {
|
|
37782
38656
|
value: string | null;
|
|
37783
38657
|
verdict: verdictCategory | null;
|
|
37784
38658
|
}
|
|
37785
38659
|
|
|
38660
|
+
/**
|
|
38661
|
+
* Audit data for Connected AI App Interaction events.
|
|
38662
|
+
*/
|
|
38663
|
+
@open
|
|
38664
|
+
@complex model connectedAIAppInteractionAuditRecord extends auditData {
|
|
38665
|
+
}
|
|
38666
|
+
|
|
38667
|
+
/**
|
|
38668
|
+
* Audit data for Consumption Resource events.
|
|
38669
|
+
*/
|
|
38670
|
+
@open
|
|
38671
|
+
@complex model consumptionResourceAuditRecord extends auditData {
|
|
38672
|
+
}
|
|
38673
|
+
|
|
37786
38674
|
@complex model containerEvidence extends alertEvidence {
|
|
37787
38675
|
args: string[] | null;
|
|
37788
38676
|
command: string[] | null;
|
|
@@ -37803,12 +38691,201 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37803
38691
|
registry: string | null;
|
|
37804
38692
|
}
|
|
37805
38693
|
|
|
38694
|
+
/**
|
|
38695
|
+
* Audit data for Content Store Meta events.
|
|
38696
|
+
*/
|
|
38697
|
+
@open
|
|
38698
|
+
@complex model contentStoreMetadataRecord extends auditData {
|
|
38699
|
+
}
|
|
38700
|
+
|
|
38701
|
+
/**
|
|
38702
|
+
* Audit data for Copilot Agent Management events.
|
|
38703
|
+
*/
|
|
38704
|
+
@open
|
|
38705
|
+
@complex model copilotAgentManagementAuditRecord extends auditData {
|
|
38706
|
+
}
|
|
38707
|
+
|
|
38708
|
+
/**
|
|
38709
|
+
* Audit data for Copilot for Security Logging events.
|
|
38710
|
+
*/
|
|
38711
|
+
@open
|
|
38712
|
+
@complex model copilotForSecurityLoggingAuditRecord extends auditData {
|
|
38713
|
+
}
|
|
38714
|
+
|
|
38715
|
+
/**
|
|
38716
|
+
* Audit data for Copilot for Security Trigger events.
|
|
38717
|
+
*/
|
|
38718
|
+
@open
|
|
38719
|
+
@complex model copilotForSecurityTriggerAuditRecord extends auditData {
|
|
38720
|
+
}
|
|
38721
|
+
|
|
38722
|
+
/**
|
|
38723
|
+
* Audit data for Copilot Interaction events.
|
|
38724
|
+
*/
|
|
38725
|
+
@open
|
|
38726
|
+
@complex model copilotInteractionAuditRecord extends auditData {
|
|
38727
|
+
}
|
|
38728
|
+
|
|
38729
|
+
/**
|
|
38730
|
+
* Audit data for Copilot Plugin Setting events.
|
|
38731
|
+
*/
|
|
38732
|
+
@open
|
|
38733
|
+
@complex model copilotPluginSettingAuditRecord extends auditData {
|
|
38734
|
+
}
|
|
38735
|
+
|
|
38736
|
+
/**
|
|
38737
|
+
* Audit data for Copilot Prompt Book Setting events.
|
|
38738
|
+
*/
|
|
38739
|
+
@open
|
|
38740
|
+
@complex model copilotPromptBookSettingAuditRecord extends auditData {
|
|
38741
|
+
}
|
|
38742
|
+
|
|
38743
|
+
/**
|
|
38744
|
+
* Audit data for Copilot Session Sharing events.
|
|
38745
|
+
*/
|
|
38746
|
+
@open
|
|
38747
|
+
@complex model copilotSessionSharingAuditRecord extends auditData {
|
|
38748
|
+
}
|
|
38749
|
+
|
|
38750
|
+
/**
|
|
38751
|
+
* Audit data for Copilot Setting events.
|
|
38752
|
+
*/
|
|
38753
|
+
@open
|
|
38754
|
+
@complex model copilotSettingAuditRecord extends auditData {
|
|
38755
|
+
}
|
|
38756
|
+
|
|
38757
|
+
/**
|
|
38758
|
+
* Audit data for Copilot Workspace Setting events.
|
|
38759
|
+
*/
|
|
38760
|
+
@open
|
|
38761
|
+
@complex model copilotWorkspaceSettingAuditRecord extends auditData {
|
|
38762
|
+
}
|
|
38763
|
+
|
|
38764
|
+
/**
|
|
38765
|
+
* Audit data for Core Reporting Settings events.
|
|
38766
|
+
*/
|
|
38767
|
+
@open
|
|
38768
|
+
@complex model coreReportingSettingsAuditRecord extends auditData {
|
|
38769
|
+
}
|
|
38770
|
+
|
|
38771
|
+
/**
|
|
38772
|
+
* Audit data for Cortana Briefing events.
|
|
38773
|
+
*/
|
|
38774
|
+
@open
|
|
38775
|
+
@complex model cortanaBriefingAuditRecord extends auditData {
|
|
38776
|
+
}
|
|
38777
|
+
|
|
38778
|
+
/**
|
|
38779
|
+
* Audit data for Critical Asset Management Classification events.
|
|
38780
|
+
*/
|
|
38781
|
+
@open
|
|
38782
|
+
@complex model criticalAssetManagementClassificationRecord extends auditData {
|
|
38783
|
+
}
|
|
38784
|
+
|
|
38785
|
+
/**
|
|
38786
|
+
* Audit data for CRM Entity Operation events.
|
|
38787
|
+
*/
|
|
38788
|
+
@open
|
|
38789
|
+
@complex model crmEntityOperationAuditRecord extends auditData {
|
|
38790
|
+
}
|
|
38791
|
+
|
|
38792
|
+
/**
|
|
38793
|
+
* Audit data for Cross Tenant Access Policy events.
|
|
38794
|
+
*/
|
|
38795
|
+
@open
|
|
38796
|
+
@complex model crossTenantAccessPolicyAuditRecord extends auditData {
|
|
38797
|
+
}
|
|
38798
|
+
|
|
38799
|
+
/**
|
|
38800
|
+
* Audit data for Customer Key Service Encryption events.
|
|
38801
|
+
*/
|
|
38802
|
+
@open
|
|
38803
|
+
@complex model customerKeyServiceEncryptionAuditRecord extends auditData {
|
|
38804
|
+
}
|
|
38805
|
+
|
|
37806
38806
|
@complex model cvssSummary {
|
|
37807
38807
|
score: float64;
|
|
37808
38808
|
severity: vulnerabilitySeverity | null;
|
|
37809
38809
|
vectorString: string | null;
|
|
37810
38810
|
}
|
|
37811
38811
|
|
|
38812
|
+
/**
|
|
38813
|
+
* Audit data for Data Center Security cmdlet events.
|
|
38814
|
+
*/
|
|
38815
|
+
@open
|
|
38816
|
+
@complex model dataCenterSecurityCmdletAuditRecord extends auditData {
|
|
38817
|
+
}
|
|
38818
|
+
|
|
38819
|
+
/**
|
|
38820
|
+
* Audit data for Data Governance events.
|
|
38821
|
+
*/
|
|
38822
|
+
@open
|
|
38823
|
+
@complex model dataGovernanceAuditRecord extends auditData {
|
|
38824
|
+
}
|
|
38825
|
+
|
|
38826
|
+
/**
|
|
38827
|
+
* Audit data for Data Insights Rest Api events.
|
|
38828
|
+
*/
|
|
38829
|
+
@open
|
|
38830
|
+
@complex model dataInsightsRestApiAuditRecord extends auditData {
|
|
38831
|
+
}
|
|
38832
|
+
|
|
38833
|
+
/**
|
|
38834
|
+
* Audit data for Data Lake Export Operation events.
|
|
38835
|
+
*/
|
|
38836
|
+
@open
|
|
38837
|
+
@complex model dataLakeExportOperationAuditRecord extends auditData {
|
|
38838
|
+
}
|
|
38839
|
+
|
|
38840
|
+
/**
|
|
38841
|
+
* Audit data for Data Security Investigation events.
|
|
38842
|
+
*/
|
|
38843
|
+
@open
|
|
38844
|
+
@complex model dataSecurityInvestigationAuditRecord extends auditData {
|
|
38845
|
+
}
|
|
38846
|
+
|
|
38847
|
+
/**
|
|
38848
|
+
* Audit data for Data Share Operation events.
|
|
38849
|
+
*/
|
|
38850
|
+
@open
|
|
38851
|
+
@complex model dataShareOperationAuditRecord extends auditData {
|
|
38852
|
+
}
|
|
38853
|
+
|
|
38854
|
+
/**
|
|
38855
|
+
* Default open-type audit data when no specific subtype applies.
|
|
38856
|
+
*/
|
|
38857
|
+
@open
|
|
38858
|
+
@complex model defaultAuditData extends auditData {
|
|
38859
|
+
}
|
|
38860
|
+
|
|
38861
|
+
/**
|
|
38862
|
+
* Audit data for Defender Case Management events.
|
|
38863
|
+
*/
|
|
38864
|
+
@open
|
|
38865
|
+
@complex model defenderCaseManagementAuditRecord extends auditData {
|
|
38866
|
+
}
|
|
38867
|
+
|
|
38868
|
+
/**
|
|
38869
|
+
* Audit data for Defender Preview Features events.
|
|
38870
|
+
*/
|
|
38871
|
+
@open
|
|
38872
|
+
@complex model defenderPreviewFeaturesRecord extends auditData {
|
|
38873
|
+
}
|
|
38874
|
+
|
|
38875
|
+
/**
|
|
38876
|
+
* Audit data for Defender Security for AI Configuration events.
|
|
38877
|
+
*/
|
|
38878
|
+
@open
|
|
38879
|
+
@complex model defenderSecurityForAIConfigurationAuditRecord extends auditData {
|
|
38880
|
+
}
|
|
38881
|
+
|
|
38882
|
+
/**
|
|
38883
|
+
* Audit data for Deploy Feature Activity events.
|
|
38884
|
+
*/
|
|
38885
|
+
@open
|
|
38886
|
+
@complex model deployFeatureActivityRecord extends auditData {
|
|
38887
|
+
}
|
|
38888
|
+
|
|
37812
38889
|
@complex model deploymentAccessKeyType {
|
|
37813
38890
|
deploymentAccessKey: string;
|
|
37814
38891
|
}
|
|
@@ -37853,6 +38930,27 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37853
38930
|
droppedfiles: string[] | null;
|
|
37854
38931
|
}
|
|
37855
38932
|
|
|
38933
|
+
/**
|
|
38934
|
+
* Audit data for Device Discovery Settings Authenticated Scans events.
|
|
38935
|
+
*/
|
|
38936
|
+
@open
|
|
38937
|
+
@complex model deviceDiscoverySettingsAuthenticatedScansRecord extends auditData {
|
|
38938
|
+
}
|
|
38939
|
+
|
|
38940
|
+
/**
|
|
38941
|
+
* Audit data for Device Discovery Settings Exclusion events.
|
|
38942
|
+
*/
|
|
38943
|
+
@open
|
|
38944
|
+
@complex model deviceDiscoverySettingsExclusionRecord extends auditData {
|
|
38945
|
+
}
|
|
38946
|
+
|
|
38947
|
+
/**
|
|
38948
|
+
* Audit data for Device Discovery Settings events.
|
|
38949
|
+
*/
|
|
38950
|
+
@open
|
|
38951
|
+
@complex model deviceDiscoverySettingsRecord extends auditData {
|
|
38952
|
+
}
|
|
38953
|
+
|
|
37856
38954
|
@complex model deviceEvidence extends alertEvidence {
|
|
37857
38955
|
azureAdDeviceId: string | null;
|
|
37858
38956
|
defenderAvStatus: defenderAvStatus | null;
|
|
@@ -37882,6 +38980,34 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37882
38980
|
@complex model dictionary {
|
|
37883
38981
|
}
|
|
37884
38982
|
|
|
38983
|
+
/**
|
|
38984
|
+
* Audit data for eDiscovery events.
|
|
38985
|
+
*/
|
|
38986
|
+
@open
|
|
38987
|
+
@complex model discoveryAuditRecord extends auditData {
|
|
38988
|
+
}
|
|
38989
|
+
|
|
38990
|
+
/**
|
|
38991
|
+
* Audit data for DLP Endpoint events.
|
|
38992
|
+
*/
|
|
38993
|
+
@open
|
|
38994
|
+
@complex model dlpEndpointAuditRecord extends auditData {
|
|
38995
|
+
}
|
|
38996
|
+
|
|
38997
|
+
/**
|
|
38998
|
+
* Audit data for DLP Import Result events.
|
|
38999
|
+
*/
|
|
39000
|
+
@open
|
|
39001
|
+
@complex model dlpImportResultAuditRecord extends auditData {
|
|
39002
|
+
}
|
|
39003
|
+
|
|
39004
|
+
/**
|
|
39005
|
+
* Audit data for DLP Sensitive Information Type Rule Package cmdlet events.
|
|
39006
|
+
*/
|
|
39007
|
+
@open
|
|
39008
|
+
@complex model dlpSensitiveInformationTypeRulePackageCmdletRecord extends auditData {
|
|
39009
|
+
}
|
|
39010
|
+
|
|
37885
39011
|
@complex model dnsEvidence extends alertEvidence {
|
|
37886
39012
|
dnsServerIp: ipEvidence | null;
|
|
37887
39013
|
domainName: string | null;
|
|
@@ -37889,16 +39015,65 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37889
39015
|
ipAddresses: ipEvidence[] | null;
|
|
37890
39016
|
}
|
|
37891
39017
|
|
|
39018
|
+
/**
|
|
39019
|
+
* Audit data for Dragon Copilot Access events.
|
|
39020
|
+
*/
|
|
39021
|
+
@open
|
|
39022
|
+
@complex model dragonCopilotAccessRecord extends auditData {
|
|
39023
|
+
}
|
|
39024
|
+
|
|
39025
|
+
/**
|
|
39026
|
+
* Audit data for Dragon Copilot Admin events.
|
|
39027
|
+
*/
|
|
39028
|
+
@open
|
|
39029
|
+
@complex model dragonCopilotAdminRecord extends auditData {
|
|
39030
|
+
}
|
|
39031
|
+
|
|
39032
|
+
/**
|
|
39033
|
+
* Audit data for Dragon Copilot Clinical Data events.
|
|
39034
|
+
*/
|
|
39035
|
+
@open
|
|
39036
|
+
@complex model dragonCopilotClinicalDataRecord extends auditData {
|
|
39037
|
+
}
|
|
39038
|
+
|
|
39039
|
+
/**
|
|
39040
|
+
* Audit data for Dragon Copilot Session events.
|
|
39041
|
+
*/
|
|
39042
|
+
@open
|
|
39043
|
+
@complex model dragonCopilotSessionRecord extends auditData {
|
|
39044
|
+
}
|
|
39045
|
+
|
|
37892
39046
|
@open
|
|
37893
39047
|
@complex model dynamicColumnValue {
|
|
37894
39048
|
}
|
|
37895
39049
|
|
|
39050
|
+
/**
|
|
39051
|
+
* Audit data for Dynamics365 Business Central events.
|
|
39052
|
+
*/
|
|
39053
|
+
@open
|
|
39054
|
+
@complex model dynamics365BusinessCentralAuditRecord extends auditData {
|
|
39055
|
+
}
|
|
39056
|
+
|
|
39057
|
+
/**
|
|
39058
|
+
* Audit data for EHR Connector events.
|
|
39059
|
+
*/
|
|
39060
|
+
@open
|
|
39061
|
+
@complex model ehrConnectorAuditBaseRecord extends auditData {
|
|
39062
|
+
}
|
|
39063
|
+
|
|
37896
39064
|
@complex model emailSender {
|
|
37897
39065
|
displayName: string | null;
|
|
37898
39066
|
domainName: string | null;
|
|
37899
39067
|
emailAddress: string | null;
|
|
37900
39068
|
}
|
|
37901
39069
|
|
|
39070
|
+
/**
|
|
39071
|
+
* Audit data for EOP Submission Feed Entity events.
|
|
39072
|
+
*/
|
|
39073
|
+
@open
|
|
39074
|
+
@complex model eopSubmissionFeedEntityAuditRecord extends auditData {
|
|
39075
|
+
}
|
|
39076
|
+
|
|
37902
39077
|
@complex model eventPropagationResult {
|
|
37903
39078
|
location: string | null;
|
|
37904
39079
|
serviceName: string | null;
|
|
@@ -37911,12 +39086,61 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37911
39086
|
queryType: queryType | null;
|
|
37912
39087
|
}
|
|
37913
39088
|
|
|
39089
|
+
/**
|
|
39090
|
+
* Audit data for Exchange Admin events.
|
|
39091
|
+
*/
|
|
39092
|
+
@open
|
|
39093
|
+
@complex model exchangeAdminAuditRecord extends auditData {
|
|
39094
|
+
}
|
|
39095
|
+
|
|
39096
|
+
/**
|
|
39097
|
+
* Audit data for Exchange Aggregated Mailbox events.
|
|
39098
|
+
*/
|
|
39099
|
+
@open
|
|
39100
|
+
@complex model exchangeAggregatedMailboxAuditRecord extends auditData {
|
|
39101
|
+
}
|
|
39102
|
+
|
|
39103
|
+
/**
|
|
39104
|
+
* Audit data for Exchange Aggregated Operation events.
|
|
39105
|
+
*/
|
|
39106
|
+
@open
|
|
39107
|
+
@complex model exchangeAggregatedOperationRecord extends auditData {
|
|
39108
|
+
}
|
|
39109
|
+
|
|
39110
|
+
/**
|
|
39111
|
+
* Audit data for Exchange Mailbox Audit Group events.
|
|
39112
|
+
*/
|
|
39113
|
+
@open
|
|
39114
|
+
@complex model exchangeMailboxAuditGroupRecord extends auditData {
|
|
39115
|
+
}
|
|
39116
|
+
|
|
39117
|
+
/**
|
|
39118
|
+
* Audit data for Exchange Mailbox events.
|
|
39119
|
+
*/
|
|
39120
|
+
@open
|
|
39121
|
+
@complex model exchangeMailboxAuditRecord extends auditData {
|
|
39122
|
+
}
|
|
39123
|
+
|
|
37914
39124
|
@complex model exportFileMetadata {
|
|
37915
39125
|
downloadUrl: string | null;
|
|
37916
39126
|
fileName: string | null;
|
|
37917
39127
|
size: int64 | null;
|
|
37918
39128
|
}
|
|
37919
39129
|
|
|
39130
|
+
/**
|
|
39131
|
+
* Audit data for Microsoft Fabric events.
|
|
39132
|
+
*/
|
|
39133
|
+
@open
|
|
39134
|
+
@complex model fabricAuditRecord extends auditData {
|
|
39135
|
+
}
|
|
39136
|
+
|
|
39137
|
+
/**
|
|
39138
|
+
* Audit data for Fabric Policy events.
|
|
39139
|
+
*/
|
|
39140
|
+
@open
|
|
39141
|
+
@complex model fabricPolicyRecord extends auditData {
|
|
39142
|
+
}
|
|
39143
|
+
|
|
37920
39144
|
@complex model fileDetails {
|
|
37921
39145
|
fileName: string | null;
|
|
37922
39146
|
filePath: string | null;
|
|
@@ -38019,6 +39243,20 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38019
39243
|
resourceType: string | null;
|
|
38020
39244
|
}
|
|
38021
39245
|
|
|
39246
|
+
/**
|
|
39247
|
+
* Audit data for Healthcare Signal events.
|
|
39248
|
+
*/
|
|
39249
|
+
@open
|
|
39250
|
+
@complex model healthcareSignalRecord extends auditData {
|
|
39251
|
+
}
|
|
39252
|
+
|
|
39253
|
+
/**
|
|
39254
|
+
* Audit data for Hosted RPA events.
|
|
39255
|
+
*/
|
|
39256
|
+
@open
|
|
39257
|
+
@complex model hostedRpaAuditRecord extends auditData {
|
|
39258
|
+
}
|
|
39259
|
+
|
|
38022
39260
|
@complex model hostLogonSessionEvidence extends alertEvidence {
|
|
38023
39261
|
account: userEvidence | null;
|
|
38024
39262
|
endUtcDateTime: offsetDateTime | null;
|
|
@@ -38055,6 +39293,13 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38055
39293
|
port: int32 | null;
|
|
38056
39294
|
}
|
|
38057
39295
|
|
|
39296
|
+
/**
|
|
39297
|
+
* Audit data for HR Signal events.
|
|
39298
|
+
*/
|
|
39299
|
+
@open
|
|
39300
|
+
@complex model hrSignalAuditRecord extends auditData {
|
|
39301
|
+
}
|
|
39302
|
+
|
|
38058
39303
|
@complex model huntingQueryResults {
|
|
38059
39304
|
results: huntingRowResult[] | null;
|
|
38060
39305
|
schema: singlePropertySchema[] | null;
|
|
@@ -38064,11 +39309,60 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38064
39309
|
@complex model huntingRowResult {
|
|
38065
39310
|
}
|
|
38066
39311
|
|
|
38067
|
-
|
|
38068
|
-
|
|
39312
|
+
/**
|
|
39313
|
+
* Audit data for Hygiene Event events.
|
|
39314
|
+
*/
|
|
39315
|
+
@open
|
|
39316
|
+
@complex model hygieneEventRecord extends auditData {
|
|
39317
|
+
}
|
|
39318
|
+
|
|
39319
|
+
@complex model hyperlink {
|
|
39320
|
+
name: string;
|
|
38069
39321
|
url: string;
|
|
38070
39322
|
}
|
|
38071
39323
|
|
|
39324
|
+
/**
|
|
39325
|
+
* Audit data for Information Barrier Policy Application events.
|
|
39326
|
+
*/
|
|
39327
|
+
@open
|
|
39328
|
+
@complex model informationBarrierPolicyApplicationAuditRecord extends auditData {
|
|
39329
|
+
}
|
|
39330
|
+
|
|
39331
|
+
/**
|
|
39332
|
+
* Audit data for Information Worker Protection events.
|
|
39333
|
+
*/
|
|
39334
|
+
@open
|
|
39335
|
+
@complex model informationWorkerProtectionAuditRecord extends auditData {
|
|
39336
|
+
}
|
|
39337
|
+
|
|
39338
|
+
/**
|
|
39339
|
+
* Audit data for Insider Risk Scoped User Insights events.
|
|
39340
|
+
*/
|
|
39341
|
+
@open
|
|
39342
|
+
@complex model insiderRiskScopedUserInsightsRecord extends auditData {
|
|
39343
|
+
}
|
|
39344
|
+
|
|
39345
|
+
/**
|
|
39346
|
+
* Audit data for Insider Risk Scoped Users events.
|
|
39347
|
+
*/
|
|
39348
|
+
@open
|
|
39349
|
+
@complex model insiderRiskScopedUsersRecord extends auditData {
|
|
39350
|
+
}
|
|
39351
|
+
|
|
39352
|
+
/**
|
|
39353
|
+
* Audit data for Integrated Apps App Admin Activity events.
|
|
39354
|
+
*/
|
|
39355
|
+
@open
|
|
39356
|
+
@complex model integratedAppsAppAdminActivityAuditRecord extends auditData {
|
|
39357
|
+
}
|
|
39358
|
+
|
|
39359
|
+
/**
|
|
39360
|
+
* Audit data for Integrated Apps App Settings Admin Activity events.
|
|
39361
|
+
*/
|
|
39362
|
+
@open
|
|
39363
|
+
@complex model integratedAppsAppSettingsAdminActivityAuditRecord extends auditData {
|
|
39364
|
+
}
|
|
39365
|
+
|
|
38072
39366
|
@complex model intelligenceProfileCountryOrRegionOfOrigin {
|
|
38073
39367
|
code: string;
|
|
38074
39368
|
label: string;
|
|
@@ -38117,6 +39411,27 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38117
39411
|
stream: stream | null;
|
|
38118
39412
|
}
|
|
38119
39413
|
|
|
39414
|
+
/**
|
|
39415
|
+
* Audit data for IRM Activity Audit Trail events.
|
|
39416
|
+
*/
|
|
39417
|
+
@open
|
|
39418
|
+
@complex model irmActivityAuditTrailRecord extends auditData {
|
|
39419
|
+
}
|
|
39420
|
+
|
|
39421
|
+
/**
|
|
39422
|
+
* Audit data for IRM User Defined Detection events.
|
|
39423
|
+
*/
|
|
39424
|
+
@open
|
|
39425
|
+
@complex model irmUserDefinedDetectionRecord extends auditData {
|
|
39426
|
+
}
|
|
39427
|
+
|
|
39428
|
+
/**
|
|
39429
|
+
* Audit data for Microsoft Kaizala events.
|
|
39430
|
+
*/
|
|
39431
|
+
@open
|
|
39432
|
+
@complex model kaizalaAuditRecord extends auditData {
|
|
39433
|
+
}
|
|
39434
|
+
|
|
38120
39435
|
@complex model kubernetesClusterEvidence extends alertEvidence {
|
|
38121
39436
|
cloudResource: alertEvidence | null;
|
|
38122
39437
|
distribution: string | null;
|
|
@@ -38181,11 +39496,60 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38181
39496
|
targetPort: string | null;
|
|
38182
39497
|
}
|
|
38183
39498
|
|
|
39499
|
+
/**
|
|
39500
|
+
* Audit data for Label Analytics Aggregate events.
|
|
39501
|
+
*/
|
|
39502
|
+
@open
|
|
39503
|
+
@complex model labelAnalyticsAggregateAuditRecord extends auditData {
|
|
39504
|
+
}
|
|
39505
|
+
|
|
39506
|
+
/**
|
|
39507
|
+
* Audit data for Label Content Explorer events.
|
|
39508
|
+
*/
|
|
39509
|
+
@open
|
|
39510
|
+
@complex model labelContentExplorerAuditRecord extends auditData {
|
|
39511
|
+
}
|
|
39512
|
+
|
|
39513
|
+
/**
|
|
39514
|
+
* Audit data for Large Content Meta events.
|
|
39515
|
+
*/
|
|
39516
|
+
@open
|
|
39517
|
+
@complex model largeContentMetadataAuditRecord extends auditData {
|
|
39518
|
+
}
|
|
39519
|
+
|
|
38184
39520
|
@complex model loggedOnUser {
|
|
38185
39521
|
accountName: string | null;
|
|
38186
39522
|
domainName: string | null;
|
|
38187
39523
|
}
|
|
38188
39524
|
|
|
39525
|
+
/**
|
|
39526
|
+
* Audit data for M365 Compliance Connector events.
|
|
39527
|
+
*/
|
|
39528
|
+
@open
|
|
39529
|
+
@complex model m365ComplianceConnectorAuditRecord extends auditData {
|
|
39530
|
+
}
|
|
39531
|
+
|
|
39532
|
+
/**
|
|
39533
|
+
* Audit data for M365daad events.
|
|
39534
|
+
*/
|
|
39535
|
+
@open
|
|
39536
|
+
@complex model m365daadAuditRecord extends auditData {
|
|
39537
|
+
}
|
|
39538
|
+
|
|
39539
|
+
/**
|
|
39540
|
+
* Audit data for M365odsp Asset Meta events.
|
|
39541
|
+
*/
|
|
39542
|
+
@open
|
|
39543
|
+
@complex model m365odspAssetMetadataRecord extends auditData {
|
|
39544
|
+
}
|
|
39545
|
+
|
|
39546
|
+
/**
|
|
39547
|
+
* Audit data for M365 Search Sections events.
|
|
39548
|
+
*/
|
|
39549
|
+
@open
|
|
39550
|
+
@complex model m365SearchSectionsRecord extends auditData {
|
|
39551
|
+
}
|
|
39552
|
+
|
|
38189
39553
|
@complex model mailboxConfigurationEvidence extends alertEvidence {
|
|
38190
39554
|
configurationId: string | null;
|
|
38191
39555
|
configurationType: mailboxConfigurationType | null;
|
|
@@ -38211,6 +39575,13 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38211
39575
|
urn: string | null;
|
|
38212
39576
|
}
|
|
38213
39577
|
|
|
39578
|
+
/**
|
|
39579
|
+
* Audit data for Mail Submission events.
|
|
39580
|
+
*/
|
|
39581
|
+
@open
|
|
39582
|
+
@complex model mailSubmissionData extends auditData {
|
|
39583
|
+
}
|
|
39584
|
+
|
|
38214
39585
|
@complex model malwareEvidence extends alertEvidence {
|
|
38215
39586
|
category: string | null;
|
|
38216
39587
|
files: fileEvidence[] | null;
|
|
@@ -38218,10 +39589,458 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38218
39589
|
processes: processEvidence[] | null;
|
|
38219
39590
|
}
|
|
38220
39591
|
|
|
39592
|
+
/**
|
|
39593
|
+
* Audit data for Managed Services events.
|
|
39594
|
+
*/
|
|
39595
|
+
@open
|
|
39596
|
+
@complex model managedServicesAuditRecord extends auditData {
|
|
39597
|
+
}
|
|
39598
|
+
|
|
39599
|
+
/**
|
|
39600
|
+
* Audit data for Managed Tenants events.
|
|
39601
|
+
*/
|
|
39602
|
+
@open
|
|
39603
|
+
@complex model managedTenantsAuditRecord extends auditData {
|
|
39604
|
+
}
|
|
39605
|
+
|
|
39606
|
+
/**
|
|
39607
|
+
* Audit data for MAPG Alerts events.
|
|
39608
|
+
*/
|
|
39609
|
+
@open
|
|
39610
|
+
@complex model mapgAlertsAuditRecord extends auditData {
|
|
39611
|
+
}
|
|
39612
|
+
|
|
39613
|
+
/**
|
|
39614
|
+
* Audit data for MAPG Onboard events.
|
|
39615
|
+
*/
|
|
39616
|
+
@open
|
|
39617
|
+
@complex model mapgOnboardAuditRecord extends auditData {
|
|
39618
|
+
}
|
|
39619
|
+
|
|
39620
|
+
/**
|
|
39621
|
+
* Audit data for MAPG Policy events.
|
|
39622
|
+
*/
|
|
39623
|
+
@open
|
|
39624
|
+
@complex model mapgPolicyAuditRecord extends auditData {
|
|
39625
|
+
}
|
|
39626
|
+
|
|
39627
|
+
/**
|
|
39628
|
+
* Audit data for MAPG Remediation events.
|
|
39629
|
+
*/
|
|
39630
|
+
@open
|
|
39631
|
+
@complex model mapgRemediationAuditRecord extends auditData {
|
|
39632
|
+
}
|
|
39633
|
+
|
|
39634
|
+
/**
|
|
39635
|
+
* Audit data for MCAS Alerts events.
|
|
39636
|
+
*/
|
|
39637
|
+
@open
|
|
39638
|
+
@complex model mcasAlertsAuditRecord extends auditData {
|
|
39639
|
+
}
|
|
39640
|
+
|
|
39641
|
+
/**
|
|
39642
|
+
* Audit data for MDA events.
|
|
39643
|
+
*/
|
|
39644
|
+
@open
|
|
39645
|
+
@complex model mdaAuditRecord extends auditData {
|
|
39646
|
+
}
|
|
39647
|
+
|
|
39648
|
+
/**
|
|
39649
|
+
* Audit data for MDA Data Security Signal events.
|
|
39650
|
+
*/
|
|
39651
|
+
@open
|
|
39652
|
+
@complex model mdaDataSecuritySignalRecord extends auditData {
|
|
39653
|
+
}
|
|
39654
|
+
|
|
39655
|
+
/**
|
|
39656
|
+
* Audit data for MDASH events.
|
|
39657
|
+
*/
|
|
39658
|
+
@open
|
|
39659
|
+
@complex model mDASHAuditRecord extends auditData {
|
|
39660
|
+
}
|
|
39661
|
+
|
|
39662
|
+
/**
|
|
39663
|
+
* Audit data for MDATP events.
|
|
39664
|
+
*/
|
|
39665
|
+
@open
|
|
39666
|
+
@complex model mdatpAuditRecord extends auditData {
|
|
39667
|
+
}
|
|
39668
|
+
|
|
39669
|
+
/**
|
|
39670
|
+
* Audit data for MDC Events events.
|
|
39671
|
+
*/
|
|
39672
|
+
@open
|
|
39673
|
+
@complex model mdcEventsRecord extends auditData {
|
|
39674
|
+
}
|
|
39675
|
+
|
|
39676
|
+
/**
|
|
39677
|
+
* Audit data for MDI events.
|
|
39678
|
+
*/
|
|
39679
|
+
@open
|
|
39680
|
+
@complex model mdiAuditRecord extends auditData {
|
|
39681
|
+
}
|
|
39682
|
+
|
|
38221
39683
|
@complex model mergeResponse {
|
|
38222
39684
|
targetIncidentId: string;
|
|
38223
39685
|
}
|
|
38224
39686
|
|
|
39687
|
+
/**
|
|
39688
|
+
* Audit data for Mesh Worlds events.
|
|
39689
|
+
*/
|
|
39690
|
+
@open
|
|
39691
|
+
@complex model meshWorldsAuditRecord extends auditData {
|
|
39692
|
+
}
|
|
39693
|
+
|
|
39694
|
+
/**
|
|
39695
|
+
* Audit data for Microsoft365 Backup Backup Item events.
|
|
39696
|
+
*/
|
|
39697
|
+
@open
|
|
39698
|
+
@complex model microsoft365BackupBackupItemAuditRecord extends auditData {
|
|
39699
|
+
}
|
|
39700
|
+
|
|
39701
|
+
/**
|
|
39702
|
+
* Audit data for Microsoft365 Backup Backup Policy events.
|
|
39703
|
+
*/
|
|
39704
|
+
@open
|
|
39705
|
+
@complex model microsoft365BackupBackupPolicyAuditRecord extends auditData {
|
|
39706
|
+
}
|
|
39707
|
+
|
|
39708
|
+
/**
|
|
39709
|
+
* Audit data for Microsoft365 Backup Granular Browse Task events.
|
|
39710
|
+
*/
|
|
39711
|
+
@open
|
|
39712
|
+
@complex model microsoft365BackupGranularBrowseTaskAuditRecord extends auditData {
|
|
39713
|
+
}
|
|
39714
|
+
|
|
39715
|
+
/**
|
|
39716
|
+
* Audit data for Microsoft365 Backup Restore Item events.
|
|
39717
|
+
*/
|
|
39718
|
+
@open
|
|
39719
|
+
@complex model microsoft365BackupRestoreItemAuditRecord extends auditData {
|
|
39720
|
+
}
|
|
39721
|
+
|
|
39722
|
+
/**
|
|
39723
|
+
* Audit data for Microsoft365 Backup Restore Task events.
|
|
39724
|
+
*/
|
|
39725
|
+
@open
|
|
39726
|
+
@complex model microsoft365BackupRestoreTaskAuditRecord extends auditData {
|
|
39727
|
+
}
|
|
39728
|
+
|
|
39729
|
+
/**
|
|
39730
|
+
* Audit data for Microsoft365 Copilot Scheduled Prompt events.
|
|
39731
|
+
*/
|
|
39732
|
+
@open
|
|
39733
|
+
@complex model microsoft365CopilotScheduledPromptAuditRecord extends auditData {
|
|
39734
|
+
}
|
|
39735
|
+
|
|
39736
|
+
/**
|
|
39737
|
+
* Audit data for Microsoft Defender Experts XDR events.
|
|
39738
|
+
*/
|
|
39739
|
+
@open
|
|
39740
|
+
@complex model microsoftDefenderExpertsXDRAuditRecord extends auditData {
|
|
39741
|
+
}
|
|
39742
|
+
|
|
39743
|
+
/**
|
|
39744
|
+
* Audit data for Microsoft Flow events.
|
|
39745
|
+
*/
|
|
39746
|
+
@open
|
|
39747
|
+
@complex model microsoftFlowAuditRecord extends auditData {
|
|
39748
|
+
}
|
|
39749
|
+
|
|
39750
|
+
/**
|
|
39751
|
+
* Audit data for Microsoft Forms events.
|
|
39752
|
+
*/
|
|
39753
|
+
@open
|
|
39754
|
+
@complex model microsoftFormsAuditRecord extends auditData {
|
|
39755
|
+
}
|
|
39756
|
+
|
|
39757
|
+
/**
|
|
39758
|
+
* Audit data for Microsoft Graph Data Connect Consent events.
|
|
39759
|
+
*/
|
|
39760
|
+
@open
|
|
39761
|
+
@complex model microsoftGraphDataConnectConsent extends auditData {
|
|
39762
|
+
}
|
|
39763
|
+
|
|
39764
|
+
/**
|
|
39765
|
+
* Audit data for Microsoft Graph Data Connect Operation events.
|
|
39766
|
+
*/
|
|
39767
|
+
@open
|
|
39768
|
+
@complex model microsoftGraphDataConnectOperation extends auditData {
|
|
39769
|
+
}
|
|
39770
|
+
|
|
39771
|
+
/**
|
|
39772
|
+
* Audit data for Microsoft Purview Data Catalog Operation events.
|
|
39773
|
+
*/
|
|
39774
|
+
@open
|
|
39775
|
+
@complex model microsoftPurviewDataCatalogOperationRecord extends auditData {
|
|
39776
|
+
}
|
|
39777
|
+
|
|
39778
|
+
/**
|
|
39779
|
+
* Audit data for Microsoft Purview Data Map Operation events.
|
|
39780
|
+
*/
|
|
39781
|
+
@open
|
|
39782
|
+
@complex model microsoftPurviewDataMapOperationRecord extends auditData {
|
|
39783
|
+
}
|
|
39784
|
+
|
|
39785
|
+
/**
|
|
39786
|
+
* Audit data for Microsoft Purview Metadata Policy Operation events.
|
|
39787
|
+
*/
|
|
39788
|
+
@open
|
|
39789
|
+
@complex model microsoftPurviewMetadataPolicyOperationRecord extends auditData {
|
|
39790
|
+
}
|
|
39791
|
+
|
|
39792
|
+
/**
|
|
39793
|
+
* Audit data for Microsoft Purview Policy Operation events.
|
|
39794
|
+
*/
|
|
39795
|
+
@open
|
|
39796
|
+
@complex model microsoftPurviewPolicyOperationRecord extends auditData {
|
|
39797
|
+
}
|
|
39798
|
+
|
|
39799
|
+
/**
|
|
39800
|
+
* Audit data for Microsoft Purview Privacy Audit Event events.
|
|
39801
|
+
*/
|
|
39802
|
+
@open
|
|
39803
|
+
@complex model microsoftPurviewPrivacyAuditEvent extends auditData {
|
|
39804
|
+
}
|
|
39805
|
+
|
|
39806
|
+
/**
|
|
39807
|
+
* Audit data for Microsoft Purview Unified Catalog Operation events.
|
|
39808
|
+
*/
|
|
39809
|
+
@open
|
|
39810
|
+
@complex model microsoftPurviewUnifiedCatalogOperationRecord extends auditData {
|
|
39811
|
+
}
|
|
39812
|
+
|
|
39813
|
+
/**
|
|
39814
|
+
* Audit data for Microsoft Stream events.
|
|
39815
|
+
*/
|
|
39816
|
+
@open
|
|
39817
|
+
@complex model microsoftStreamAuditRecord extends auditData {
|
|
39818
|
+
}
|
|
39819
|
+
|
|
39820
|
+
/**
|
|
39821
|
+
* Audit data for Microsoft Teams Admin events.
|
|
39822
|
+
*/
|
|
39823
|
+
@open
|
|
39824
|
+
@complex model microsoftTeamsAdminAuditRecord extends auditData {
|
|
39825
|
+
}
|
|
39826
|
+
|
|
39827
|
+
/**
|
|
39828
|
+
* Audit data for Microsoft Teams Analytics events.
|
|
39829
|
+
*/
|
|
39830
|
+
@open
|
|
39831
|
+
@complex model microsoftTeamsAnalyticsAuditRecord extends auditData {
|
|
39832
|
+
}
|
|
39833
|
+
|
|
39834
|
+
/**
|
|
39835
|
+
* Audit data for Microsoft Teams events.
|
|
39836
|
+
*/
|
|
39837
|
+
@open
|
|
39838
|
+
@complex model microsoftTeamsAuditRecord extends auditData {
|
|
39839
|
+
}
|
|
39840
|
+
|
|
39841
|
+
/**
|
|
39842
|
+
* Audit data for Microsoft Teams Device events.
|
|
39843
|
+
*/
|
|
39844
|
+
@open
|
|
39845
|
+
@complex model microsoftTeamsDeviceAuditRecord extends auditData {
|
|
39846
|
+
}
|
|
39847
|
+
|
|
39848
|
+
/**
|
|
39849
|
+
* Audit data for Microsoft Teams Retention Label Action events.
|
|
39850
|
+
*/
|
|
39851
|
+
@open
|
|
39852
|
+
@complex model microsoftTeamsRetentionLabelActionAuditRecord extends auditData {
|
|
39853
|
+
}
|
|
39854
|
+
|
|
39855
|
+
/**
|
|
39856
|
+
* Audit data for Microsoft Teams Sensitivity Label Action events.
|
|
39857
|
+
*/
|
|
39858
|
+
@open
|
|
39859
|
+
@complex model microsoftTeamsSensitivityLabelActionAuditRecord extends auditData {
|
|
39860
|
+
}
|
|
39861
|
+
|
|
39862
|
+
/**
|
|
39863
|
+
* Audit data for Microsoft Teams Shifts events.
|
|
39864
|
+
*/
|
|
39865
|
+
@open
|
|
39866
|
+
@complex model microsoftTeamsShiftsAuditRecord extends auditData {
|
|
39867
|
+
}
|
|
39868
|
+
|
|
39869
|
+
/**
|
|
39870
|
+
* Audit data for Microsoft Teams User Concern events.
|
|
39871
|
+
*/
|
|
39872
|
+
@open
|
|
39873
|
+
@complex model microsoftTeamsUserConcernAuditRecord extends auditData {
|
|
39874
|
+
}
|
|
39875
|
+
|
|
39876
|
+
/**
|
|
39877
|
+
* Audit data for MIP Auto Label Exchange Item events.
|
|
39878
|
+
*/
|
|
39879
|
+
@open
|
|
39880
|
+
@complex model mipAutoLabelExchangeItemAuditRecord extends auditData {
|
|
39881
|
+
}
|
|
39882
|
+
|
|
39883
|
+
/**
|
|
39884
|
+
* Audit data for MIP Auto Label Progress Feedback events.
|
|
39885
|
+
*/
|
|
39886
|
+
@open
|
|
39887
|
+
@complex model mipAutoLabelProgressFeedbackAuditRecord extends auditData {
|
|
39888
|
+
}
|
|
39889
|
+
|
|
39890
|
+
/**
|
|
39891
|
+
* Audit data for MIP Auto Label SharePoint Item events.
|
|
39892
|
+
*/
|
|
39893
|
+
@open
|
|
39894
|
+
@complex model mipAutoLabelSharePointItemAuditRecord extends auditData {
|
|
39895
|
+
}
|
|
39896
|
+
|
|
39897
|
+
/**
|
|
39898
|
+
* Audit data for MIP Auto Label SharePoint Policy Location events.
|
|
39899
|
+
*/
|
|
39900
|
+
@open
|
|
39901
|
+
@complex model mipAutoLabelSharePointPolicyLocationAuditRecord extends auditData {
|
|
39902
|
+
}
|
|
39903
|
+
|
|
39904
|
+
/**
|
|
39905
|
+
* Audit data for MIP Auto Label Simulation SharePoint Completion events.
|
|
39906
|
+
*/
|
|
39907
|
+
@open
|
|
39908
|
+
@complex model mipAutoLabelSimulationSharePointCompletionRecord extends auditData {
|
|
39909
|
+
}
|
|
39910
|
+
|
|
39911
|
+
/**
|
|
39912
|
+
* Audit data for MIP Auto Label Simulation SharePoint Progress events.
|
|
39913
|
+
*/
|
|
39914
|
+
@open
|
|
39915
|
+
@complex model mipAutoLabelSimulationSharePointProgressRecord extends auditData {
|
|
39916
|
+
}
|
|
39917
|
+
|
|
39918
|
+
/**
|
|
39919
|
+
* Audit data for MIP Auto Label Simulation Statistics events.
|
|
39920
|
+
*/
|
|
39921
|
+
@open
|
|
39922
|
+
@complex model mipAutoLabelSimulationStatisticsRecord extends auditData {
|
|
39923
|
+
}
|
|
39924
|
+
|
|
39925
|
+
/**
|
|
39926
|
+
* Audit data for MIP Exact Data Match events.
|
|
39927
|
+
*/
|
|
39928
|
+
@open
|
|
39929
|
+
@complex model mipExactDataMatchAuditRecord extends auditData {
|
|
39930
|
+
}
|
|
39931
|
+
|
|
39932
|
+
/**
|
|
39933
|
+
* Audit data for MIP Label Analytics events.
|
|
39934
|
+
*/
|
|
39935
|
+
@open
|
|
39936
|
+
@complex model mipLabelAnalyticsAuditRecord extends auditData {
|
|
39937
|
+
}
|
|
39938
|
+
|
|
39939
|
+
/**
|
|
39940
|
+
* Audit data for MIP Label events.
|
|
39941
|
+
*/
|
|
39942
|
+
@open
|
|
39943
|
+
@complex model mipLabelAuditRecord extends auditData {
|
|
39944
|
+
}
|
|
39945
|
+
|
|
39946
|
+
/**
|
|
39947
|
+
* Audit data for MOS Agent Info events.
|
|
39948
|
+
*/
|
|
39949
|
+
@open
|
|
39950
|
+
@complex model mosAgentInfoRecord extends auditData {
|
|
39951
|
+
}
|
|
39952
|
+
|
|
39953
|
+
/**
|
|
39954
|
+
* Audit data for MOS Agent Info V2 events.
|
|
39955
|
+
*/
|
|
39956
|
+
@open
|
|
39957
|
+
@complex model mosAgentInfoRecordV2 extends auditData {
|
|
39958
|
+
}
|
|
39959
|
+
|
|
39960
|
+
/**
|
|
39961
|
+
* Audit data for MS365D Custom Detection events.
|
|
39962
|
+
*/
|
|
39963
|
+
@open
|
|
39964
|
+
@complex model ms365dCustomDetectionAuditRecord extends auditData {
|
|
39965
|
+
}
|
|
39966
|
+
|
|
39967
|
+
/**
|
|
39968
|
+
* Audit data for MS365D Incident events.
|
|
39969
|
+
*/
|
|
39970
|
+
@open
|
|
39971
|
+
@complex model ms365dIncidentAuditRecord extends auditData {
|
|
39972
|
+
}
|
|
39973
|
+
|
|
39974
|
+
/**
|
|
39975
|
+
* Audit data for MS365D Suppression Rule events.
|
|
39976
|
+
*/
|
|
39977
|
+
@open
|
|
39978
|
+
@complex model ms365dSuppressionRuleAuditRecord extends auditData {
|
|
39979
|
+
}
|
|
39980
|
+
|
|
39981
|
+
/**
|
|
39982
|
+
* Audit data for MSDE Custom Collection events.
|
|
39983
|
+
*/
|
|
39984
|
+
@open
|
|
39985
|
+
@complex model msdeCustomCollectionAuditRecord extends auditData {
|
|
39986
|
+
}
|
|
39987
|
+
|
|
39988
|
+
/**
|
|
39989
|
+
* Audit data for MSDE General Settings events.
|
|
39990
|
+
*/
|
|
39991
|
+
@open
|
|
39992
|
+
@complex model msdeGeneralSettingsAuditRecord extends auditData {
|
|
39993
|
+
}
|
|
39994
|
+
|
|
39995
|
+
/**
|
|
39996
|
+
* Audit data for MSDE Indicators Settings events.
|
|
39997
|
+
*/
|
|
39998
|
+
@open
|
|
39999
|
+
@complex model msdeIndicatorsSettingsAuditRecord extends auditData {
|
|
40000
|
+
}
|
|
40001
|
+
|
|
40002
|
+
/**
|
|
40003
|
+
* Audit data for MSDE Response Actions events.
|
|
40004
|
+
*/
|
|
40005
|
+
@open
|
|
40006
|
+
@complex model msdeResponseActionsAuditRecord extends auditData {
|
|
40007
|
+
}
|
|
40008
|
+
|
|
40009
|
+
/**
|
|
40010
|
+
* Audit data for MSDE Roles Settings events.
|
|
40011
|
+
*/
|
|
40012
|
+
@open
|
|
40013
|
+
@complex model msdeRolesSettingsAuditRecord extends auditData {
|
|
40014
|
+
}
|
|
40015
|
+
|
|
40016
|
+
/**
|
|
40017
|
+
* Audit data for MSP Vector Search Content Metadata events.
|
|
40018
|
+
*/
|
|
40019
|
+
@open
|
|
40020
|
+
@complex model mspVectorSearchContentMetadataAuditRecord extends auditData {
|
|
40021
|
+
}
|
|
40022
|
+
|
|
40023
|
+
/**
|
|
40024
|
+
* Audit data for MSTIC Nation State Notification events.
|
|
40025
|
+
*/
|
|
40026
|
+
@open
|
|
40027
|
+
@complex model msticNationStateNotificationRecord extends auditData {
|
|
40028
|
+
}
|
|
40029
|
+
|
|
40030
|
+
/**
|
|
40031
|
+
* Audit data for Multi Stage Disposition events.
|
|
40032
|
+
*/
|
|
40033
|
+
@open
|
|
40034
|
+
@complex model multiStageDispositionAuditRecord extends auditData {
|
|
40035
|
+
}
|
|
40036
|
+
|
|
40037
|
+
/**
|
|
40038
|
+
* Audit data for My Analytics Settings events.
|
|
40039
|
+
*/
|
|
40040
|
+
@open
|
|
40041
|
+
@complex model myAnalyticsSettingsAuditRecord extends auditData {
|
|
40042
|
+
}
|
|
40043
|
+
|
|
38225
40044
|
@complex model networkConnectionEvidence extends alertEvidence {
|
|
38226
40045
|
destinationAddress: ipEvidence | null;
|
|
38227
40046
|
destinationPort: int32 | null;
|
|
@@ -38236,6 +40055,13 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38236
40055
|
vlans: string[] | null;
|
|
38237
40056
|
}
|
|
38238
40057
|
|
|
40058
|
+
/**
|
|
40059
|
+
* Audit data for Noisy Alert Policy events.
|
|
40060
|
+
*/
|
|
40061
|
+
@open
|
|
40062
|
+
@complex model noisyAlertPolicyAuditRecord extends auditData {
|
|
40063
|
+
}
|
|
40064
|
+
|
|
38239
40065
|
@complex model oauthApplicationEvidence extends alertEvidence {
|
|
38240
40066
|
appId: string | null;
|
|
38241
40067
|
displayName: string | null;
|
|
@@ -38249,90 +40075,720 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38249
40075
|
timeout: duration | null;
|
|
38250
40076
|
}
|
|
38251
40077
|
|
|
38252
|
-
|
|
38253
|
-
|
|
38254
|
-
|
|
38255
|
-
|
|
38256
|
-
|
|
38257
|
-
parentProcessId: int64 | null;
|
|
38258
|
-
parentProcessImageFile: fileDetails | null;
|
|
38259
|
-
processCommandLine: string | null;
|
|
38260
|
-
processCreationDateTime: offsetDateTime | null;
|
|
38261
|
-
processId: int64 | null;
|
|
38262
|
-
userAccount: userAccount | null;
|
|
40078
|
+
/**
|
|
40079
|
+
* Audit data for Office Native events.
|
|
40080
|
+
*/
|
|
40081
|
+
@open
|
|
40082
|
+
@complex model officeNativeAuditRecord extends auditData {
|
|
38263
40083
|
}
|
|
38264
40084
|
|
|
38265
|
-
|
|
38266
|
-
|
|
38267
|
-
|
|
38268
|
-
|
|
38269
|
-
|
|
40085
|
+
/**
|
|
40086
|
+
* Audit data for OME Portal events.
|
|
40087
|
+
*/
|
|
40088
|
+
@open
|
|
40089
|
+
@complex model omePortalAuditRecord extends auditData {
|
|
38270
40090
|
}
|
|
38271
40091
|
|
|
38272
|
-
|
|
38273
|
-
|
|
38274
|
-
|
|
40092
|
+
/**
|
|
40093
|
+
* Audit data for On Demand SharePoint Classification events.
|
|
40094
|
+
*/
|
|
40095
|
+
@open
|
|
40096
|
+
@complex model onDemandSharePointClassificationAuditRecord extends auditData {
|
|
38275
40097
|
}
|
|
38276
40098
|
|
|
38277
|
-
|
|
38278
|
-
|
|
38279
|
-
|
|
38280
|
-
|
|
38281
|
-
|
|
38282
|
-
registryValueName: string | null;
|
|
38283
|
-
registryValueType: string | null;
|
|
40099
|
+
/**
|
|
40100
|
+
* Audit data for OneDrive events.
|
|
40101
|
+
*/
|
|
40102
|
+
@open
|
|
40103
|
+
@complex model oneDriveAuditRecord extends auditData {
|
|
38284
40104
|
}
|
|
38285
40105
|
|
|
38286
|
-
|
|
38287
|
-
|
|
38288
|
-
|
|
38289
|
-
|
|
40106
|
+
/**
|
|
40107
|
+
* Audit data for On Premises File Share Scanner DLP events.
|
|
40108
|
+
*/
|
|
40109
|
+
@open
|
|
40110
|
+
@complex model onPremisesFileShareScannerDLPAuditRecord extends auditData {
|
|
38290
40111
|
}
|
|
38291
40112
|
|
|
38292
|
-
|
|
38293
|
-
|
|
38294
|
-
|
|
38295
|
-
|
|
38296
|
-
|
|
40113
|
+
/**
|
|
40114
|
+
* Audit data for On Premises SharePoint Scanner DLP events.
|
|
40115
|
+
*/
|
|
40116
|
+
@open
|
|
40117
|
+
@complex model onPremisesSharePointScannerDLPAuditRecord extends auditData {
|
|
38297
40118
|
}
|
|
38298
40119
|
|
|
38299
|
-
|
|
38300
|
-
|
|
40120
|
+
/**
|
|
40121
|
+
* Audit data for Organizational Data In M365 events.
|
|
40122
|
+
*/
|
|
40123
|
+
@open
|
|
40124
|
+
@complex model organizationalDataInM365AuditRecord extends auditData {
|
|
38301
40125
|
}
|
|
38302
40126
|
|
|
38303
|
-
|
|
40127
|
+
/**
|
|
40128
|
+
* Audit data for Outlook Copilot Automation events.
|
|
40129
|
+
*/
|
|
40130
|
+
@open
|
|
40131
|
+
@complex model outlookCopilotAutomationAuditRecord extends auditData {
|
|
38304
40132
|
}
|
|
38305
40133
|
|
|
38306
|
-
|
|
38307
|
-
|
|
40134
|
+
/**
|
|
40135
|
+
* Audit data for OWA Get Access Token For Resource events.
|
|
40136
|
+
*/
|
|
40137
|
+
@open
|
|
40138
|
+
@complex model owaGetAccessTokenForResourceAuditRecord extends auditData {
|
|
38308
40139
|
}
|
|
38309
40140
|
|
|
38310
|
-
|
|
38311
|
-
|
|
38312
|
-
|
|
40141
|
+
/**
|
|
40142
|
+
* Audit data for P4AI Assessment Category events.
|
|
40143
|
+
*/
|
|
40144
|
+
@open
|
|
40145
|
+
@complex model p4aiAssessmentCategoryRecord extends auditData {
|
|
38313
40146
|
}
|
|
38314
40147
|
|
|
38315
|
-
|
|
38316
|
-
|
|
38317
|
-
|
|
38318
|
-
|
|
38319
|
-
|
|
38320
|
-
permissions: string[] | null;
|
|
38321
|
-
protocol: string | null;
|
|
38322
|
-
signatureHash: string | null;
|
|
38323
|
-
signedWith: string | null;
|
|
38324
|
-
startDateTime: offsetDateTime | null;
|
|
38325
|
-
storageResource: azureResourceEvidence | null;
|
|
40148
|
+
/**
|
|
40149
|
+
* Audit data for P4AI Assessment Fabric Scanner events.
|
|
40150
|
+
*/
|
|
40151
|
+
@open
|
|
40152
|
+
@complex model p4aiAssessmentFabricScannerRecord extends auditData {
|
|
38326
40153
|
}
|
|
38327
40154
|
|
|
38328
|
-
|
|
38329
|
-
|
|
38330
|
-
|
|
38331
|
-
|
|
38332
|
-
|
|
38333
|
-
|
|
38334
|
-
|
|
38335
|
-
|
|
40155
|
+
/**
|
|
40156
|
+
* Audit data for P4AI Assessment Location Result events.
|
|
40157
|
+
*/
|
|
40158
|
+
@open
|
|
40159
|
+
@complex model p4aiAssessmentLocationResultRecord extends auditData {
|
|
40160
|
+
}
|
|
40161
|
+
|
|
40162
|
+
/**
|
|
40163
|
+
* Audit data for P4AI Assessment events.
|
|
40164
|
+
*/
|
|
40165
|
+
@open
|
|
40166
|
+
@complex model p4aiAssessmentRecord extends auditData {
|
|
40167
|
+
}
|
|
40168
|
+
|
|
40169
|
+
/**
|
|
40170
|
+
* Audit data for P4 AI Risk Score events.
|
|
40171
|
+
*/
|
|
40172
|
+
@open
|
|
40173
|
+
@complex model p4AIRiskScoreRecord extends auditData {
|
|
40174
|
+
}
|
|
40175
|
+
|
|
40176
|
+
/**
|
|
40177
|
+
* Audit data for People Admin Settings events.
|
|
40178
|
+
*/
|
|
40179
|
+
@open
|
|
40180
|
+
@complex model peopleAdminSettingsAuditRecord extends auditData {
|
|
40181
|
+
}
|
|
40182
|
+
|
|
40183
|
+
/**
|
|
40184
|
+
* Audit data for Physical Badging Signal events.
|
|
40185
|
+
*/
|
|
40186
|
+
@open
|
|
40187
|
+
@complex model physicalBadgingSignalAuditRecord extends auditData {
|
|
40188
|
+
}
|
|
40189
|
+
|
|
40190
|
+
/**
|
|
40191
|
+
* Audit data for Places Directory events.
|
|
40192
|
+
*/
|
|
40193
|
+
@open
|
|
40194
|
+
@complex model placesDirectoryAuditRecord extends auditData {
|
|
40195
|
+
}
|
|
40196
|
+
|
|
40197
|
+
/**
|
|
40198
|
+
* Audit data for Planner Chat Message events.
|
|
40199
|
+
*/
|
|
40200
|
+
@open
|
|
40201
|
+
@complex model plannerChatMessageAuditRecord extends auditData {
|
|
40202
|
+
}
|
|
40203
|
+
|
|
40204
|
+
/**
|
|
40205
|
+
* Audit data for Planner Chat Message List events.
|
|
40206
|
+
*/
|
|
40207
|
+
@open
|
|
40208
|
+
@complex model plannerChatMessageListAuditRecord extends auditData {
|
|
40209
|
+
}
|
|
40210
|
+
|
|
40211
|
+
/**
|
|
40212
|
+
* Audit data for Planner Copy Plan events.
|
|
40213
|
+
*/
|
|
40214
|
+
@open
|
|
40215
|
+
@complex model plannerCopyPlanAuditRecord extends auditData {
|
|
40216
|
+
}
|
|
40217
|
+
|
|
40218
|
+
/**
|
|
40219
|
+
* Audit data for Planner Goal events.
|
|
40220
|
+
*/
|
|
40221
|
+
@open
|
|
40222
|
+
@complex model plannerGoalAuditRecord extends auditData {
|
|
40223
|
+
}
|
|
40224
|
+
|
|
40225
|
+
/**
|
|
40226
|
+
* Audit data for Planner Goal List events.
|
|
40227
|
+
*/
|
|
40228
|
+
@open
|
|
40229
|
+
@complex model plannerGoalListAuditRecord extends auditData {
|
|
40230
|
+
}
|
|
40231
|
+
|
|
40232
|
+
/**
|
|
40233
|
+
* Audit data for Planner Plan events.
|
|
40234
|
+
*/
|
|
40235
|
+
@open
|
|
40236
|
+
@complex model plannerPlanAuditRecord extends auditData {
|
|
40237
|
+
}
|
|
40238
|
+
|
|
40239
|
+
/**
|
|
40240
|
+
* Audit data for Planner Plan List events.
|
|
40241
|
+
*/
|
|
40242
|
+
@open
|
|
40243
|
+
@complex model plannerPlanListAuditRecord extends auditData {
|
|
40244
|
+
}
|
|
40245
|
+
|
|
40246
|
+
/**
|
|
40247
|
+
* Audit data for Planner Plan Sensitivity Label events.
|
|
40248
|
+
*/
|
|
40249
|
+
@open
|
|
40250
|
+
@complex model plannerPlanSensitivityLabelAuditRecord extends auditData {
|
|
40251
|
+
}
|
|
40252
|
+
|
|
40253
|
+
/**
|
|
40254
|
+
* Audit data for Planner Roster events.
|
|
40255
|
+
*/
|
|
40256
|
+
@open
|
|
40257
|
+
@complex model plannerRosterAuditRecord extends auditData {
|
|
40258
|
+
}
|
|
40259
|
+
|
|
40260
|
+
/**
|
|
40261
|
+
* Audit data for Planner Roster Sensitivity Label events.
|
|
40262
|
+
*/
|
|
40263
|
+
@open
|
|
40264
|
+
@complex model plannerRosterSensitivityLabelAuditRecord extends auditData {
|
|
40265
|
+
}
|
|
40266
|
+
|
|
40267
|
+
/**
|
|
40268
|
+
* Audit data for Planner Task events.
|
|
40269
|
+
*/
|
|
40270
|
+
@open
|
|
40271
|
+
@complex model plannerTaskAuditRecord extends auditData {
|
|
40272
|
+
}
|
|
40273
|
+
|
|
40274
|
+
/**
|
|
40275
|
+
* Audit data for Planner Task List events.
|
|
40276
|
+
*/
|
|
40277
|
+
@open
|
|
40278
|
+
@complex model plannerTaskListAuditRecord extends auditData {
|
|
40279
|
+
}
|
|
40280
|
+
|
|
40281
|
+
/**
|
|
40282
|
+
* Audit data for Planner Tenant Settings events.
|
|
40283
|
+
*/
|
|
40284
|
+
@open
|
|
40285
|
+
@complex model plannerTenantSettingsAuditRecord extends auditData {
|
|
40286
|
+
}
|
|
40287
|
+
|
|
40288
|
+
/**
|
|
40289
|
+
* Audit data for Policy Config Change events.
|
|
40290
|
+
*/
|
|
40291
|
+
@open
|
|
40292
|
+
@complex model policyConfigChangeAuditRecord extends auditData {
|
|
40293
|
+
}
|
|
40294
|
+
|
|
40295
|
+
/**
|
|
40296
|
+
* Audit data for PowerApps Audit App events.
|
|
40297
|
+
*/
|
|
40298
|
+
@open
|
|
40299
|
+
@complex model powerAppsAuditAppRecord extends auditData {
|
|
40300
|
+
}
|
|
40301
|
+
|
|
40302
|
+
/**
|
|
40303
|
+
* Audit data for PowerApps Audit Plan events.
|
|
40304
|
+
*/
|
|
40305
|
+
@open
|
|
40306
|
+
@complex model powerAppsAuditPlanRecord extends auditData {
|
|
40307
|
+
}
|
|
40308
|
+
|
|
40309
|
+
/**
|
|
40310
|
+
* Audit data for PowerApps Audit Resource events.
|
|
40311
|
+
*/
|
|
40312
|
+
@open
|
|
40313
|
+
@complex model powerAppsAuditResourceRecord extends auditData {
|
|
40314
|
+
}
|
|
40315
|
+
|
|
40316
|
+
/**
|
|
40317
|
+
* Audit data for Power BI events.
|
|
40318
|
+
*/
|
|
40319
|
+
@open
|
|
40320
|
+
@complex model powerBIAuditRecord extends auditData {
|
|
40321
|
+
}
|
|
40322
|
+
|
|
40323
|
+
/**
|
|
40324
|
+
* Audit data for Power BI DLP events.
|
|
40325
|
+
*/
|
|
40326
|
+
@open
|
|
40327
|
+
@complex model powerBIDlpAuditRecord extends auditData {
|
|
40328
|
+
}
|
|
40329
|
+
|
|
40330
|
+
/**
|
|
40331
|
+
* Audit data for Power Pages Site events.
|
|
40332
|
+
*/
|
|
40333
|
+
@open
|
|
40334
|
+
@complex model powerPagesSiteAuditRecord extends auditData {
|
|
40335
|
+
}
|
|
40336
|
+
|
|
40337
|
+
/**
|
|
40338
|
+
* Audit data for Power Platform Admin DLP events.
|
|
40339
|
+
*/
|
|
40340
|
+
@open
|
|
40341
|
+
@complex model powerPlatformAdminDlpAuditRecord extends auditData {
|
|
40342
|
+
}
|
|
40343
|
+
|
|
40344
|
+
/**
|
|
40345
|
+
* Audit data for Power Platform Admin Environment events.
|
|
40346
|
+
*/
|
|
40347
|
+
@open
|
|
40348
|
+
@complex model powerPlatformAdminEnvironmentAuditRecord extends auditData {
|
|
40349
|
+
}
|
|
40350
|
+
|
|
40351
|
+
/**
|
|
40352
|
+
* Audit data for Power Platform Administrator Activity events.
|
|
40353
|
+
*/
|
|
40354
|
+
@open
|
|
40355
|
+
@complex model powerPlatformAdministratorActivityRecord extends auditData {
|
|
40356
|
+
}
|
|
40357
|
+
|
|
40358
|
+
/**
|
|
40359
|
+
* Audit data for Power Platform Lockbox Resource Access Request events.
|
|
40360
|
+
*/
|
|
40361
|
+
@open
|
|
40362
|
+
@complex model powerPlatformLockboxResourceAccessRequestAuditRecord extends auditData {
|
|
40363
|
+
}
|
|
40364
|
+
|
|
40365
|
+
/**
|
|
40366
|
+
* Audit data for Power Platform Lockbox Resource Command events.
|
|
40367
|
+
*/
|
|
40368
|
+
@open
|
|
40369
|
+
@complex model powerPlatformLockboxResourceCommandAuditRecord extends auditData {
|
|
40370
|
+
}
|
|
40371
|
+
|
|
40372
|
+
/**
|
|
40373
|
+
* Audit data for Power Platform Service Activity events.
|
|
40374
|
+
*/
|
|
40375
|
+
@open
|
|
40376
|
+
@complex model powerPlatformServiceActivityAuditRecord extends auditData {
|
|
40377
|
+
}
|
|
40378
|
+
|
|
40379
|
+
/**
|
|
40380
|
+
* Audit data for Power Platform Tenant Isolation events.
|
|
40381
|
+
*/
|
|
40382
|
+
@open
|
|
40383
|
+
@complex model powerPlatformTenantIsolationRecord extends auditData {
|
|
40384
|
+
}
|
|
40385
|
+
|
|
40386
|
+
/**
|
|
40387
|
+
* Audit data for Privacy Data Match events.
|
|
40388
|
+
*/
|
|
40389
|
+
@open
|
|
40390
|
+
@complex model privacyDataMatchAuditRecord extends auditData {
|
|
40391
|
+
}
|
|
40392
|
+
|
|
40393
|
+
/**
|
|
40394
|
+
* Audit data for Privacy Data Minimization events.
|
|
40395
|
+
*/
|
|
40396
|
+
@open
|
|
40397
|
+
@complex model privacyDataMinimizationRecord extends auditData {
|
|
40398
|
+
}
|
|
40399
|
+
|
|
40400
|
+
/**
|
|
40401
|
+
* Audit data for Privacy Digest Email events.
|
|
40402
|
+
*/
|
|
40403
|
+
@open
|
|
40404
|
+
@complex model privacyDigestEmailRecord extends auditData {
|
|
40405
|
+
}
|
|
40406
|
+
|
|
40407
|
+
/**
|
|
40408
|
+
* Audit data for Privacy Open Access events.
|
|
40409
|
+
*/
|
|
40410
|
+
@open
|
|
40411
|
+
@complex model privacyOpenAccessAuditRecord extends auditData {
|
|
40412
|
+
}
|
|
40413
|
+
|
|
40414
|
+
/**
|
|
40415
|
+
* Audit data for Privacy Portal events.
|
|
40416
|
+
*/
|
|
40417
|
+
@open
|
|
40418
|
+
@complex model privacyPortalAuditRecord extends auditData {
|
|
40419
|
+
}
|
|
40420
|
+
|
|
40421
|
+
/**
|
|
40422
|
+
* Audit data for Privacy Remediation Action events.
|
|
40423
|
+
*/
|
|
40424
|
+
@open
|
|
40425
|
+
@complex model privacyRemediationActionRecord extends auditData {
|
|
40426
|
+
}
|
|
40427
|
+
|
|
40428
|
+
/**
|
|
40429
|
+
* Audit data for Privacy Remediation events.
|
|
40430
|
+
*/
|
|
40431
|
+
@open
|
|
40432
|
+
@complex model privacyRemediationRecord extends auditData {
|
|
40433
|
+
}
|
|
40434
|
+
|
|
40435
|
+
/**
|
|
40436
|
+
* Audit data for Priva Privacy Assessment Operation events.
|
|
40437
|
+
*/
|
|
40438
|
+
@open
|
|
40439
|
+
@complex model privaPrivacyAssessmentOperationRecord extends auditData {
|
|
40440
|
+
}
|
|
40441
|
+
|
|
40442
|
+
/**
|
|
40443
|
+
* Audit data for Priva Privacy Consent Operation events.
|
|
40444
|
+
*/
|
|
40445
|
+
@open
|
|
40446
|
+
@complex model privaPrivacyConsentOperationRecord extends auditData {
|
|
40447
|
+
}
|
|
40448
|
+
|
|
40449
|
+
@complex model processEvidence extends alertEvidence {
|
|
40450
|
+
detectionStatus: detectionStatus | null;
|
|
40451
|
+
imageFile: fileDetails | null;
|
|
40452
|
+
mdeDeviceId: string | null;
|
|
40453
|
+
parentProcessCreationDateTime: offsetDateTime | null;
|
|
40454
|
+
parentProcessId: int64 | null;
|
|
40455
|
+
parentProcessImageFile: fileDetails | null;
|
|
40456
|
+
processCommandLine: string | null;
|
|
40457
|
+
processCreationDateTime: offsetDateTime | null;
|
|
40458
|
+
processId: int64 | null;
|
|
40459
|
+
userAccount: userAccount | null;
|
|
40460
|
+
}
|
|
40461
|
+
|
|
40462
|
+
/**
|
|
40463
|
+
* Audit data for Microsoft Project events.
|
|
40464
|
+
*/
|
|
40465
|
+
@open
|
|
40466
|
+
@complex model projectAuditRecord extends auditData {
|
|
40467
|
+
}
|
|
40468
|
+
|
|
40469
|
+
/**
|
|
40470
|
+
* Audit data for Project for the Web Assigned To Me Settings events.
|
|
40471
|
+
*/
|
|
40472
|
+
@open
|
|
40473
|
+
@complex model projectForTheWebAssignedToMeSettingsAuditRecord extends auditData {
|
|
40474
|
+
}
|
|
40475
|
+
|
|
40476
|
+
/**
|
|
40477
|
+
* Audit data for Project for the Web Project events.
|
|
40478
|
+
*/
|
|
40479
|
+
@open
|
|
40480
|
+
@complex model projectForTheWebProjectAuditRecord extends auditData {
|
|
40481
|
+
}
|
|
40482
|
+
|
|
40483
|
+
/**
|
|
40484
|
+
* Audit data for Project for the Web Project Settings events.
|
|
40485
|
+
*/
|
|
40486
|
+
@open
|
|
40487
|
+
@complex model projectForTheWebProjectSettingsAuditRecord extends auditData {
|
|
40488
|
+
}
|
|
40489
|
+
|
|
40490
|
+
/**
|
|
40491
|
+
* Audit data for Project for the Web Roadmap events.
|
|
40492
|
+
*/
|
|
40493
|
+
@open
|
|
40494
|
+
@complex model projectForTheWebRoadmapAuditRecord extends auditData {
|
|
40495
|
+
}
|
|
40496
|
+
|
|
40497
|
+
/**
|
|
40498
|
+
* Audit data for Project for the Web Roadmap Item events.
|
|
40499
|
+
*/
|
|
40500
|
+
@open
|
|
40501
|
+
@complex model projectForTheWebRoadmapItemAuditRecord extends auditData {
|
|
40502
|
+
}
|
|
40503
|
+
|
|
40504
|
+
/**
|
|
40505
|
+
* Audit data for Project for the Web Roadmap Settings events.
|
|
40506
|
+
*/
|
|
40507
|
+
@open
|
|
40508
|
+
@complex model projectForTheWebRoadmapSettingsAuditRecord extends auditData {
|
|
40509
|
+
}
|
|
40510
|
+
|
|
40511
|
+
/**
|
|
40512
|
+
* Audit data for Project for the Web Task events.
|
|
40513
|
+
*/
|
|
40514
|
+
@open
|
|
40515
|
+
@complex model projectForTheWebTaskAuditRecord extends auditData {
|
|
40516
|
+
}
|
|
40517
|
+
|
|
40518
|
+
/**
|
|
40519
|
+
* Audit data for Exchange public folder events.
|
|
40520
|
+
*/
|
|
40521
|
+
@open
|
|
40522
|
+
@complex model publicFolderAuditRecord extends auditData {
|
|
40523
|
+
}
|
|
40524
|
+
|
|
40525
|
+
/**
|
|
40526
|
+
* Audit data for Purview Insider Risk Alerts events.
|
|
40527
|
+
*/
|
|
40528
|
+
@open
|
|
40529
|
+
@complex model purviewInsiderRiskAlertsRecord extends auditData {
|
|
40530
|
+
}
|
|
40531
|
+
|
|
40532
|
+
/**
|
|
40533
|
+
* Audit data for Purview Insider Risk Cases events.
|
|
40534
|
+
*/
|
|
40535
|
+
@open
|
|
40536
|
+
@complex model purviewInsiderRiskCasesRecord extends auditData {
|
|
40537
|
+
}
|
|
40538
|
+
|
|
40539
|
+
/**
|
|
40540
|
+
* Audit data for Purview MC Recommendation events.
|
|
40541
|
+
*/
|
|
40542
|
+
@open
|
|
40543
|
+
@complex model purviewMCRecommendationRecord extends auditData {
|
|
40544
|
+
}
|
|
40545
|
+
|
|
40546
|
+
/**
|
|
40547
|
+
* Audit data for Purview Posture Agent events.
|
|
40548
|
+
*/
|
|
40549
|
+
@open
|
|
40550
|
+
@complex model purviewPostureAgentAuditRecord extends auditData {
|
|
40551
|
+
}
|
|
40552
|
+
|
|
40553
|
+
/**
|
|
40554
|
+
* Audit data for quarantine events.
|
|
40555
|
+
*/
|
|
40556
|
+
@open
|
|
40557
|
+
@complex model quarantineAuditRecord extends auditData {
|
|
40558
|
+
}
|
|
40559
|
+
|
|
40560
|
+
/**
|
|
40561
|
+
* Audit data for Records Management events.
|
|
40562
|
+
*/
|
|
40563
|
+
@open
|
|
40564
|
+
@complex model recordsManagementAuditRecord extends auditData {
|
|
40565
|
+
}
|
|
40566
|
+
|
|
40567
|
+
@complex model redundancyDetectionSettings {
|
|
40568
|
+
isEnabled: boolean | null;
|
|
40569
|
+
maxWords: int32 | null;
|
|
40570
|
+
minWords: int32 | null;
|
|
40571
|
+
similarityThreshold: int32 | null;
|
|
40572
|
+
}
|
|
40573
|
+
|
|
40574
|
+
@complex model registryKeyEvidence extends alertEvidence {
|
|
40575
|
+
registryHive: string | null;
|
|
40576
|
+
registryKey: string | null;
|
|
40577
|
+
}
|
|
40578
|
+
|
|
40579
|
+
@complex model registryValueEvidence extends alertEvidence {
|
|
40580
|
+
mdeDeviceId: string | null;
|
|
40581
|
+
registryHive: string | null;
|
|
40582
|
+
registryKey: string | null;
|
|
40583
|
+
registryValue: string | null;
|
|
40584
|
+
registryValueName: string | null;
|
|
40585
|
+
registryValueType: string | null;
|
|
40586
|
+
}
|
|
40587
|
+
|
|
40588
|
+
@complex model reportFileMetadata {
|
|
40589
|
+
downloadUrl: string | null;
|
|
40590
|
+
fileName: string | null;
|
|
40591
|
+
size: int64 | null;
|
|
40592
|
+
}
|
|
40593
|
+
|
|
40594
|
+
/**
|
|
40595
|
+
* Audit data for Report Submission events.
|
|
40596
|
+
*/
|
|
40597
|
+
@open
|
|
40598
|
+
@complex model reportSubmission extends auditData {
|
|
40599
|
+
}
|
|
40600
|
+
|
|
40601
|
+
/**
|
|
40602
|
+
* Audit data for Report Submission Result Detail events.
|
|
40603
|
+
*/
|
|
40604
|
+
@open
|
|
40605
|
+
@complex model reportSubmissionResultDetail extends auditData {
|
|
40606
|
+
}
|
|
40607
|
+
|
|
40608
|
+
@complex model resourceAccessEvent {
|
|
40609
|
+
accessDateTime: offsetDateTime | null;
|
|
40610
|
+
accountId: string | null;
|
|
40611
|
+
ipAddress: string | null;
|
|
40612
|
+
resourceIdentifier: string | null;
|
|
40613
|
+
}
|
|
40614
|
+
|
|
40615
|
+
/**
|
|
40616
|
+
* Audit data for Restricted Mode events.
|
|
40617
|
+
*/
|
|
40618
|
+
@open
|
|
40619
|
+
@complex model restrictedModeAuditRecord extends auditData {
|
|
40620
|
+
}
|
|
40621
|
+
|
|
40622
|
+
@abstract
|
|
40623
|
+
@complex model retentionDuration {
|
|
40624
|
+
}
|
|
40625
|
+
|
|
40626
|
+
@complex model retentionDurationForever extends retentionDuration {
|
|
40627
|
+
}
|
|
40628
|
+
|
|
40629
|
+
@complex model retentionDurationInDays extends retentionDuration {
|
|
40630
|
+
days: int32 | null;
|
|
40631
|
+
}
|
|
40632
|
+
|
|
40633
|
+
@complex model retentionEventStatus {
|
|
40634
|
+
error: reference.`microsoft.graph`.publicError | null;
|
|
40635
|
+
status: eventStatusType | null;
|
|
40636
|
+
}
|
|
40637
|
+
|
|
40638
|
+
/**
|
|
40639
|
+
* Audit data for Retention Policy events.
|
|
40640
|
+
*/
|
|
40641
|
+
@open
|
|
40642
|
+
@complex model retentionPolicyAuditRecord extends auditData {
|
|
40643
|
+
}
|
|
40644
|
+
|
|
40645
|
+
/**
|
|
40646
|
+
* Audit data for RTI Operations Agent events.
|
|
40647
|
+
*/
|
|
40648
|
+
@open
|
|
40649
|
+
@complex model rtiOperationsAgentAuditRecord extends auditData {
|
|
40650
|
+
}
|
|
40651
|
+
|
|
40652
|
+
@complex model sasTokenEvidence extends alertEvidence {
|
|
40653
|
+
allowedIpAddresses: string | null;
|
|
40654
|
+
allowedResourceTypes: string[] | null;
|
|
40655
|
+
allowedServices: string[] | null;
|
|
40656
|
+
expiryDateTime: offsetDateTime | null;
|
|
40657
|
+
permissions: string[] | null;
|
|
40658
|
+
protocol: string | null;
|
|
40659
|
+
signatureHash: string | null;
|
|
40660
|
+
signedWith: string | null;
|
|
40661
|
+
startDateTime: offsetDateTime | null;
|
|
40662
|
+
storageResource: azureResourceEvidence | null;
|
|
40663
|
+
}
|
|
40664
|
+
|
|
40665
|
+
/**
|
|
40666
|
+
* Audit data for SBP Configuration Event events.
|
|
40667
|
+
*/
|
|
40668
|
+
@open
|
|
40669
|
+
@complex model sbpConfigurationEventRecord extends auditData {
|
|
40670
|
+
}
|
|
40671
|
+
|
|
40672
|
+
/**
|
|
40673
|
+
* Audit data for SBP Usage Event events.
|
|
40674
|
+
*/
|
|
40675
|
+
@open
|
|
40676
|
+
@complex model sbpUsageEventRecord extends auditData {
|
|
40677
|
+
}
|
|
40678
|
+
|
|
40679
|
+
/**
|
|
40680
|
+
* Audit data for Secure Score evidence events.
|
|
40681
|
+
*/
|
|
40682
|
+
@open
|
|
40683
|
+
@complex model scoreEvidence extends auditData {
|
|
40684
|
+
}
|
|
40685
|
+
|
|
40686
|
+
/**
|
|
40687
|
+
* Audit data for Score Platform Generic events.
|
|
40688
|
+
*/
|
|
40689
|
+
@open
|
|
40690
|
+
@complex model scorePlatformGenericAuditRecord extends auditData {
|
|
40691
|
+
}
|
|
40692
|
+
|
|
40693
|
+
/**
|
|
40694
|
+
* Audit data for Script Run events.
|
|
40695
|
+
*/
|
|
40696
|
+
@open
|
|
40697
|
+
@complex model scriptRunAuditRecord extends auditData {
|
|
40698
|
+
}
|
|
40699
|
+
|
|
40700
|
+
/**
|
|
40701
|
+
* Audit data for search events.
|
|
40702
|
+
*/
|
|
40703
|
+
@open
|
|
40704
|
+
@complex model searchAuditRecord extends auditData {
|
|
40705
|
+
}
|
|
40706
|
+
|
|
40707
|
+
/**
|
|
40708
|
+
* Audit data for Security Compliance Alert events.
|
|
40709
|
+
*/
|
|
40710
|
+
@open
|
|
40711
|
+
@complex model securityComplianceAlertRecord extends auditData {
|
|
40712
|
+
}
|
|
40713
|
+
|
|
40714
|
+
/**
|
|
40715
|
+
* Audit data for Security Compliance Center EOP cmdlet events.
|
|
40716
|
+
*/
|
|
40717
|
+
@open
|
|
40718
|
+
@complex model securityComplianceCenterEOPCmdletAuditRecord extends auditData {
|
|
40719
|
+
}
|
|
40720
|
+
|
|
40721
|
+
/**
|
|
40722
|
+
* Audit data for Security Compliance Insights events.
|
|
40723
|
+
*/
|
|
40724
|
+
@open
|
|
40725
|
+
@complex model securityComplianceInsightsAuditRecord extends auditData {
|
|
40726
|
+
}
|
|
40727
|
+
|
|
40728
|
+
/**
|
|
40729
|
+
* Audit data for Security Compliance RBAC events.
|
|
40730
|
+
*/
|
|
40731
|
+
@open
|
|
40732
|
+
@complex model securityComplianceRBACAuditRecord extends auditData {
|
|
40733
|
+
}
|
|
40734
|
+
|
|
40735
|
+
/**
|
|
40736
|
+
* Audit data for Security Compliance User Change events.
|
|
40737
|
+
*/
|
|
40738
|
+
@open
|
|
40739
|
+
@complex model securityComplianceUserChangeAuditRecord extends auditData {
|
|
40740
|
+
}
|
|
40741
|
+
|
|
40742
|
+
/**
|
|
40743
|
+
* Audit data for Security Copilot Identity Management events.
|
|
40744
|
+
*/
|
|
40745
|
+
@open
|
|
40746
|
+
@complex model securityCopilotIdentityManagementAuditRecord extends auditData {
|
|
40747
|
+
}
|
|
40748
|
+
|
|
40749
|
+
/**
|
|
40750
|
+
* Audit data for Security Development Lifecycle AI Log events.
|
|
40751
|
+
*/
|
|
40752
|
+
@open
|
|
40753
|
+
@complex model securityDevelopmentLifecycleAILogAuditRecord extends auditData {
|
|
40754
|
+
}
|
|
40755
|
+
|
|
40756
|
+
@complex model securityGroupEvidence extends alertEvidence {
|
|
40757
|
+
activeDirectoryObjectGuid: guid | null;
|
|
40758
|
+
displayName: string | null;
|
|
40759
|
+
distinguishedName: string | null;
|
|
40760
|
+
friendlyName: string | null;
|
|
40761
|
+
securityGroupId: string | null;
|
|
40762
|
+
sid: string | null;
|
|
40763
|
+
}
|
|
40764
|
+
|
|
40765
|
+
/**
|
|
40766
|
+
* Audit data for Sensitive Info Remediation Agent events.
|
|
40767
|
+
*/
|
|
40768
|
+
@open
|
|
40769
|
+
@complex model sensitiveInfoRemediationAgentDataRecord extends auditData {
|
|
40770
|
+
}
|
|
40771
|
+
|
|
40772
|
+
/**
|
|
40773
|
+
* Audit data for Sensitivity Label Action events.
|
|
40774
|
+
*/
|
|
40775
|
+
@open
|
|
40776
|
+
@complex model sensitivityLabelActionAuditRecord extends auditData {
|
|
40777
|
+
}
|
|
40778
|
+
|
|
40779
|
+
/**
|
|
40780
|
+
* Audit data for Sensitivity Labeled File Action events.
|
|
40781
|
+
*/
|
|
40782
|
+
@open
|
|
40783
|
+
@complex model sensitivityLabeledFileActionAuditRecord extends auditData {
|
|
40784
|
+
}
|
|
40785
|
+
|
|
40786
|
+
/**
|
|
40787
|
+
* Audit data for Sensitivity Label Policy Match events.
|
|
40788
|
+
*/
|
|
40789
|
+
@open
|
|
40790
|
+
@complex model sensitivityLabelPolicyMatchAuditRecord extends auditData {
|
|
40791
|
+
}
|
|
38336
40792
|
|
|
38337
40793
|
@complex model sensorDeploymentPackage {
|
|
38338
40794
|
downloadUrl: string;
|
|
@@ -38346,6 +40802,69 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38346
40802
|
@contains networkAdapters: networkAdapter[];
|
|
38347
40803
|
}
|
|
38348
40804
|
|
|
40805
|
+
/**
|
|
40806
|
+
* Audit data for Sentinel AI Tool events.
|
|
40807
|
+
*/
|
|
40808
|
+
@open
|
|
40809
|
+
@complex model sentinelAIToolAuditRecord extends auditData {
|
|
40810
|
+
}
|
|
40811
|
+
|
|
40812
|
+
/**
|
|
40813
|
+
* Audit data for Sentinel Graph events.
|
|
40814
|
+
*/
|
|
40815
|
+
@open
|
|
40816
|
+
@complex model sentinelGraphAuditRecord extends auditData {
|
|
40817
|
+
}
|
|
40818
|
+
|
|
40819
|
+
/**
|
|
40820
|
+
* Audit data for Sentinel Job events.
|
|
40821
|
+
*/
|
|
40822
|
+
@open
|
|
40823
|
+
@complex model sentinelJobAuditRecord extends auditData {
|
|
40824
|
+
}
|
|
40825
|
+
|
|
40826
|
+
/**
|
|
40827
|
+
* Audit data for Sentinel KQL On Lake events.
|
|
40828
|
+
*/
|
|
40829
|
+
@open
|
|
40830
|
+
@complex model sentinelKQLOnLakeAuditRecord extends auditData {
|
|
40831
|
+
}
|
|
40832
|
+
|
|
40833
|
+
/**
|
|
40834
|
+
* Audit data for Sentinel Lake Data Onboarding events.
|
|
40835
|
+
*/
|
|
40836
|
+
@open
|
|
40837
|
+
@complex model sentinelLakeDataOnboardingAuditRecord extends auditData {
|
|
40838
|
+
}
|
|
40839
|
+
|
|
40840
|
+
/**
|
|
40841
|
+
* Audit data for Sentinel Lake Encryption events.
|
|
40842
|
+
*/
|
|
40843
|
+
@open
|
|
40844
|
+
@complex model sentinelLakeEncryptionAuditRecord extends auditData {
|
|
40845
|
+
}
|
|
40846
|
+
|
|
40847
|
+
/**
|
|
40848
|
+
* Audit data for Sentinel Lake Onboarding events.
|
|
40849
|
+
*/
|
|
40850
|
+
@open
|
|
40851
|
+
@complex model sentinelLakeOnboardingAuditRecord extends auditData {
|
|
40852
|
+
}
|
|
40853
|
+
|
|
40854
|
+
/**
|
|
40855
|
+
* Audit data for Sentinel Notebook On Lake events.
|
|
40856
|
+
*/
|
|
40857
|
+
@open
|
|
40858
|
+
@complex model sentinelNotebookOnLakeAuditRecord extends auditData {
|
|
40859
|
+
}
|
|
40860
|
+
|
|
40861
|
+
/**
|
|
40862
|
+
* Audit data for Sentinel Package events.
|
|
40863
|
+
*/
|
|
40864
|
+
@open
|
|
40865
|
+
@complex model sentinelPackageAuditRecord extends auditData {
|
|
40866
|
+
}
|
|
40867
|
+
|
|
38349
40868
|
@complex model servicePrincipalEvidence extends alertEvidence {
|
|
38350
40869
|
appId: string | null;
|
|
38351
40870
|
appOwnerTenantId: string | null;
|
|
@@ -38355,11 +40874,151 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38355
40874
|
tenantId: string | null;
|
|
38356
40875
|
}
|
|
38357
40876
|
|
|
40877
|
+
/**
|
|
40878
|
+
* Audit data for SharePoint App Permission Operation events.
|
|
40879
|
+
*/
|
|
40880
|
+
@open
|
|
40881
|
+
@complex model sharePointAppPermissionOperationAuditRecord extends auditData {
|
|
40882
|
+
}
|
|
40883
|
+
|
|
40884
|
+
/**
|
|
40885
|
+
* Audit data for SharePoint events.
|
|
40886
|
+
*/
|
|
40887
|
+
@open
|
|
40888
|
+
@complex model sharePointAuditRecord extends auditData {
|
|
40889
|
+
}
|
|
40890
|
+
|
|
40891
|
+
/**
|
|
40892
|
+
* Audit data for SharePoint Comment Operation events.
|
|
40893
|
+
*/
|
|
40894
|
+
@open
|
|
40895
|
+
@complex model sharePointCommentOperationAuditRecord extends auditData {
|
|
40896
|
+
}
|
|
40897
|
+
|
|
40898
|
+
/**
|
|
40899
|
+
* Audit data for SharePoint Content Security Policy events.
|
|
40900
|
+
*/
|
|
40901
|
+
@open
|
|
40902
|
+
@complex model sharePointContentSecurityPolicyAuditRecord extends auditData {
|
|
40903
|
+
}
|
|
40904
|
+
|
|
40905
|
+
/**
|
|
40906
|
+
* Audit data for SharePoint Content Type Operation events.
|
|
40907
|
+
*/
|
|
40908
|
+
@open
|
|
40909
|
+
@complex model sharePointContentTypeOperationAuditRecord extends auditData {
|
|
40910
|
+
}
|
|
40911
|
+
|
|
40912
|
+
/**
|
|
40913
|
+
* Audit data for SharePoint E Signature events.
|
|
40914
|
+
*/
|
|
40915
|
+
@open
|
|
40916
|
+
@complex model sharePointESignatureAuditRecord extends auditData {
|
|
40917
|
+
}
|
|
40918
|
+
|
|
40919
|
+
/**
|
|
40920
|
+
* Audit data for SharePoint Field Operation events.
|
|
40921
|
+
*/
|
|
40922
|
+
@open
|
|
40923
|
+
@complex model sharePointFieldOperationAuditRecord extends auditData {
|
|
40924
|
+
}
|
|
40925
|
+
|
|
40926
|
+
/**
|
|
40927
|
+
* Audit data for SharePoint File Operation events.
|
|
40928
|
+
*/
|
|
40929
|
+
@open
|
|
40930
|
+
@complex model sharePointFileOperationAuditRecord extends auditData {
|
|
40931
|
+
}
|
|
40932
|
+
|
|
40933
|
+
/**
|
|
40934
|
+
* Audit data for SharePoint List Item Operation events.
|
|
40935
|
+
*/
|
|
40936
|
+
@open
|
|
40937
|
+
@complex model sharePointListItemOperationAuditRecord extends auditData {
|
|
40938
|
+
}
|
|
40939
|
+
|
|
40940
|
+
/**
|
|
40941
|
+
* Audit data for SharePoint List Operation events.
|
|
40942
|
+
*/
|
|
40943
|
+
@open
|
|
40944
|
+
@complex model sharePointListOperationAuditRecord extends auditData {
|
|
40945
|
+
}
|
|
40946
|
+
|
|
40947
|
+
/**
|
|
40948
|
+
* Audit data for SharePoint Sharing Operation events.
|
|
40949
|
+
*/
|
|
40950
|
+
@open
|
|
40951
|
+
@complex model sharePointSharingOperationAuditRecord extends auditData {
|
|
40952
|
+
}
|
|
40953
|
+
|
|
38358
40954
|
@complex model singlePropertySchema {
|
|
38359
40955
|
name: string | null;
|
|
38360
40956
|
type: string | null;
|
|
38361
40957
|
}
|
|
38362
40958
|
|
|
40959
|
+
/**
|
|
40960
|
+
* Audit data for Skype for Business cmdlets events.
|
|
40961
|
+
*/
|
|
40962
|
+
@open
|
|
40963
|
+
@complex model skypeForBusinessCmdletsAuditRecord extends auditData {
|
|
40964
|
+
}
|
|
40965
|
+
|
|
40966
|
+
/**
|
|
40967
|
+
* Audit data for Skype for Business PSTN Usage events.
|
|
40968
|
+
*/
|
|
40969
|
+
@open
|
|
40970
|
+
@complex model skypeForBusinessPSTNUsageAuditRecord extends auditData {
|
|
40971
|
+
}
|
|
40972
|
+
|
|
40973
|
+
/**
|
|
40974
|
+
* Audit data for Skype for Business Users Blocked events.
|
|
40975
|
+
*/
|
|
40976
|
+
@open
|
|
40977
|
+
@complex model skypeForBusinessUsersBlockedAuditRecord extends auditData {
|
|
40978
|
+
}
|
|
40979
|
+
|
|
40980
|
+
/**
|
|
40981
|
+
* Audit data for Sonar Detonation Content Meta events.
|
|
40982
|
+
*/
|
|
40983
|
+
@open
|
|
40984
|
+
@complex model sonarDetonationContentMetadata extends auditData {
|
|
40985
|
+
}
|
|
40986
|
+
|
|
40987
|
+
/**
|
|
40988
|
+
* Audit data for Sonar Detonation Entity events.
|
|
40989
|
+
*/
|
|
40990
|
+
@open
|
|
40991
|
+
@complex model sonarDetonationEntityAuditRecord extends auditData {
|
|
40992
|
+
}
|
|
40993
|
+
|
|
40994
|
+
/**
|
|
40995
|
+
* Audit data for Sonar File Detonation Entity events.
|
|
40996
|
+
*/
|
|
40997
|
+
@open
|
|
40998
|
+
@complex model sonarFileDetonationEntityAuditRecord extends auditData {
|
|
40999
|
+
}
|
|
41000
|
+
|
|
41001
|
+
/**
|
|
41002
|
+
* Audit data for Sonar Submission Entity events.
|
|
41003
|
+
*/
|
|
41004
|
+
@open
|
|
41005
|
+
@complex model sonarSubmissionEntityAuditRecord extends auditData {
|
|
41006
|
+
}
|
|
41007
|
+
|
|
41008
|
+
/**
|
|
41009
|
+
* Audit data for Sonar URL Detonation Entity events.
|
|
41010
|
+
*/
|
|
41011
|
+
@open
|
|
41012
|
+
@complex model sonarUrlDetonationEntityAuditRecord extends auditData {
|
|
41013
|
+
}
|
|
41014
|
+
|
|
41015
|
+
/**
|
|
41016
|
+
* Audit data for Spark Core Custom Live Pool events.
|
|
41017
|
+
*/
|
|
41018
|
+
@open
|
|
41019
|
+
@complex model sparkCoreCustomLivePoolRecord extends auditData {
|
|
41020
|
+
}
|
|
41021
|
+
|
|
38363
41022
|
@complex model sslCertificateEntity {
|
|
38364
41023
|
address: reference.`microsoft.graph`.physicalAddress | null;
|
|
38365
41024
|
alternateNames: string[] | null;
|
|
@@ -38380,6 +41039,13 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38380
41039
|
@complex model stringValueDictionary {
|
|
38381
41040
|
}
|
|
38382
41041
|
|
|
41042
|
+
/**
|
|
41043
|
+
* Audit data for Submission Entity events.
|
|
41044
|
+
*/
|
|
41045
|
+
@open
|
|
41046
|
+
@complex model submissionEntityAuditRecord extends auditData {
|
|
41047
|
+
}
|
|
41048
|
+
|
|
38383
41049
|
@complex model submissionMailEvidence extends alertEvidence {
|
|
38384
41050
|
networkMessageId: string | null;
|
|
38385
41051
|
recipient: string | null;
|
|
@@ -38392,6 +41058,62 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38392
41058
|
submitter: string | null;
|
|
38393
41059
|
}
|
|
38394
41060
|
|
|
41061
|
+
/**
|
|
41062
|
+
* Audit data for Supervisory Review Day X Insights events.
|
|
41063
|
+
*/
|
|
41064
|
+
@open
|
|
41065
|
+
@complex model supervisoryReviewDayXInsightsAuditRecord extends auditData {
|
|
41066
|
+
}
|
|
41067
|
+
|
|
41068
|
+
/**
|
|
41069
|
+
* Audit data for Synthetic Probe events.
|
|
41070
|
+
*/
|
|
41071
|
+
@open
|
|
41072
|
+
@complex model syntheticProbeAuditRecord extends auditData {
|
|
41073
|
+
}
|
|
41074
|
+
|
|
41075
|
+
/**
|
|
41076
|
+
* Audit data for Team Copilot Interaction events.
|
|
41077
|
+
*/
|
|
41078
|
+
@open
|
|
41079
|
+
@complex model teamCopilotInteractionAuditRecord extends auditData {
|
|
41080
|
+
}
|
|
41081
|
+
|
|
41082
|
+
/**
|
|
41083
|
+
* Audit data for Teams Easy Approvals events.
|
|
41084
|
+
*/
|
|
41085
|
+
@open
|
|
41086
|
+
@complex model teamsEasyApprovalsAuditRecord extends auditData {
|
|
41087
|
+
}
|
|
41088
|
+
|
|
41089
|
+
/**
|
|
41090
|
+
* Audit data for Teams Eval Data Hub Admin Operation events.
|
|
41091
|
+
*/
|
|
41092
|
+
@open
|
|
41093
|
+
@complex model teamsEvalDataHubAdminOperationAuditRecord extends auditData {
|
|
41094
|
+
}
|
|
41095
|
+
|
|
41096
|
+
/**
|
|
41097
|
+
* Audit data for Teams Eval Data Hub Data Access events.
|
|
41098
|
+
*/
|
|
41099
|
+
@open
|
|
41100
|
+
@complex model teamsEvalDataHubDataAccessAuditRecord extends auditData {
|
|
41101
|
+
}
|
|
41102
|
+
|
|
41103
|
+
/**
|
|
41104
|
+
* Audit data for Teams Eval Data Hub Permission Change events.
|
|
41105
|
+
*/
|
|
41106
|
+
@open
|
|
41107
|
+
@complex model teamsEvalDataHubPermissionChangeAuditRecord extends auditData {
|
|
41108
|
+
}
|
|
41109
|
+
|
|
41110
|
+
/**
|
|
41111
|
+
* Audit data for Teams Healthcare events.
|
|
41112
|
+
*/
|
|
41113
|
+
@open
|
|
41114
|
+
@complex model teamsHealthcareAuditRecord extends auditData {
|
|
41115
|
+
}
|
|
41116
|
+
|
|
38395
41117
|
@complex model teamsMessageEvidence extends alertEvidence {
|
|
38396
41118
|
campaignId: string | null;
|
|
38397
41119
|
channelId: string | null;
|
|
@@ -38419,12 +41141,68 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38419
41141
|
urls: urlEvidence[] | null;
|
|
38420
41142
|
}
|
|
38421
41143
|
|
|
41144
|
+
/**
|
|
41145
|
+
* Audit data for Teams Updates events.
|
|
41146
|
+
*/
|
|
41147
|
+
@open
|
|
41148
|
+
@complex model teamsUpdatesAuditRecord extends auditData {
|
|
41149
|
+
}
|
|
41150
|
+
|
|
41151
|
+
/**
|
|
41152
|
+
* Audit data for Tenant Allow Block List events.
|
|
41153
|
+
*/
|
|
41154
|
+
@open
|
|
41155
|
+
@complex model tenantAllowBlockListAuditRecord extends auditData {
|
|
41156
|
+
}
|
|
41157
|
+
|
|
38422
41158
|
@complex model threatDetectionDetail {
|
|
38423
41159
|
confidenceLevel: string | null;
|
|
38424
41160
|
priorityAccountProtection: string | null;
|
|
38425
41161
|
threats: string | null;
|
|
38426
41162
|
}
|
|
38427
41163
|
|
|
41164
|
+
/**
|
|
41165
|
+
* Audit data for Threat Finder events.
|
|
41166
|
+
*/
|
|
41167
|
+
@open
|
|
41168
|
+
@complex model threatFinderAuditRecord extends auditData {
|
|
41169
|
+
}
|
|
41170
|
+
|
|
41171
|
+
/**
|
|
41172
|
+
* Audit data for Threat Intelligence Atp Content events.
|
|
41173
|
+
*/
|
|
41174
|
+
@open
|
|
41175
|
+
@complex model threatIntelligenceAtpContentData extends auditData {
|
|
41176
|
+
}
|
|
41177
|
+
|
|
41178
|
+
/**
|
|
41179
|
+
* Audit data for Threat Intelligence Export events.
|
|
41180
|
+
*/
|
|
41181
|
+
@open
|
|
41182
|
+
@complex model threatIntelligenceExportAuditRecord extends auditData {
|
|
41183
|
+
}
|
|
41184
|
+
|
|
41185
|
+
/**
|
|
41186
|
+
* Audit data for Threat Intelligence Mail events.
|
|
41187
|
+
*/
|
|
41188
|
+
@open
|
|
41189
|
+
@complex model threatIntelligenceMailData extends auditData {
|
|
41190
|
+
}
|
|
41191
|
+
|
|
41192
|
+
/**
|
|
41193
|
+
* Audit data for Threat Intelligence Object events.
|
|
41194
|
+
*/
|
|
41195
|
+
@open
|
|
41196
|
+
@complex model threatIntelligenceObjectAuditRecord extends auditData {
|
|
41197
|
+
}
|
|
41198
|
+
|
|
41199
|
+
/**
|
|
41200
|
+
* Audit data for Threat Intelligence Url Click events.
|
|
41201
|
+
*/
|
|
41202
|
+
@open
|
|
41203
|
+
@complex model threatIntelligenceUrlClickData extends auditData {
|
|
41204
|
+
}
|
|
41205
|
+
|
|
38428
41206
|
@complex model timelineEvent {
|
|
38429
41207
|
eventDateTime: offsetDateTime | null;
|
|
38430
41208
|
eventDetails: string | null;
|
|
@@ -38434,6 +41212,13 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38434
41212
|
eventType: timelineEventType | null;
|
|
38435
41213
|
}
|
|
38436
41214
|
|
|
41215
|
+
/**
|
|
41216
|
+
* Audit data for Microsoft To Do events.
|
|
41217
|
+
*/
|
|
41218
|
+
@open
|
|
41219
|
+
@complex model todoAuditRecord extends auditData {
|
|
41220
|
+
}
|
|
41221
|
+
|
|
38437
41222
|
@complex model topicModelingSettings {
|
|
38438
41223
|
dynamicallyAdjustTopicCount: boolean | null;
|
|
38439
41224
|
ignoreNumbers: boolean | null;
|
|
@@ -38441,6 +41226,76 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38441
41226
|
topicCount: int32 | null;
|
|
38442
41227
|
}
|
|
38443
41228
|
|
|
41229
|
+
/**
|
|
41230
|
+
* Audit data for Trainable Classifier events.
|
|
41231
|
+
*/
|
|
41232
|
+
@open
|
|
41233
|
+
@complex model trainableClassifierAuditRecord extends auditData {
|
|
41234
|
+
}
|
|
41235
|
+
|
|
41236
|
+
/**
|
|
41237
|
+
* Audit data for UAM Operation events.
|
|
41238
|
+
*/
|
|
41239
|
+
@open
|
|
41240
|
+
@complex model uamOperationAuditRecord extends auditData {
|
|
41241
|
+
}
|
|
41242
|
+
|
|
41243
|
+
/**
|
|
41244
|
+
* Audit data for Unified Group events.
|
|
41245
|
+
*/
|
|
41246
|
+
@open
|
|
41247
|
+
@complex model unifiedGroupAuditRecord extends auditData {
|
|
41248
|
+
}
|
|
41249
|
+
|
|
41250
|
+
/**
|
|
41251
|
+
* Audit data for Unified Simulation Matched Item events.
|
|
41252
|
+
*/
|
|
41253
|
+
@open
|
|
41254
|
+
@complex model unifiedSimulationMatchedItemAuditRecord extends auditData {
|
|
41255
|
+
}
|
|
41256
|
+
|
|
41257
|
+
/**
|
|
41258
|
+
* Audit data for Unified Simulation Summary events.
|
|
41259
|
+
*/
|
|
41260
|
+
@open
|
|
41261
|
+
@complex model unifiedSimulationSummaryAuditRecord extends auditData {
|
|
41262
|
+
}
|
|
41263
|
+
|
|
41264
|
+
/**
|
|
41265
|
+
* Audit data for Universal Print Management events.
|
|
41266
|
+
*/
|
|
41267
|
+
@open
|
|
41268
|
+
@complex model universalPrintManagementAuditRecord extends auditData {
|
|
41269
|
+
}
|
|
41270
|
+
|
|
41271
|
+
/**
|
|
41272
|
+
* Audit data for Universal Print Print Job events.
|
|
41273
|
+
*/
|
|
41274
|
+
@open
|
|
41275
|
+
@complex model universalPrintPrintJobAuditRecord extends auditData {
|
|
41276
|
+
}
|
|
41277
|
+
|
|
41278
|
+
/**
|
|
41279
|
+
* Audit data for URBAC Assignment events.
|
|
41280
|
+
*/
|
|
41281
|
+
@open
|
|
41282
|
+
@complex model urbacAssignmentAuditRecord extends auditData {
|
|
41283
|
+
}
|
|
41284
|
+
|
|
41285
|
+
/**
|
|
41286
|
+
* Audit data for URBAC Enable State events.
|
|
41287
|
+
*/
|
|
41288
|
+
@open
|
|
41289
|
+
@complex model urbacEnableStateAuditRecord extends auditData {
|
|
41290
|
+
}
|
|
41291
|
+
|
|
41292
|
+
/**
|
|
41293
|
+
* Audit data for URBAC Role events.
|
|
41294
|
+
*/
|
|
41295
|
+
@open
|
|
41296
|
+
@complex model urbacRoleAuditRecord extends auditData {
|
|
41297
|
+
}
|
|
41298
|
+
|
|
38444
41299
|
@complex model urlEvidence extends alertEvidence {
|
|
38445
41300
|
url: string | null;
|
|
38446
41301
|
}
|
|
@@ -38462,6 +41317,209 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38462
41317
|
userAccount: userAccount | null;
|
|
38463
41318
|
}
|
|
38464
41319
|
|
|
41320
|
+
/**
|
|
41321
|
+
* Audit data for User Training events.
|
|
41322
|
+
*/
|
|
41323
|
+
@open
|
|
41324
|
+
@complex model userTrainingAuditRecord extends auditData {
|
|
41325
|
+
}
|
|
41326
|
+
|
|
41327
|
+
/**
|
|
41328
|
+
* Audit data for USX Workspace Onboarding events.
|
|
41329
|
+
*/
|
|
41330
|
+
@open
|
|
41331
|
+
@complex model usxWorkspaceOnboardingAuditRecord extends auditData {
|
|
41332
|
+
}
|
|
41333
|
+
|
|
41334
|
+
/**
|
|
41335
|
+
* Audit data for VFAM Create Policy events.
|
|
41336
|
+
*/
|
|
41337
|
+
@open
|
|
41338
|
+
@complex model vfamCreatePolicyAuditRecord extends auditData {
|
|
41339
|
+
}
|
|
41340
|
+
|
|
41341
|
+
/**
|
|
41342
|
+
* Audit data for VFAM Delete Policy events.
|
|
41343
|
+
*/
|
|
41344
|
+
@open
|
|
41345
|
+
@complex model vfamDeletePolicyAuditRecord extends auditData {
|
|
41346
|
+
}
|
|
41347
|
+
|
|
41348
|
+
/**
|
|
41349
|
+
* Audit data for VFAM Update Policy events.
|
|
41350
|
+
*/
|
|
41351
|
+
@open
|
|
41352
|
+
@complex model vfamUpdatePolicyAuditRecord extends auditData {
|
|
41353
|
+
}
|
|
41354
|
+
|
|
41355
|
+
/**
|
|
41356
|
+
* Audit data for Viva Amplify events.
|
|
41357
|
+
*/
|
|
41358
|
+
@open
|
|
41359
|
+
@complex model vivaAmplifyAuditRecord extends auditData {
|
|
41360
|
+
}
|
|
41361
|
+
|
|
41362
|
+
/**
|
|
41363
|
+
* Audit data for Viva Engage Events events.
|
|
41364
|
+
*/
|
|
41365
|
+
@open
|
|
41366
|
+
@complex model vivaEngageEventsAuditRecord extends auditData {
|
|
41367
|
+
}
|
|
41368
|
+
|
|
41369
|
+
/**
|
|
41370
|
+
* Audit data for Viva Engage Network Association events.
|
|
41371
|
+
*/
|
|
41372
|
+
@open
|
|
41373
|
+
@complex model vivaEngageNetworkAssociationAuditRecord extends auditData {
|
|
41374
|
+
}
|
|
41375
|
+
|
|
41376
|
+
/**
|
|
41377
|
+
* Audit data for Viva Engage Segment events.
|
|
41378
|
+
*/
|
|
41379
|
+
@open
|
|
41380
|
+
@complex model vivaEngageSegmentAuditRecord extends auditData {
|
|
41381
|
+
}
|
|
41382
|
+
|
|
41383
|
+
/**
|
|
41384
|
+
* Audit data for Viva Glint Advanced Configuration events.
|
|
41385
|
+
*/
|
|
41386
|
+
@open
|
|
41387
|
+
@complex model vivaGlintAdvancedConfigurationAuditRecord extends auditData {
|
|
41388
|
+
}
|
|
41389
|
+
|
|
41390
|
+
/**
|
|
41391
|
+
* Audit data for Viva Glint Agentic Campaign events.
|
|
41392
|
+
*/
|
|
41393
|
+
@open
|
|
41394
|
+
@complex model vivaGlintAgenticCampaignAuditRecord extends auditData {
|
|
41395
|
+
}
|
|
41396
|
+
|
|
41397
|
+
/**
|
|
41398
|
+
* Audit data for Viva Glint Feedback Program events.
|
|
41399
|
+
*/
|
|
41400
|
+
@open
|
|
41401
|
+
@complex model vivaGlintFeedbackProgramAuditRecord extends auditData {
|
|
41402
|
+
}
|
|
41403
|
+
|
|
41404
|
+
/**
|
|
41405
|
+
* Audit data for Viva Glint Organizational events.
|
|
41406
|
+
*/
|
|
41407
|
+
@open
|
|
41408
|
+
@complex model vivaGlintOrganizationalDataAuditRecord extends auditData {
|
|
41409
|
+
}
|
|
41410
|
+
|
|
41411
|
+
/**
|
|
41412
|
+
* Audit data for Viva Glint Pulse Program events.
|
|
41413
|
+
*/
|
|
41414
|
+
@open
|
|
41415
|
+
@complex model vivaGlintPulseProgramAuditRecord extends auditData {
|
|
41416
|
+
}
|
|
41417
|
+
|
|
41418
|
+
/**
|
|
41419
|
+
* Audit data for Viva Glint Pulse Program Respondent Rate events.
|
|
41420
|
+
*/
|
|
41421
|
+
@open
|
|
41422
|
+
@complex model vivaGlintPulseProgramRespondentRateAuditRecord extends auditData {
|
|
41423
|
+
}
|
|
41424
|
+
|
|
41425
|
+
/**
|
|
41426
|
+
* Audit data for Viva Glint Question events.
|
|
41427
|
+
*/
|
|
41428
|
+
@open
|
|
41429
|
+
@complex model vivaGlintQuestionAuditRecord extends auditData {
|
|
41430
|
+
}
|
|
41431
|
+
|
|
41432
|
+
/**
|
|
41433
|
+
* Audit data for Viva Glint Role events.
|
|
41434
|
+
*/
|
|
41435
|
+
@open
|
|
41436
|
+
@complex model vivaGlintRoleAuditRecord extends auditData {
|
|
41437
|
+
}
|
|
41438
|
+
|
|
41439
|
+
/**
|
|
41440
|
+
* Audit data for Viva Glint Rubicon events.
|
|
41441
|
+
*/
|
|
41442
|
+
@open
|
|
41443
|
+
@complex model vivaGlintRubiconAuditRecord extends auditData {
|
|
41444
|
+
}
|
|
41445
|
+
|
|
41446
|
+
/**
|
|
41447
|
+
* Audit data for Viva Glint Support Access events.
|
|
41448
|
+
*/
|
|
41449
|
+
@open
|
|
41450
|
+
@complex model vivaGlintSupportAccessAuditRecord extends auditData {
|
|
41451
|
+
}
|
|
41452
|
+
|
|
41453
|
+
/**
|
|
41454
|
+
* Audit data for Viva Glint System events.
|
|
41455
|
+
*/
|
|
41456
|
+
@open
|
|
41457
|
+
@complex model vivaGlintSystemAuditRecord extends auditData {
|
|
41458
|
+
}
|
|
41459
|
+
|
|
41460
|
+
/**
|
|
41461
|
+
* Audit data for Viva Glint User events.
|
|
41462
|
+
*/
|
|
41463
|
+
@open
|
|
41464
|
+
@complex model vivaGlintUserAuditRecord extends auditData {
|
|
41465
|
+
}
|
|
41466
|
+
|
|
41467
|
+
/**
|
|
41468
|
+
* Audit data for Viva Glint User Group events.
|
|
41469
|
+
*/
|
|
41470
|
+
@open
|
|
41471
|
+
@complex model vivaGlintUserGroupAuditRecord extends auditData {
|
|
41472
|
+
}
|
|
41473
|
+
|
|
41474
|
+
/**
|
|
41475
|
+
* Audit data for Viva Goals events.
|
|
41476
|
+
*/
|
|
41477
|
+
@open
|
|
41478
|
+
@complex model vivaGoalsAuditRecord extends auditData {
|
|
41479
|
+
}
|
|
41480
|
+
|
|
41481
|
+
/**
|
|
41482
|
+
* Audit data for Viva Learning Admin events.
|
|
41483
|
+
*/
|
|
41484
|
+
@open
|
|
41485
|
+
@complex model vivaLearningAdminAuditRecord extends auditData {
|
|
41486
|
+
}
|
|
41487
|
+
|
|
41488
|
+
/**
|
|
41489
|
+
* Audit data for Viva Learning events.
|
|
41490
|
+
*/
|
|
41491
|
+
@open
|
|
41492
|
+
@complex model vivaLearningAuditRecord extends auditData {
|
|
41493
|
+
}
|
|
41494
|
+
|
|
41495
|
+
/**
|
|
41496
|
+
* Audit data for Viva Pulse Admin events.
|
|
41497
|
+
*/
|
|
41498
|
+
@open
|
|
41499
|
+
@complex model vivaPulseAdminAuditRecord extends auditData {
|
|
41500
|
+
}
|
|
41501
|
+
|
|
41502
|
+
/**
|
|
41503
|
+
* Audit data for Viva Pulse Organizer events.
|
|
41504
|
+
*/
|
|
41505
|
+
@open
|
|
41506
|
+
@complex model vivaPulseOrganizerAuditRecord extends auditData {
|
|
41507
|
+
}
|
|
41508
|
+
|
|
41509
|
+
/**
|
|
41510
|
+
* Audit data for Viva Pulse Report events.
|
|
41511
|
+
*/
|
|
41512
|
+
@open
|
|
41513
|
+
@complex model vivaPulseReportAuditRecord extends auditData {
|
|
41514
|
+
}
|
|
41515
|
+
|
|
41516
|
+
/**
|
|
41517
|
+
* Audit data for Viva Pulse Response events.
|
|
41518
|
+
*/
|
|
41519
|
+
@open
|
|
41520
|
+
@complex model vivaPulseResponseAuditRecord extends auditData {
|
|
41521
|
+
}
|
|
41522
|
+
|
|
38465
41523
|
@complex model vmMetadata {
|
|
38466
41524
|
cloudProvider: vmCloudProvider;
|
|
38467
41525
|
resourceId: string | null;
|
|
@@ -38469,6 +41527,20 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38469
41527
|
vmId: string | null;
|
|
38470
41528
|
}
|
|
38471
41529
|
|
|
41530
|
+
/**
|
|
41531
|
+
* Audit data for WDATP Alerts events.
|
|
41532
|
+
*/
|
|
41533
|
+
@open
|
|
41534
|
+
@complex model wdatpAlertsAuditRecord extends auditData {
|
|
41535
|
+
}
|
|
41536
|
+
|
|
41537
|
+
/**
|
|
41538
|
+
* Audit data for Web Content Filtering events.
|
|
41539
|
+
*/
|
|
41540
|
+
@open
|
|
41541
|
+
@complex model webContentFilteringAuditRecord extends auditData {
|
|
41542
|
+
}
|
|
41543
|
+
|
|
38472
41544
|
@complex model whoisContact {
|
|
38473
41545
|
address: reference.`microsoft.graph`.physicalAddress | null;
|
|
38474
41546
|
email: string | null;
|
|
@@ -38484,6 +41556,34 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38484
41556
|
@references host: host;
|
|
38485
41557
|
}
|
|
38486
41558
|
|
|
41559
|
+
/**
|
|
41560
|
+
* Audit data for Windows365 Customer Lockbox events.
|
|
41561
|
+
*/
|
|
41562
|
+
@open
|
|
41563
|
+
@complex model windows365CustomerLockboxAuditRecord extends auditData {
|
|
41564
|
+
}
|
|
41565
|
+
|
|
41566
|
+
/**
|
|
41567
|
+
* Audit data for Workplace Analytics events.
|
|
41568
|
+
*/
|
|
41569
|
+
@open
|
|
41570
|
+
@complex model workplaceAnalyticsAuditRecord extends auditData {
|
|
41571
|
+
}
|
|
41572
|
+
|
|
41573
|
+
/**
|
|
41574
|
+
* Audit data for Yammer events.
|
|
41575
|
+
*/
|
|
41576
|
+
@open
|
|
41577
|
+
@complex model yammerAuditRecord extends auditData {
|
|
41578
|
+
}
|
|
41579
|
+
|
|
41580
|
+
/**
|
|
41581
|
+
* Audit data for Yammer User Hiding events.
|
|
41582
|
+
*/
|
|
41583
|
+
@open
|
|
41584
|
+
@complex model yammerUserHidingAuditRecord extends auditData {
|
|
41585
|
+
}
|
|
41586
|
+
|
|
38487
41587
|
@entity model alert extends reference.`microsoft.graph`.entity {
|
|
38488
41588
|
actorDisplayName: string | null;
|
|
38489
41589
|
additionalData: dictionary | null;
|
|
@@ -38583,6 +41683,50 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38583
41683
|
@entity model artifact extends reference.`microsoft.graph`.entity {
|
|
38584
41684
|
}
|
|
38585
41685
|
|
|
41686
|
+
/**
|
|
41687
|
+
* Root entity for the audit log API.
|
|
41688
|
+
*/
|
|
41689
|
+
@entity model auditCoreRoot extends reference.`microsoft.graph`.entity {
|
|
41690
|
+
@contains queries: auditLogQuery[];
|
|
41691
|
+
}
|
|
41692
|
+
|
|
41693
|
+
/**
|
|
41694
|
+
* Represents a query against the unified audit log.
|
|
41695
|
+
*/
|
|
41696
|
+
@entity model auditLogQuery extends reference.`microsoft.graph`.entity {
|
|
41697
|
+
administrativeUnitIdFilters: string[] | null;
|
|
41698
|
+
displayName: string | null;
|
|
41699
|
+
filterEndDateTime: offsetDateTime | null;
|
|
41700
|
+
filterStartDateTime: offsetDateTime | null;
|
|
41701
|
+
ipAddressFilters: string[] | null;
|
|
41702
|
+
keywordFilter: string | null;
|
|
41703
|
+
objectIdFilters: string[] | null;
|
|
41704
|
+
operationFilters: string[] | null;
|
|
41705
|
+
recordTypeFilters: auditLogRecordType[] | null;
|
|
41706
|
+
serviceFilters: string[] | null;
|
|
41707
|
+
status: auditLogQueryStatus | null;
|
|
41708
|
+
userPrincipalNameFilters: string[] | null;
|
|
41709
|
+
@contains records: auditLogRecord[];
|
|
41710
|
+
}
|
|
41711
|
+
|
|
41712
|
+
/**
|
|
41713
|
+
* Represents an individual audit log record.
|
|
41714
|
+
*/
|
|
41715
|
+
@entity model auditLogRecord extends reference.`microsoft.graph`.entity {
|
|
41716
|
+
administrativeUnits: string[] | null;
|
|
41717
|
+
auditData: auditData | null;
|
|
41718
|
+
auditLogRecordType: auditLogRecordType | null;
|
|
41719
|
+
clientIp: string | null;
|
|
41720
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
41721
|
+
objectId: string | null;
|
|
41722
|
+
operation: string | null;
|
|
41723
|
+
organizationId: string | null;
|
|
41724
|
+
service: string | null;
|
|
41725
|
+
userId: string | null;
|
|
41726
|
+
userPrincipalName: string | null;
|
|
41727
|
+
userType: auditLogUserType | null;
|
|
41728
|
+
}
|
|
41729
|
+
|
|
38586
41730
|
@entity model authorityTemplate extends filePlanDescriptorTemplate {
|
|
38587
41731
|
}
|
|
38588
41732
|
|
|
@@ -39347,6 +42491,514 @@ namespace reference.`microsoft.graph.security` {
|
|
|
39347
42491
|
unknownFutureValue: 31,
|
|
39348
42492
|
}
|
|
39349
42493
|
|
|
42494
|
+
/**
|
|
42495
|
+
* Status of an audit log query.
|
|
42496
|
+
*/
|
|
42497
|
+
enum auditLogQueryStatus {
|
|
42498
|
+
notStarted: 0,
|
|
42499
|
+
running: 1,
|
|
42500
|
+
succeeded: 2,
|
|
42501
|
+
failed: 3,
|
|
42502
|
+
cancelled: 4,
|
|
42503
|
+
unknownFutureValue: 5,
|
|
42504
|
+
}
|
|
42505
|
+
|
|
42506
|
+
/**
|
|
42507
|
+
* Specifies the type of audit log record.
|
|
42508
|
+
*/
|
|
42509
|
+
enum auditLogRecordType {
|
|
42510
|
+
ExchangeAdmin: 1,
|
|
42511
|
+
ExchangeItem: 2,
|
|
42512
|
+
ExchangeItemGroup: 3,
|
|
42513
|
+
SharePoint: 4,
|
|
42514
|
+
SyntheticProbe: 5,
|
|
42515
|
+
SharePointFileOperation: 6,
|
|
42516
|
+
OneDrive: 7,
|
|
42517
|
+
AzureActiveDirectory: 8,
|
|
42518
|
+
AzureActiveDirectoryAccountLogon: 9,
|
|
42519
|
+
DataCenterSecurityCmdlet: 10,
|
|
42520
|
+
ComplianceDLPSharePoint: 11,
|
|
42521
|
+
Sway: 12,
|
|
42522
|
+
ComplianceDLPExchange: 13,
|
|
42523
|
+
SharePointSharingOperation: 14,
|
|
42524
|
+
AzureActiveDirectoryStsLogon: 15,
|
|
42525
|
+
SkypeForBusinessPSTNUsage: 16,
|
|
42526
|
+
SkypeForBusinessUsersBlocked: 17,
|
|
42527
|
+
SecurityComplianceCenterEOPCmdlet: 18,
|
|
42528
|
+
ExchangeAggregatedOperation: 19,
|
|
42529
|
+
PowerBIAudit: 20,
|
|
42530
|
+
CRM: 21,
|
|
42531
|
+
Yammer: 22,
|
|
42532
|
+
SkypeForBusinessCmdlets: 23,
|
|
42533
|
+
Discovery: 24,
|
|
42534
|
+
MicrosoftTeams: 25,
|
|
42535
|
+
ThreatIntelligence: 28,
|
|
42536
|
+
MailSubmission: 29,
|
|
42537
|
+
MicrosoftFlow: 30,
|
|
42538
|
+
AeD: 31,
|
|
42539
|
+
MicrosoftStream: 32,
|
|
42540
|
+
ComplianceDLPSharePointClassification: 33,
|
|
42541
|
+
ThreatFinder: 34,
|
|
42542
|
+
Project: 35,
|
|
42543
|
+
SharePointListOperation: 36,
|
|
42544
|
+
SharePointCommentOperation: 37,
|
|
42545
|
+
DataGovernance: 38,
|
|
42546
|
+
Kaizala: 39,
|
|
42547
|
+
SecurityComplianceAlerts: 40,
|
|
42548
|
+
ThreatIntelligenceUrl: 41,
|
|
42549
|
+
SecurityComplianceInsights: 42,
|
|
42550
|
+
MIPLabel: 43,
|
|
42551
|
+
WorkplaceAnalytics: 44,
|
|
42552
|
+
PowerAppsApp: 45,
|
|
42553
|
+
PowerAppsPlan: 46,
|
|
42554
|
+
ThreatIntelligenceAtpContent: 47,
|
|
42555
|
+
LabelContentExplorer: 48,
|
|
42556
|
+
TeamsHealthcare: 49,
|
|
42557
|
+
ExchangeItemAggregated: 50,
|
|
42558
|
+
HygieneEvent: 51,
|
|
42559
|
+
DataInsightsRestApiAudit: 52,
|
|
42560
|
+
InformationBarrierPolicyApplication: 53,
|
|
42561
|
+
SharePointListItemOperation: 54,
|
|
42562
|
+
SharePointContentTypeOperation: 55,
|
|
42563
|
+
SharePointFieldOperation: 56,
|
|
42564
|
+
MicrosoftTeamsAdmin: 57,
|
|
42565
|
+
HRSignal: 58,
|
|
42566
|
+
MicrosoftTeamsDevice: 59,
|
|
42567
|
+
MicrosoftTeamsAnalytics: 60,
|
|
42568
|
+
InformationWorkerProtection: 61,
|
|
42569
|
+
Campaign: 62,
|
|
42570
|
+
DLPEndpoint: 63,
|
|
42571
|
+
AirInvestigation: 64,
|
|
42572
|
+
Quarantine: 65,
|
|
42573
|
+
MicrosoftForms: 66,
|
|
42574
|
+
ApplicationAudit: 67,
|
|
42575
|
+
ComplianceSupervisionExchange: 68,
|
|
42576
|
+
CustomerKeyServiceEncryption: 69,
|
|
42577
|
+
OfficeNative: 70,
|
|
42578
|
+
MipAutoLabelSharePointItem: 71,
|
|
42579
|
+
MipAutoLabelSharePointPolicyLocation: 72,
|
|
42580
|
+
MicrosoftTeamsShifts: 73,
|
|
42581
|
+
SecureScore: 74,
|
|
42582
|
+
MipAutoLabelExchangeItem: 75,
|
|
42583
|
+
CortanaBriefing: 76,
|
|
42584
|
+
Search: 77,
|
|
42585
|
+
WDATPAlerts: 78,
|
|
42586
|
+
PowerPlatformAdminDlp: 79,
|
|
42587
|
+
PowerPlatformAdminEnvironment: 80,
|
|
42588
|
+
MDATPAudit: 81,
|
|
42589
|
+
SensitivityLabelPolicyMatch: 82,
|
|
42590
|
+
SensitivityLabelAction: 83,
|
|
42591
|
+
SensitivityLabeledFileAction: 84,
|
|
42592
|
+
AttackSim: 85,
|
|
42593
|
+
AirManualInvestigation: 86,
|
|
42594
|
+
SecurityComplianceRBAC: 87,
|
|
42595
|
+
UserTraining: 88,
|
|
42596
|
+
AirAdminActionInvestigation: 89,
|
|
42597
|
+
MSTIC: 90,
|
|
42598
|
+
PhysicalBadgingSignal: 91,
|
|
42599
|
+
TeamsEasyApprovals: 92,
|
|
42600
|
+
AipDiscover: 93,
|
|
42601
|
+
AipSensitivityLabelAction: 94,
|
|
42602
|
+
AipProtectionAction: 95,
|
|
42603
|
+
AipFileDeleted: 96,
|
|
42604
|
+
AipHeartBeat: 97,
|
|
42605
|
+
MCASAlerts: 98,
|
|
42606
|
+
OnPremisesFileShareScannerDlp: 99,
|
|
42607
|
+
OnPremisesSharePointScannerDlp: 100,
|
|
42608
|
+
ExchangeSearch: 101,
|
|
42609
|
+
SharePointSearch: 102,
|
|
42610
|
+
PrivacyDataMinimization: 103,
|
|
42611
|
+
LabelAnalyticsAggregate: 104,
|
|
42612
|
+
MyAnalyticsSettings: 105,
|
|
42613
|
+
SecurityComplianceUserChange: 106,
|
|
42614
|
+
ComplianceDLPExchangeClassification: 107,
|
|
42615
|
+
ComplianceDLPEndpoint: 108,
|
|
42616
|
+
MipExactDataMatch: 109,
|
|
42617
|
+
MSDEResponseActions: 110,
|
|
42618
|
+
MSDEGeneralSettings: 111,
|
|
42619
|
+
MSDEIndicatorsSettings: 112,
|
|
42620
|
+
MS365DCustomDetection: 113,
|
|
42621
|
+
MSDERolesSettings: 114,
|
|
42622
|
+
MAPGAlerts: 115,
|
|
42623
|
+
MAPGPolicy: 116,
|
|
42624
|
+
MAPGRemediation: 117,
|
|
42625
|
+
PrivacyRemediationAction: 118,
|
|
42626
|
+
PrivacyDigestEmail: 119,
|
|
42627
|
+
MipAutoLabelSimulationProgress: 120,
|
|
42628
|
+
MipAutoLabelSimulationCompletion: 121,
|
|
42629
|
+
MipAutoLabelProgressFeedback: 122,
|
|
42630
|
+
DlpSensitiveInformationType: 123,
|
|
42631
|
+
MipAutoLabelSimulationStatistics: 124,
|
|
42632
|
+
LargeContentMetadata: 125,
|
|
42633
|
+
Microsoft365Group: 126,
|
|
42634
|
+
CDPMlInferencingResult: 127,
|
|
42635
|
+
FilteringMailMetadata: 128,
|
|
42636
|
+
CDPClassificationMailItem: 129,
|
|
42637
|
+
CDPClassificationDocument: 130,
|
|
42638
|
+
OfficeScriptsRunAction: 131,
|
|
42639
|
+
FilteringPostMailDeliveryAction: 132,
|
|
42640
|
+
CDPUnifiedFeedback: 133,
|
|
42641
|
+
TenantAllowBlockList: 134,
|
|
42642
|
+
ConsumptionResource: 135,
|
|
42643
|
+
HealthcareSignal: 136,
|
|
42644
|
+
DlpImportResult: 138,
|
|
42645
|
+
CDPCompliancePolicyExecution: 139,
|
|
42646
|
+
MultiStageDisposition: 140,
|
|
42647
|
+
PrivacyDataMatch: 141,
|
|
42648
|
+
FilteringDocMetadata: 142,
|
|
42649
|
+
FilteringEmailFeatures: 143,
|
|
42650
|
+
PowerBIDlp: 144,
|
|
42651
|
+
FilteringUrlInfo: 145,
|
|
42652
|
+
FilteringAttachmentInfo: 146,
|
|
42653
|
+
CoreReportingSettings: 147,
|
|
42654
|
+
ComplianceConnector: 148,
|
|
42655
|
+
PowerPlatformLockboxResourceAccessRequest: 149,
|
|
42656
|
+
PowerPlatformLockboxResourceCommand: 150,
|
|
42657
|
+
CDPPredictiveCodingLabel: 151,
|
|
42658
|
+
CDPCompliancePolicyUserFeedback: 152,
|
|
42659
|
+
WebpageActivityEndpoint: 153,
|
|
42660
|
+
OMEPortal: 154,
|
|
42661
|
+
CMImprovementActionChange: 155,
|
|
42662
|
+
FilteringUrlClick: 156,
|
|
42663
|
+
MipLabelAnalyticsAuditRecord: 157,
|
|
42664
|
+
FilteringEntityEvent: 158,
|
|
42665
|
+
FilteringRuleHits: 159,
|
|
42666
|
+
FilteringMailSubmission: 160,
|
|
42667
|
+
LabelExplorer: 161,
|
|
42668
|
+
MicrosoftManagedServicePlatform: 162,
|
|
42669
|
+
PowerPlatformServiceActivity: 163,
|
|
42670
|
+
ScorePlatformGenericAuditRecord: 164,
|
|
42671
|
+
FilteringTimeTravelDocMetadata: 165,
|
|
42672
|
+
Alert: 166,
|
|
42673
|
+
AlertStatus: 167,
|
|
42674
|
+
AlertIncident: 168,
|
|
42675
|
+
IncidentStatus: 169,
|
|
42676
|
+
Case: 170,
|
|
42677
|
+
CaseInvestigation: 171,
|
|
42678
|
+
RecordsManagement: 172,
|
|
42679
|
+
PrivacyRemediation: 173,
|
|
42680
|
+
DataShareOperation: 174,
|
|
42681
|
+
CdpDlpSensitive: 175,
|
|
42682
|
+
EHRConnector: 176,
|
|
42683
|
+
FilteringMailGradingResult: 177,
|
|
42684
|
+
PublicFolder: 178,
|
|
42685
|
+
PrivacyTenantAuditHistoryRecord: 179,
|
|
42686
|
+
AipScannerDiscoverEvent: 180,
|
|
42687
|
+
EduDataLakeDownloadOperation: 181,
|
|
42688
|
+
M365ComplianceConnector: 182,
|
|
42689
|
+
MicrosoftGraphDataConnectOperation: 183,
|
|
42690
|
+
MicrosoftPurview: 184,
|
|
42691
|
+
FilteringEmailContentFeatures: 185,
|
|
42692
|
+
PowerPagesSite: 186,
|
|
42693
|
+
PowerAppsResource: 187,
|
|
42694
|
+
PlannerPlan: 188,
|
|
42695
|
+
PlannerCopyPlan: 189,
|
|
42696
|
+
PlannerTask: 190,
|
|
42697
|
+
PlannerRoster: 191,
|
|
42698
|
+
PlannerPlanList: 192,
|
|
42699
|
+
PlannerTaskList: 193,
|
|
42700
|
+
PlannerTenantSettings: 194,
|
|
42701
|
+
ProjectForTheWebProject: 195,
|
|
42702
|
+
ProjectForTheWebTask: 196,
|
|
42703
|
+
ProjectForTheWebRoadmap: 197,
|
|
42704
|
+
ProjectForTheWebRoadmapItem: 198,
|
|
42705
|
+
ProjectForTheWebProjectSettings: 199,
|
|
42706
|
+
ProjectForTheWebRoadmapSettings: 200,
|
|
42707
|
+
QuarantineMetadata: 201,
|
|
42708
|
+
MicrosoftTodoAudit: 202,
|
|
42709
|
+
TimeTravelFilteringDocMetadata: 203,
|
|
42710
|
+
TeamsQuarantineMetadata: 204,
|
|
42711
|
+
SharePointAppPermissionOperation: 205,
|
|
42712
|
+
MicrosoftTeamsSensitivityLabelAction: 206,
|
|
42713
|
+
FilteringTeamsMetadata: 207,
|
|
42714
|
+
FilteringTeamsUrlInfo: 208,
|
|
42715
|
+
FilteringTeamsPostDeliveryAction: 209,
|
|
42716
|
+
MDCAssessments: 210,
|
|
42717
|
+
MDCRegulatoryComplianceStandards: 211,
|
|
42718
|
+
MDCRegulatoryComplianceControls: 212,
|
|
42719
|
+
MDCRegulatoryComplianceAssessments: 213,
|
|
42720
|
+
MDCSecurityConnectors: 214,
|
|
42721
|
+
MDADataSecuritySignal: 215,
|
|
42722
|
+
VivaGoals: 216,
|
|
42723
|
+
FilteringRuntimeInfo: 217,
|
|
42724
|
+
AttackSimAdmin: 218,
|
|
42725
|
+
MicrosoftGraphDataConnectConsent: 219,
|
|
42726
|
+
FilteringAtpDetonationInfo: 220,
|
|
42727
|
+
PrivacyPortal: 221,
|
|
42728
|
+
ManagedTenants: 222,
|
|
42729
|
+
UnifiedSimulationMatchedItem: 223,
|
|
42730
|
+
UnifiedSimulationSummary: 224,
|
|
42731
|
+
UpdateQuarantineMetadata: 225,
|
|
42732
|
+
MS365DSuppressionRule: 226,
|
|
42733
|
+
PurviewDataMapOperation: 227,
|
|
42734
|
+
FilteringUrlPostClickAction: 228,
|
|
42735
|
+
IrmUserDefinedDetectionSignal: 229,
|
|
42736
|
+
TeamsUpdates: 230,
|
|
42737
|
+
PlannerRosterSensitivityLabel: 231,
|
|
42738
|
+
MS365DIncident: 232,
|
|
42739
|
+
FilteringDelistingMetadata: 233,
|
|
42740
|
+
ComplianceDLPSharePointClassificationExtended: 234,
|
|
42741
|
+
MicrosoftDefenderForIdentityAudit: 235,
|
|
42742
|
+
SupervisoryReviewDayXInsight: 236,
|
|
42743
|
+
DefenderExpertsforXDRAdmin: 237,
|
|
42744
|
+
CDPEdgeBlockedMessage: 238,
|
|
42745
|
+
HostedRpa: 239,
|
|
42746
|
+
CdpContentExplorerAggregateRecord: 240,
|
|
42747
|
+
CDPHygieneAttachmentInfo: 241,
|
|
42748
|
+
CDPHygieneSummary: 242,
|
|
42749
|
+
CDPPostMailDeliveryAction: 243,
|
|
42750
|
+
CDPEmailFeatures: 244,
|
|
42751
|
+
CDPHygieneUrlInfo: 245,
|
|
42752
|
+
CDPUrlClick: 246,
|
|
42753
|
+
CDPPackageManagerHygieneEvent: 247,
|
|
42754
|
+
FilteringDocScan: 248,
|
|
42755
|
+
TimeTravelFilteringDocScan: 249,
|
|
42756
|
+
MAPGOnboard: 250,
|
|
42757
|
+
VfamCreatePolicy: 251,
|
|
42758
|
+
VfamUpdatePolicy: 252,
|
|
42759
|
+
VfamDeletePolicy: 253,
|
|
42760
|
+
M365DAAD: 254,
|
|
42761
|
+
CdpColdCrawlStatus: 255,
|
|
42762
|
+
PowerPlatformAdministratorActivity: 256,
|
|
42763
|
+
Windows365CustomerLockbox: 257,
|
|
42764
|
+
CdpResourceScopeChangeEvent: 258,
|
|
42765
|
+
ComplianceCCExchangeExecutionResult: 259,
|
|
42766
|
+
CdpOcrCostEstimatorRecord: 260,
|
|
42767
|
+
CopilotInteraction: 261,
|
|
42768
|
+
CdpOcrBillingRecord: 262,
|
|
42769
|
+
ComplianceDLPApplications: 263,
|
|
42770
|
+
UAMOperation: 264,
|
|
42771
|
+
VivaLearning: 265,
|
|
42772
|
+
VivaLearningAdmin: 266,
|
|
42773
|
+
PurviewPolicyOperation: 267,
|
|
42774
|
+
PurviewMetadataPolicyOperation: 268,
|
|
42775
|
+
PeopleAdminSettings: 269,
|
|
42776
|
+
CdpComplianceDLPExchangeClassification: 270,
|
|
42777
|
+
CdpComplianceDLPSharePointClassification: 271,
|
|
42778
|
+
FilteringBulkSenderInsightData: 272,
|
|
42779
|
+
FilteringBulkThresholdInsightData: 273,
|
|
42780
|
+
PrivacyOpenAccess: 274,
|
|
42781
|
+
OWAAuth: 275,
|
|
42782
|
+
ComplianceDLPApplicationsClassification: 276,
|
|
42783
|
+
SharePointESignature: 277,
|
|
42784
|
+
Dynamics365BusinessCentral: 278,
|
|
42785
|
+
MeshWorlds: 279,
|
|
42786
|
+
VivaPulseResponse: 280,
|
|
42787
|
+
VivaPulseOrganizer: 281,
|
|
42788
|
+
VivaPulseAdmin: 282,
|
|
42789
|
+
VivaPulseReport: 283,
|
|
42790
|
+
AIAppInteraction: 284,
|
|
42791
|
+
ComplianceDLMExchange: 285,
|
|
42792
|
+
ComplianceDLMSharePoint: 286,
|
|
42793
|
+
ProjectForTheWebAssignedToMeSettings: 287,
|
|
42794
|
+
CPSOperation: 288,
|
|
42795
|
+
ComplianceDLPExchangeDiscovery: 289,
|
|
42796
|
+
PurviewMCRecommendation: 290,
|
|
42797
|
+
ComplianceDLPEndpointDiscovery: 291,
|
|
42798
|
+
InsiderRiskScopedUserInsights: 292,
|
|
42799
|
+
MicrosoftTeamsRetentionLabelAction: 293,
|
|
42800
|
+
AadRiskDetection: 294,
|
|
42801
|
+
AuditSearch: 295,
|
|
42802
|
+
AuditRetentionPolicy: 296,
|
|
42803
|
+
AuditConfig: 297,
|
|
42804
|
+
Microsoft365BackupBackupPolicy: 298,
|
|
42805
|
+
Microsoft365BackupRestoreTask: 299,
|
|
42806
|
+
Microsoft365BackupRestoreItem: 300,
|
|
42807
|
+
Microsoft365BackupBackupItem: 301,
|
|
42808
|
+
URBACAssignment: 302,
|
|
42809
|
+
URBACRole: 303,
|
|
42810
|
+
URBACEnableState: 304,
|
|
42811
|
+
IRMSecurityAlert: 305,
|
|
42812
|
+
PurviewInsiderRiskCases: 306,
|
|
42813
|
+
PurviewInsiderRiskAlerts: 307,
|
|
42814
|
+
InsiderRiskScopedUsers: 308,
|
|
42815
|
+
CdpConsumptionResource: 309,
|
|
42816
|
+
CreateCopilotPlugin: 310,
|
|
42817
|
+
UpdateCopilotPlugin: 311,
|
|
42818
|
+
DeleteCopilotPlugin: 312,
|
|
42819
|
+
EnableCopilotPlugin: 313,
|
|
42820
|
+
DisableCopilotPlugin: 314,
|
|
42821
|
+
CreateCopilotWorkspace: 315,
|
|
42822
|
+
UpdateCopilotWorkspace: 316,
|
|
42823
|
+
DeleteCopilotWorkspace: 317,
|
|
42824
|
+
EnableCopilotWorkspace: 318,
|
|
42825
|
+
DisableCopilotWorkspace: 319,
|
|
42826
|
+
CreateCopilotPromptBook: 320,
|
|
42827
|
+
UpdateCopilotPromptBook: 321,
|
|
42828
|
+
DeleteCopilotPromptBook: 322,
|
|
42829
|
+
EnableCopilotPromptBook: 323,
|
|
42830
|
+
DisableCopilotPromptBook: 324,
|
|
42831
|
+
UpdateCopilotSettings: 325,
|
|
42832
|
+
P4AIAssessmentRecord: 326,
|
|
42833
|
+
P4AIAssessmentLocationResultRecord: 327,
|
|
42834
|
+
ConnectedAIAppInteraction: 328,
|
|
42835
|
+
PrivaPrivacyConsentOperation: 329,
|
|
42836
|
+
PrivaPrivacyAssessmentOperation: 330,
|
|
42837
|
+
DataCatalogAccessRequests: 331,
|
|
42838
|
+
ComplianceSettingsChange: 332,
|
|
42839
|
+
DataSecurityInvestigation: 333,
|
|
42840
|
+
TeamCopilotInteraction: 334,
|
|
42841
|
+
IRMActivityAuditTrail: 335,
|
|
42842
|
+
SharePointContentSecurityPolicy: 336,
|
|
42843
|
+
CloudUpdateProfileConfig: 337,
|
|
42844
|
+
CloudUpdateTenantConfig: 338,
|
|
42845
|
+
CloudUpdateDeviceConfig: 339,
|
|
42846
|
+
DefenderPreviewFeatures: 340,
|
|
42847
|
+
DeviceDiscoverySettingsExclusion: 341,
|
|
42848
|
+
DeviceDiscoverySettingsAuthenticatedScans: 342,
|
|
42849
|
+
CriticalAssetManagementClassification: 343,
|
|
42850
|
+
DeviceDiscoverySettings: 344,
|
|
42851
|
+
USXWorkspaceOnboarding: 345,
|
|
42852
|
+
VivaGlintAdvancedConfiguration: 346,
|
|
42853
|
+
VivaGlintPulseProgram: 347,
|
|
42854
|
+
VivaGlintPulseProgramRespondentRate: 348,
|
|
42855
|
+
VivaGlintQuestion: 349,
|
|
42856
|
+
VivaGlintRole: 350,
|
|
42857
|
+
VivaGlintRubicon: 351,
|
|
42858
|
+
VivaGlintSupportAccess: 352,
|
|
42859
|
+
VivaGlintSystem: 353,
|
|
42860
|
+
VivaGlintUser: 354,
|
|
42861
|
+
VivaGlintUserGroup: 355,
|
|
42862
|
+
VivaGlintFeedbackProgram: 356,
|
|
42863
|
+
FabricAudit: 357,
|
|
42864
|
+
TrainableClassifier: 358,
|
|
42865
|
+
WebContentFiltering: 359,
|
|
42866
|
+
NoisyAlertPolicy: 360,
|
|
42867
|
+
OnDemandSharePointClassification: 361,
|
|
42868
|
+
AIInteractionsExport: 362,
|
|
42869
|
+
Microsoft365CopilotScheduledPrompt: 363,
|
|
42870
|
+
PlacesDirectory: 364,
|
|
42871
|
+
MDAAudit: 365,
|
|
42872
|
+
OpticalCharacterRecognition: 366,
|
|
42873
|
+
M365SearchSections: 368,
|
|
42874
|
+
OfficeClientRestrictedModeAction: 369,
|
|
42875
|
+
CrossTenantAccessPolicy: 370,
|
|
42876
|
+
OutlookCopilotAutomation: 371,
|
|
42877
|
+
VivaEngageNetworkAssociation: 372,
|
|
42878
|
+
AppAdminActivity: 373,
|
|
42879
|
+
AppSettingsAdminActivity: 374,
|
|
42880
|
+
UniversalPrintPrintJob: 375,
|
|
42881
|
+
SentinelNotebookOnLake: 376,
|
|
42882
|
+
SentinelJob: 377,
|
|
42883
|
+
SentinelGraph: 378,
|
|
42884
|
+
SentinelKQLOnLake: 379,
|
|
42885
|
+
SentinelPackage: 380,
|
|
42886
|
+
VivaAmplifyOutlookSensitivityLabel: 381,
|
|
42887
|
+
CopilotActions: 382,
|
|
42888
|
+
AIInteractionsSubscription: 383,
|
|
42889
|
+
AIInteractionsChangeNotification: 384,
|
|
42890
|
+
FilteringMailMetadataExtended: 385,
|
|
42891
|
+
SentinelLakeOnboarding: 386,
|
|
42892
|
+
SentinelLakeDataOnboarding: 387,
|
|
42893
|
+
OfficeRestrictedModeAction: 388,
|
|
42894
|
+
CopilotForSecurityTrigger: 389,
|
|
42895
|
+
CopilotAgentManagement: 390,
|
|
42896
|
+
P4AIAssessmentFabricScannerRecord: 391,
|
|
42897
|
+
PlannerGoal: 392,
|
|
42898
|
+
PlannerGoalList: 393,
|
|
42899
|
+
ThreatIntelligenceObject: 394,
|
|
42900
|
+
ThreatIntelligenceExport: 395,
|
|
42901
|
+
SubmissionAgenticGradingResult: 396,
|
|
42902
|
+
AgentAdminActivity: 397,
|
|
42903
|
+
DeployFeatureActivity: 398,
|
|
42904
|
+
AgentSettingsAdminActivity: 399,
|
|
42905
|
+
OrganizationalDataInM365: 400,
|
|
42906
|
+
PlannerChatMessage: 401,
|
|
42907
|
+
PlannerChatMessageList: 402,
|
|
42908
|
+
SentinelAITool: 403,
|
|
42909
|
+
M365ODSPAssetMetadata: 404,
|
|
42910
|
+
AIExecuteTool: 405,
|
|
42911
|
+
AIInvokeAgent: 406,
|
|
42912
|
+
AIInferenceCall: 407,
|
|
42913
|
+
CdpClassifierHealthRecord: 408,
|
|
42914
|
+
SensitiveInfoRemediationAgentData: 409,
|
|
42915
|
+
ComplianceDLPEnforcement: 410,
|
|
42916
|
+
A365AIExecuteTool: 411,
|
|
42917
|
+
A365AIInvokeAgent: 412,
|
|
42918
|
+
A365AIInferenceCall: 413,
|
|
42919
|
+
VivaEngageSegment: 414,
|
|
42920
|
+
RTIOperationsAgent: 415,
|
|
42921
|
+
ContentStoreMetadata: 416,
|
|
42922
|
+
CCRAIPolicyViolation: 417,
|
|
42923
|
+
PlannerPlanSensitivityLabel: 418,
|
|
42924
|
+
MosAgentInfoRecord: 419,
|
|
42925
|
+
A365AIRunSummary: 420,
|
|
42926
|
+
UnifiedCatalogConceptAction: 421,
|
|
42927
|
+
DefenderCaseManagement: 422,
|
|
42928
|
+
CopilotForSecurityLogging: 423,
|
|
42929
|
+
VivaEngageEvents: 424,
|
|
42930
|
+
CallActivityEvent: 425,
|
|
42931
|
+
SonarDetonationContentMetadata: 426,
|
|
42932
|
+
UniversalPrintManagement: 427,
|
|
42933
|
+
YammerUserHiding: 428,
|
|
42934
|
+
Microsoft365BackupGranularBrowseTask: 429,
|
|
42935
|
+
PurviewPostureAgent: 430,
|
|
42936
|
+
MSDECustomCollection: 431,
|
|
42937
|
+
SCPUsageEvent: 432,
|
|
42938
|
+
SCPConfigurationEvent: 433,
|
|
42939
|
+
MDCConfigurationEvent: 434,
|
|
42940
|
+
MDCUsageEvent: 435,
|
|
42941
|
+
A365SpanOutputs: 436,
|
|
42942
|
+
PowerPlatformTenantIsolation: 437,
|
|
42943
|
+
CDPDLMAIInteractionInsights: 438,
|
|
42944
|
+
P4AIAssessmentCategoryRecord: 439,
|
|
42945
|
+
SentinelLakeEncryption: 440,
|
|
42946
|
+
AZFWNetworkRule: 441,
|
|
42947
|
+
AZFWDnsQuery: 442,
|
|
42948
|
+
AZFWApplicationRuleAggregation: 443,
|
|
42949
|
+
TeamsEvalDataHubDataAccess: 444,
|
|
42950
|
+
TeamsEvalDataHubPermissionChange: 445,
|
|
42951
|
+
TeamsEvalDataHubAdminOperation: 446,
|
|
42952
|
+
VivaGlintOrganizationalData: 447,
|
|
42953
|
+
AlertSubmission: 448,
|
|
42954
|
+
AlertSubmissionResultDetail: 449,
|
|
42955
|
+
ComplianceSitGradingSharePoint: 450,
|
|
42956
|
+
CompliancePolicyGradingSharePoint: 451,
|
|
42957
|
+
AzureAISearchAudit: 452,
|
|
42958
|
+
P4AIRiskScoreRecord: 453,
|
|
42959
|
+
DragonCopilotAdmin: 454,
|
|
42960
|
+
AISpanOutputs: 455,
|
|
42961
|
+
EopSubmissionFeedEntity: 456,
|
|
42962
|
+
SonarFileDetonationEntity: 457,
|
|
42963
|
+
SonarSubmissionEntity: 458,
|
|
42964
|
+
SonarUrlDetonationEntity: 459,
|
|
42965
|
+
SubmissionEntity: 460,
|
|
42966
|
+
SonarDetonationEntity: 461,
|
|
42967
|
+
MicrosoftTeamsUserConcern: 462,
|
|
42968
|
+
VivaGlintAgenticCampaign: 463,
|
|
42969
|
+
MSPVectorSearchContentMetadata: 464,
|
|
42970
|
+
FabricPolicy: 465,
|
|
42971
|
+
SecurityCopilotAgentIdentityManagement: 466,
|
|
42972
|
+
CopilotSessionSharing: 467,
|
|
42973
|
+
DragonCopilotAccess: 468,
|
|
42974
|
+
DragonCopilotClinicalData: 469,
|
|
42975
|
+
DragonCopilotSession: 470,
|
|
42976
|
+
MosAgentInfoRecordV2: 471,
|
|
42977
|
+
SecurityDevelopmentLifecycleAILog: 472,
|
|
42978
|
+
MDASH: 473,
|
|
42979
|
+
DefenderSecurityForAIConfiguration: 474,
|
|
42980
|
+
SparkCoreCustomLivePool: 475,
|
|
42981
|
+
unknownFutureValue: 476,
|
|
42982
|
+
}
|
|
42983
|
+
|
|
42984
|
+
/**
|
|
42985
|
+
* Type of user associated with an audit log record.
|
|
42986
|
+
*/
|
|
42987
|
+
enum auditLogUserType {
|
|
42988
|
+
Regular: 0,
|
|
42989
|
+
Reserved: 1,
|
|
42990
|
+
Admin: 2,
|
|
42991
|
+
DcAdmin: 3,
|
|
42992
|
+
System: 4,
|
|
42993
|
+
Application: 5,
|
|
42994
|
+
ServicePrincipal: 6,
|
|
42995
|
+
CustomPolicy: 7,
|
|
42996
|
+
SystemPolicy: 8,
|
|
42997
|
+
PartnerTechnician: 9,
|
|
42998
|
+
Guest: 10,
|
|
42999
|
+
unknownFutureValue: 11,
|
|
43000
|
+
}
|
|
43001
|
+
|
|
39350
43002
|
enum behaviorDuringRetentionPeriod {
|
|
39351
43003
|
doNotRetain: 0,
|
|
39352
43004
|
retain: 1,
|