@microsoft/typespec-msgraph-reference 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.rush/temp/package-deps_build.json +18 -18
- package/CHANGELOG.md +9 -0
- package/lib/Bleu/Beta/main.tsp +121 -3
- package/lib/Bleu/V1.0/main.tsp +377 -1
- package/lib/Delos/Beta/main.tsp +3330 -19
- package/lib/Delos/V1.0/main.tsp +2710 -10
- package/lib/Fairfax/Beta/main.tsp +64 -3
- package/lib/Fairfax/V1.0/main.tsp +58 -1
- package/lib/GovSG/Beta/main.tsp +1 -0
- package/lib/GovSG/V1.0/main.tsp +2 -1
- package/lib/Mooncake/Beta/main.tsp +64 -3
- package/lib/Mooncake/V1.0/main.tsp +58 -1
- package/lib/Prod/Beta/main.tsp +942 -169
- package/lib/Prod/V1.0/main.tsp +4093 -567
- package/lib/USNat/Beta/main.tsp +268 -0
- package/lib/USNat/V1.0/main.tsp +255 -1
- package/lib/USSec/Beta/main.tsp +268 -0
- package/lib/USSec/V1.0/main.tsp +255 -1
- package/package.json +2 -2
package/lib/Prod/V1.0/main.tsp
CHANGED
|
@@ -9542,9 +9542,6 @@ namespace reference.`microsoft.graph` {
|
|
|
9542
9542
|
@references sponsors: directoryObject[];
|
|
9543
9543
|
}
|
|
9544
9544
|
|
|
9545
|
-
/**
|
|
9546
|
-
* Represents a Microsoft Entra user account.
|
|
9547
|
-
*/
|
|
9548
9545
|
@open
|
|
9549
9546
|
@entity model agentUser extends user {
|
|
9550
9547
|
}
|
|
@@ -12059,6 +12056,7 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
12059
12056
|
appId: string | null;
|
|
12060
12057
|
assetId: string | null;
|
|
12061
12058
|
availableTo: packageStatus;
|
|
12059
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
12062
12060
|
deployedTo: packageStatus;
|
|
12063
12061
|
displayName: string | null;
|
|
12064
12062
|
elementTypes: string[];
|
|
@@ -12083,6 +12081,7 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
12083
12081
|
elementDetails: packageElementDetail[];
|
|
12084
12082
|
longDescription: string | null;
|
|
12085
12083
|
sensitivity: string | null;
|
|
12084
|
+
sharedWithUsersAndGroups: packageAccessEntity[];
|
|
12086
12085
|
}
|
|
12087
12086
|
|
|
12088
12087
|
@entity model copilotReportRoot extends entity {
|
|
@@ -13770,6 +13769,7 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
13770
13769
|
@contains federationConfigurations: identityProviderBase[];
|
|
13771
13770
|
@contains onPremisesSynchronization: onPremisesDirectorySynchronization[];
|
|
13772
13771
|
@contains publicKeyInfrastructure: publicKeyInfrastructureRoot | null;
|
|
13772
|
+
@contains recovery: reference.`microsoft.graph.entraRecoveryServices`.recovery | null;
|
|
13773
13773
|
@contains subscriptions: companySubscription[];
|
|
13774
13774
|
}
|
|
13775
13775
|
|
|
@@ -14303,9 +14303,6 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
14303
14303
|
policyName: string | null;
|
|
14304
14304
|
}
|
|
14305
14305
|
|
|
14306
|
-
/**
|
|
14307
|
-
* Represents a container that exposes navigation properties for employee experience resources.
|
|
14308
|
-
*/
|
|
14309
14306
|
@entity model employeeExperience extends MsGraph.SharedModels.entity {
|
|
14310
14307
|
/**
|
|
14311
14308
|
* A collection of communities in Viva Engage.
|
|
@@ -14807,7 +14804,7 @@ within the time frame of their original request.
|
|
|
14807
14804
|
description: string | null;
|
|
14808
14805
|
issuer: string;
|
|
14809
14806
|
name: string;
|
|
14810
|
-
subject: string;
|
|
14807
|
+
subject: string | null;
|
|
14811
14808
|
}
|
|
14812
14809
|
|
|
14813
14810
|
@entity model federatedTokenValidationPolicy extends directoryObject {
|
|
@@ -14963,9 +14960,6 @@ within the time frame of their original request.
|
|
|
14963
14960
|
siteId: string | null;
|
|
14964
14961
|
}
|
|
14965
14962
|
|
|
14966
|
-
/**
|
|
14967
|
-
* Represents a Microsoft Entra group.
|
|
14968
|
-
*/
|
|
14969
14963
|
@open
|
|
14970
14964
|
@entity model group extends directoryObject {
|
|
14971
14965
|
accessType: groupAccessType | null;
|
|
@@ -18421,9 +18415,6 @@ within the time frame of their original request.
|
|
|
18421
18415
|
handler: onInteractiveAuthFlowStartHandler | null;
|
|
18422
18416
|
}
|
|
18423
18417
|
|
|
18424
|
-
/**
|
|
18425
|
-
* Represents a Microsoft online meeting.
|
|
18426
|
-
*/
|
|
18427
18418
|
@open
|
|
18428
18419
|
@entity model onlineMeeting extends onlineMeetingBase {
|
|
18429
18420
|
attendeeReport: stream | null;
|
|
@@ -19911,10 +19902,14 @@ within the time frame of their original request.
|
|
|
19911
19902
|
vendorInformation: securityVendorInformation | null;
|
|
19912
19903
|
}
|
|
19913
19904
|
|
|
19905
|
+
/**
|
|
19906
|
+
* Security singleton providing access to audit log resources.
|
|
19907
|
+
*/
|
|
19914
19908
|
@entity model security extends MsGraph.SharedModels.entity {
|
|
19915
19909
|
@contains alerts: alert[];
|
|
19916
19910
|
@contains alerts_v2: reference.`microsoft.graph.security`.alert[];
|
|
19917
19911
|
@contains attackSimulation: attackSimulationRoot | null;
|
|
19912
|
+
@contains auditLog: reference.`microsoft.graph.security`.auditCoreRoot | null;
|
|
19918
19913
|
@contains cases: reference.`microsoft.graph.security`.casesRoot | null;
|
|
19919
19914
|
@contains collaboration: reference.`microsoft.graph.security`.collaborationRoot | null;
|
|
19920
19915
|
@contains dataSecurityAndGovernance: tenantDataSecurityAndGovernance | null;
|
|
@@ -21436,9 +21431,6 @@ within the time frame of their original request.
|
|
|
21436
21431
|
@references resource: entity | null;
|
|
21437
21432
|
}
|
|
21438
21433
|
|
|
21439
|
-
/**
|
|
21440
|
-
* Represents a Microsoft Entra user account.
|
|
21441
|
-
*/
|
|
21442
21434
|
@open
|
|
21443
21435
|
@entity model user extends directoryObject {
|
|
21444
21436
|
aboutMe: string | null;
|
|
@@ -36760,6 +36752,165 @@ namespace reference.`microsoft.graph.callRecords` {
|
|
|
36760
36752
|
unknownFutureValue: 7,
|
|
36761
36753
|
}
|
|
36762
36754
|
|
|
36755
|
+
}
|
|
36756
|
+
@publicNamespace("microsoft.graph.entrarecoveryservices")
|
|
36757
|
+
namespace reference.`microsoft.graph.entraRecoveryServices` {
|
|
36758
|
+
@complex model entityTypeAndIds {
|
|
36759
|
+
entityIds: string[];
|
|
36760
|
+
entityType: resourceTypeName;
|
|
36761
|
+
}
|
|
36762
|
+
|
|
36763
|
+
@complex model recoveryJobEntityNameAndIdsFilter extends recoveryJobFilteringCriteriaBase {
|
|
36764
|
+
filterValues: entityTypeAndIds[];
|
|
36765
|
+
}
|
|
36766
|
+
|
|
36767
|
+
@complex model recoveryJobEntityNamesFilter extends recoveryJobFilteringCriteriaBase {
|
|
36768
|
+
entityTypes: resourceTypeName[];
|
|
36769
|
+
}
|
|
36770
|
+
|
|
36771
|
+
@complex model recoveryJobFilteringCriteriaBase {
|
|
36772
|
+
}
|
|
36773
|
+
|
|
36774
|
+
@entity model recovery extends reference.`microsoft.graph`.entity {
|
|
36775
|
+
@contains jobs: recoveryJobBase[];
|
|
36776
|
+
@contains snapshots: snapshot[];
|
|
36777
|
+
}
|
|
36778
|
+
|
|
36779
|
+
@open
|
|
36780
|
+
@entity model recoveryChangeObjectBase extends reference.`microsoft.graph`.entity {
|
|
36781
|
+
displayName: string | null;
|
|
36782
|
+
entityTypeName: resourceTypeName;
|
|
36783
|
+
failureMessage: string | null;
|
|
36784
|
+
recoveryAction: recoveryAction;
|
|
36785
|
+
}
|
|
36786
|
+
|
|
36787
|
+
@entity model recoveryJob extends recoveryJobBase {
|
|
36788
|
+
totalFailedChanges: int32 | null;
|
|
36789
|
+
totalLinksModified: int32 | null;
|
|
36790
|
+
totalObjectsModified: int32 | null;
|
|
36791
|
+
}
|
|
36792
|
+
|
|
36793
|
+
@abstract
|
|
36794
|
+
@entity model recoveryJobBase extends reference.`microsoft.graph`.entity {
|
|
36795
|
+
filteringCriteria: recoveryJobFilteringCriteriaBase | null;
|
|
36796
|
+
jobCompletionDateTime: offsetDateTime | null;
|
|
36797
|
+
jobStartDateTime: offsetDateTime;
|
|
36798
|
+
status: recoveryStatus;
|
|
36799
|
+
targetStateDateTime: offsetDateTime;
|
|
36800
|
+
totalChangedLinksCalculated: int32 | null;
|
|
36801
|
+
totalChangedObjectsCalculated: int32 | null;
|
|
36802
|
+
}
|
|
36803
|
+
|
|
36804
|
+
@entity model recoveryPreviewJob extends recoveryJobBase {
|
|
36805
|
+
}
|
|
36806
|
+
|
|
36807
|
+
@entity model snapshot extends reference.`microsoft.graph`.entity {
|
|
36808
|
+
@computed createdDateTime: offsetDateTime;
|
|
36809
|
+
totalChangedObjects: int32 | null;
|
|
36810
|
+
@references recoveryJobs: recoveryJob[];
|
|
36811
|
+
@references recoveryPreviewJobs: recoveryPreviewJob[];
|
|
36812
|
+
}
|
|
36813
|
+
|
|
36814
|
+
enum recoveryAction {
|
|
36815
|
+
/**
|
|
36816
|
+
* Represents a soft delete action during recovery
|
|
36817
|
+
*/
|
|
36818
|
+
softDelete: 0,
|
|
36819
|
+
/**
|
|
36820
|
+
* Represents an update action during recovery
|
|
36821
|
+
*/
|
|
36822
|
+
update: 1,
|
|
36823
|
+
/**
|
|
36824
|
+
* Represents a restore action during recovery
|
|
36825
|
+
*/
|
|
36826
|
+
restore: 2,
|
|
36827
|
+
unknownFutureValue: 3,
|
|
36828
|
+
}
|
|
36829
|
+
|
|
36830
|
+
enum recoveryStatus {
|
|
36831
|
+
/**
|
|
36832
|
+
* Represents a job that has been initialized but has not been started yet
|
|
36833
|
+
*/
|
|
36834
|
+
initialized: 0,
|
|
36835
|
+
/**
|
|
36836
|
+
* Represents a job that is in progress
|
|
36837
|
+
*/
|
|
36838
|
+
running: 1,
|
|
36839
|
+
/**
|
|
36840
|
+
* Represents a job that ran successfully and is now complete
|
|
36841
|
+
*/
|
|
36842
|
+
successful: 2,
|
|
36843
|
+
/**
|
|
36844
|
+
* Represents a job that we were not able to run successfully
|
|
36845
|
+
*/
|
|
36846
|
+
failed: 3,
|
|
36847
|
+
/**
|
|
36848
|
+
* Represents a job that was abandoned by the user
|
|
36849
|
+
*/
|
|
36850
|
+
abandoned: 4,
|
|
36851
|
+
unknownFutureValue: 5,
|
|
36852
|
+
/**
|
|
36853
|
+
* Represents a job for which we have started calculating the diff/preview.
|
|
36854
|
+
*/
|
|
36855
|
+
calculating: 6,
|
|
36856
|
+
/**
|
|
36857
|
+
* Represents a job for which we have started loading data of the snapshot.
|
|
36858
|
+
*/
|
|
36859
|
+
loadingData: 7,
|
|
36860
|
+
}
|
|
36861
|
+
|
|
36862
|
+
enum resourceTypeName {
|
|
36863
|
+
/**
|
|
36864
|
+
* Represents the user entity
|
|
36865
|
+
*/
|
|
36866
|
+
user: 0,
|
|
36867
|
+
/**
|
|
36868
|
+
* Represents the group entity
|
|
36869
|
+
*/
|
|
36870
|
+
group: 1,
|
|
36871
|
+
/**
|
|
36872
|
+
* Represents the conditional access policy entity
|
|
36873
|
+
*/
|
|
36874
|
+
conditionalAccessPolicy: 2,
|
|
36875
|
+
/**
|
|
36876
|
+
* Represents the named location policy entity
|
|
36877
|
+
*/
|
|
36878
|
+
namedLocationPolicy: 3,
|
|
36879
|
+
/**
|
|
36880
|
+
* Represents the authentication method policy entity
|
|
36881
|
+
*/
|
|
36882
|
+
authenticationMethodPolicy: 4,
|
|
36883
|
+
/**
|
|
36884
|
+
* Represents the authorization policy entity
|
|
36885
|
+
*/
|
|
36886
|
+
authorizationPolicy: 5,
|
|
36887
|
+
/**
|
|
36888
|
+
* Represents the authentication strength policy entity
|
|
36889
|
+
*/
|
|
36890
|
+
authenticationStrengthPolicy: 6,
|
|
36891
|
+
/**
|
|
36892
|
+
* Represents the application entity
|
|
36893
|
+
*/
|
|
36894
|
+
application: 7,
|
|
36895
|
+
/**
|
|
36896
|
+
* Represents the service principal entity
|
|
36897
|
+
*/
|
|
36898
|
+
servicePrincipal: 8,
|
|
36899
|
+
unknownFutureValue: 9,
|
|
36900
|
+
/**
|
|
36901
|
+
* Represents the oAuth2PermissionGrant entity.
|
|
36902
|
+
*/
|
|
36903
|
+
oAuth2PermissionGrant: 10,
|
|
36904
|
+
/**
|
|
36905
|
+
* Represents the appRoleAssignment entity.
|
|
36906
|
+
*/
|
|
36907
|
+
appRoleAssignment: 11,
|
|
36908
|
+
/**
|
|
36909
|
+
* Represents the organization entity.
|
|
36910
|
+
*/
|
|
36911
|
+
organization: 12,
|
|
36912
|
+
}
|
|
36913
|
+
|
|
36763
36914
|
}
|
|
36764
36915
|
@publicNamespace("microsoft.graph.externalconnectors")
|
|
36765
36916
|
namespace reference.`microsoft.graph.externalConnectors` {
|
|
@@ -37083,6 +37234,18 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37083
37234
|
triggerAttributes: triggerAttribute[];
|
|
37084
37235
|
}
|
|
37085
37236
|
|
|
37237
|
+
@complex model cancelRunsScope extends cancelScope {
|
|
37238
|
+
@references runs: run[];
|
|
37239
|
+
}
|
|
37240
|
+
|
|
37241
|
+
@abstract
|
|
37242
|
+
@complex model cancelScope {
|
|
37243
|
+
}
|
|
37244
|
+
|
|
37245
|
+
@complex model countBasedQuarantineCondition extends quarantineCondition {
|
|
37246
|
+
threshold: int64;
|
|
37247
|
+
}
|
|
37248
|
+
|
|
37086
37249
|
@complex model customTaskExtensionCallbackConfiguration extends reference.`microsoft.graph`.customExtensionCallbackConfiguration {
|
|
37087
37250
|
@references authorizedApps: reference.`microsoft.graph`.application[];
|
|
37088
37251
|
}
|
|
@@ -37115,6 +37278,32 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37115
37278
|
valueType: valueType;
|
|
37116
37279
|
}
|
|
37117
37280
|
|
|
37281
|
+
@complex model percentageBasedQuarantineCondition extends quarantineCondition {
|
|
37282
|
+
percentage: int32;
|
|
37283
|
+
}
|
|
37284
|
+
|
|
37285
|
+
@complex model previewFailedTask {
|
|
37286
|
+
definitionId: string;
|
|
37287
|
+
failureReason: string;
|
|
37288
|
+
name: string;
|
|
37289
|
+
taskId: string;
|
|
37290
|
+
}
|
|
37291
|
+
|
|
37292
|
+
@abstract
|
|
37293
|
+
@complex model quarantineCondition {
|
|
37294
|
+
}
|
|
37295
|
+
|
|
37296
|
+
@complex model quarantineConfiguration {
|
|
37297
|
+
conditions: quarantineCondition[];
|
|
37298
|
+
matchMode: matchMode;
|
|
37299
|
+
}
|
|
37300
|
+
|
|
37301
|
+
@complex model quarantineDetails {
|
|
37302
|
+
quarantinedDateTime: offsetDateTime | null;
|
|
37303
|
+
quarantineReason: string | null;
|
|
37304
|
+
quarantineType: quarantineType;
|
|
37305
|
+
}
|
|
37306
|
+
|
|
37118
37307
|
@complex model ruleBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
37119
37308
|
rule: string;
|
|
37120
37309
|
}
|
|
@@ -37201,6 +37390,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37201
37390
|
@complex model workflowExecutionTrigger {
|
|
37202
37391
|
}
|
|
37203
37392
|
|
|
37393
|
+
@complex model workflowSetting {
|
|
37394
|
+
quarantineConfiguration: quarantineConfiguration | null;
|
|
37395
|
+
}
|
|
37396
|
+
|
|
37204
37397
|
@complex model workflowsInsightsByCategory {
|
|
37205
37398
|
failedJoinerRuns: int32;
|
|
37206
37399
|
failedLeaverRuns: int32;
|
|
@@ -37238,6 +37431,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37238
37431
|
|
|
37239
37432
|
@entity model lifecycleManagementSettings extends reference.`microsoft.graph`.entity {
|
|
37240
37433
|
emailSettings: reference.`microsoft.graph`.emailSettings;
|
|
37434
|
+
quarantineConfiguration: quarantineConfiguration | null;
|
|
37241
37435
|
workflowScheduleIntervalInHours: int32;
|
|
37242
37436
|
}
|
|
37243
37437
|
|
|
@@ -37336,8 +37530,11 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37336
37530
|
deletedDateTime: offsetDateTime | null;
|
|
37337
37531
|
@computed @key id: string;
|
|
37338
37532
|
nextScheduleRunDateTime: offsetDateTime | null;
|
|
37533
|
+
quarantineDetails: quarantineDetails;
|
|
37534
|
+
settings: workflowSetting;
|
|
37339
37535
|
version: int32 | null;
|
|
37340
37536
|
@references executionScope: userProcessingResult[];
|
|
37537
|
+
@references previewScope: reference.`microsoft.graph`.directoryObject[];
|
|
37341
37538
|
@contains runs: run[];
|
|
37342
37539
|
@contains taskReports: taskReport[];
|
|
37343
37540
|
@contains userProcessingResults: userProcessingResult[];
|
|
@@ -37369,6 +37566,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37369
37566
|
}
|
|
37370
37567
|
|
|
37371
37568
|
@entity model workflowVersion extends workflowBase {
|
|
37569
|
+
settings: workflowSetting;
|
|
37372
37570
|
@computed @key versionNumber: int32;
|
|
37373
37571
|
}
|
|
37374
37572
|
|
|
@@ -37413,6 +37611,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37413
37611
|
canceled: 4,
|
|
37414
37612
|
failed: 5,
|
|
37415
37613
|
unknownFutureValue: 6,
|
|
37614
|
+
canceling: 7,
|
|
37615
|
+
quarantined: 8,
|
|
37616
|
+
}
|
|
37617
|
+
|
|
37618
|
+
enum matchMode {
|
|
37619
|
+
any: 0,
|
|
37620
|
+
all: 1,
|
|
37621
|
+
unknownFutureValue: 2,
|
|
37416
37622
|
}
|
|
37417
37623
|
|
|
37418
37624
|
enum membershipChangeType {
|
|
@@ -37421,6 +37627,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37421
37627
|
unknownFutureValue: 3,
|
|
37422
37628
|
}
|
|
37423
37629
|
|
|
37630
|
+
enum quarantineType {
|
|
37631
|
+
notQuarantined: 0,
|
|
37632
|
+
countBasedThresholdExceeded: 1,
|
|
37633
|
+
percentageBasedThresholdExceeded: 2,
|
|
37634
|
+
multipleConditionsExceeded: 3,
|
|
37635
|
+
unknownFutureValue: 4,
|
|
37636
|
+
}
|
|
37637
|
+
|
|
37424
37638
|
enum valueType {
|
|
37425
37639
|
`enum`: 0,
|
|
37426
37640
|
`string`: 1,
|
|
@@ -37434,6 +37648,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37434
37648
|
onDemand: 1,
|
|
37435
37649
|
unknownFutureValue: 2,
|
|
37436
37650
|
activatedWithScope: 3,
|
|
37651
|
+
preview: 4,
|
|
37437
37652
|
}
|
|
37438
37653
|
|
|
37439
37654
|
enum workflowTriggerTimeBasedAttribute {
|
|
@@ -37603,6 +37818,48 @@ namespace reference.`microsoft.graph.search` {
|
|
|
37603
37818
|
// Metadata item DeprecatedDefinition_Tasks_And_Plans was already defined with a different value.
|
|
37604
37819
|
@publicNamespace("microsoft.graph.security")
|
|
37605
37820
|
namespace reference.`microsoft.graph.security` {
|
|
37821
|
+
/**
|
|
37822
|
+
* Audit data for A365 AI Execute Tool events.
|
|
37823
|
+
*/
|
|
37824
|
+
@open
|
|
37825
|
+
@complex model a365AiExecuteTool extends auditData {
|
|
37826
|
+
}
|
|
37827
|
+
|
|
37828
|
+
/**
|
|
37829
|
+
* Audit data for A365 AI Inference Call events.
|
|
37830
|
+
*/
|
|
37831
|
+
@open
|
|
37832
|
+
@complex model a365AiInferenceCall extends auditData {
|
|
37833
|
+
}
|
|
37834
|
+
|
|
37835
|
+
/**
|
|
37836
|
+
* Audit data for A365 AI Invoke Agent events.
|
|
37837
|
+
*/
|
|
37838
|
+
@open
|
|
37839
|
+
@complex model a365AiInvokeAgent extends auditData {
|
|
37840
|
+
}
|
|
37841
|
+
|
|
37842
|
+
/**
|
|
37843
|
+
* Audit data for A365 AI Run Summary events.
|
|
37844
|
+
*/
|
|
37845
|
+
@open
|
|
37846
|
+
@complex model a365AiRunSummary extends auditData {
|
|
37847
|
+
}
|
|
37848
|
+
|
|
37849
|
+
/**
|
|
37850
|
+
* Audit data for A365 Span Outputs events.
|
|
37851
|
+
*/
|
|
37852
|
+
@open
|
|
37853
|
+
@complex model a365SpanOutputs extends auditData {
|
|
37854
|
+
}
|
|
37855
|
+
|
|
37856
|
+
/**
|
|
37857
|
+
* Audit data for AAD Risk Detection events.
|
|
37858
|
+
*/
|
|
37859
|
+
@open
|
|
37860
|
+
@complex model aadRiskDetectionAuditRecord extends auditData {
|
|
37861
|
+
}
|
|
37862
|
+
|
|
37606
37863
|
@complex model account {
|
|
37607
37864
|
actions: action[];
|
|
37608
37865
|
identifier: string;
|
|
@@ -37614,6 +37871,27 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37614
37871
|
trustedDomains: activeDirectoryDomainEvidence[];
|
|
37615
37872
|
}
|
|
37616
37873
|
|
|
37874
|
+
/**
|
|
37875
|
+
* Audit data for Advanced eDiscovery events.
|
|
37876
|
+
*/
|
|
37877
|
+
@open
|
|
37878
|
+
@complex model aedAuditRecord extends auditData {
|
|
37879
|
+
}
|
|
37880
|
+
|
|
37881
|
+
/**
|
|
37882
|
+
* Audit data for Agent Admin Activity events.
|
|
37883
|
+
*/
|
|
37884
|
+
@open
|
|
37885
|
+
@complex model agentAdminActivityRecord extends auditData {
|
|
37886
|
+
}
|
|
37887
|
+
|
|
37888
|
+
/**
|
|
37889
|
+
* Audit data for Agent Setting Admin Activity events.
|
|
37890
|
+
*/
|
|
37891
|
+
@open
|
|
37892
|
+
@complex model agentSettingAdminActivity extends auditData {
|
|
37893
|
+
}
|
|
37894
|
+
|
|
37617
37895
|
@complex model aiAgentEvidence extends alertEvidence {
|
|
37618
37896
|
agentId: string | null;
|
|
37619
37897
|
agentName: string | null;
|
|
@@ -37621,80 +37899,206 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37621
37899
|
instructions: string | null;
|
|
37622
37900
|
}
|
|
37623
37901
|
|
|
37624
|
-
|
|
37625
|
-
|
|
37626
|
-
|
|
37627
|
-
|
|
37628
|
-
|
|
37629
|
-
|
|
37630
|
-
@complex model alertEvidence {
|
|
37631
|
-
@computed createdDateTime: offsetDateTime;
|
|
37632
|
-
detailedRoles: string[] | null;
|
|
37633
|
-
remediationStatus: evidenceRemediationStatus;
|
|
37634
|
-
remediationStatusDetails: string | null;
|
|
37635
|
-
roles: evidenceRole[];
|
|
37636
|
-
tags: string[] | null;
|
|
37637
|
-
verdict: evidenceVerdict;
|
|
37902
|
+
/**
|
|
37903
|
+
* Audit data for AI App Interaction events.
|
|
37904
|
+
*/
|
|
37905
|
+
@open
|
|
37906
|
+
@complex model aiAppInteractionAuditRecord extends auditData {
|
|
37638
37907
|
}
|
|
37639
37908
|
|
|
37640
|
-
|
|
37641
|
-
|
|
37642
|
-
|
|
37643
|
-
|
|
37644
|
-
|
|
37909
|
+
/**
|
|
37910
|
+
* Audit data for AI Execute Tool events.
|
|
37911
|
+
*/
|
|
37912
|
+
@open
|
|
37913
|
+
@complex model aiExecuteToolAuditRecord extends auditData {
|
|
37645
37914
|
}
|
|
37646
37915
|
|
|
37647
|
-
|
|
37648
|
-
|
|
37649
|
-
|
|
37650
|
-
|
|
37651
|
-
|
|
37652
|
-
fileType: string | null;
|
|
37653
|
-
malwareFamily: string | null;
|
|
37654
|
-
sha256: string | null;
|
|
37655
|
-
tenantAllowBlockListDetailInfo: string | null;
|
|
37656
|
-
threatType: threatType | null;
|
|
37916
|
+
/**
|
|
37917
|
+
* Audit data for AI Interactions Change Notification events.
|
|
37918
|
+
*/
|
|
37919
|
+
@open
|
|
37920
|
+
@complex model aiInteractionsChangeNotificationAuditRecord extends auditData {
|
|
37657
37921
|
}
|
|
37658
37922
|
|
|
37659
|
-
|
|
37660
|
-
|
|
37661
|
-
|
|
37662
|
-
|
|
37663
|
-
|
|
37923
|
+
/**
|
|
37924
|
+
* Audit data for AI Interactions Export events.
|
|
37925
|
+
*/
|
|
37926
|
+
@open
|
|
37927
|
+
@complex model aiInteractionsExportAuditRecord extends auditData {
|
|
37664
37928
|
}
|
|
37665
37929
|
|
|
37666
|
-
|
|
37667
|
-
|
|
37668
|
-
|
|
37669
|
-
|
|
37670
|
-
|
|
37930
|
+
/**
|
|
37931
|
+
* Audit data for AI Interactions Subscription events.
|
|
37932
|
+
*/
|
|
37933
|
+
@open
|
|
37934
|
+
@complex model aiInteractionsSubscriptionAuditRecord extends auditData {
|
|
37671
37935
|
}
|
|
37672
37936
|
|
|
37673
|
-
|
|
37674
|
-
|
|
37675
|
-
|
|
37937
|
+
/**
|
|
37938
|
+
* Audit data for AI Invoke Agent events.
|
|
37939
|
+
*/
|
|
37940
|
+
@open
|
|
37941
|
+
@complex model aiInvokeAgentAuditRecord extends auditData {
|
|
37676
37942
|
}
|
|
37677
37943
|
|
|
37678
|
-
|
|
37679
|
-
|
|
37680
|
-
|
|
37944
|
+
/**
|
|
37945
|
+
* Audit data for AIP Discover events.
|
|
37946
|
+
*/
|
|
37947
|
+
@open
|
|
37948
|
+
@complex model aipDiscover extends auditData {
|
|
37681
37949
|
}
|
|
37682
37950
|
|
|
37683
|
-
|
|
37684
|
-
|
|
37685
|
-
|
|
37951
|
+
/**
|
|
37952
|
+
* Audit data for AIP File Deleted events.
|
|
37953
|
+
*/
|
|
37954
|
+
@open
|
|
37955
|
+
@complex model aipFileDeleted extends auditData {
|
|
37686
37956
|
}
|
|
37687
37957
|
|
|
37688
|
-
|
|
37689
|
-
|
|
37690
|
-
|
|
37691
|
-
|
|
37692
|
-
|
|
37693
|
-
|
|
37694
|
-
|
|
37695
|
-
|
|
37696
|
-
|
|
37697
|
-
|
|
37958
|
+
/**
|
|
37959
|
+
* Audit data for AIP Heart Beat events.
|
|
37960
|
+
*/
|
|
37961
|
+
@open
|
|
37962
|
+
@complex model aipHeartBeat extends auditData {
|
|
37963
|
+
}
|
|
37964
|
+
|
|
37965
|
+
/**
|
|
37966
|
+
* Audit data for AIP Protection Action log request events.
|
|
37967
|
+
*/
|
|
37968
|
+
@open
|
|
37969
|
+
@complex model aipProtectionActionLogRequest extends auditData {
|
|
37970
|
+
}
|
|
37971
|
+
|
|
37972
|
+
/**
|
|
37973
|
+
* Audit data for AIP Scanner Discover Event events.
|
|
37974
|
+
*/
|
|
37975
|
+
@open
|
|
37976
|
+
@complex model aipScannerDiscoverEvent extends auditData {
|
|
37977
|
+
}
|
|
37978
|
+
|
|
37979
|
+
/**
|
|
37980
|
+
* Audit data for AIP Sensitivity Label Action log request events.
|
|
37981
|
+
*/
|
|
37982
|
+
@open
|
|
37983
|
+
@complex model aipSensitivityLabelActionLogRequest extends auditData {
|
|
37984
|
+
}
|
|
37985
|
+
|
|
37986
|
+
/**
|
|
37987
|
+
* Audit data for AIR Admin Action Investigation events.
|
|
37988
|
+
*/
|
|
37989
|
+
@open
|
|
37990
|
+
@complex model airAdminActionInvestigationData extends auditData {
|
|
37991
|
+
}
|
|
37992
|
+
|
|
37993
|
+
/**
|
|
37994
|
+
* Audit data for AIR Investigation events.
|
|
37995
|
+
*/
|
|
37996
|
+
@open
|
|
37997
|
+
@complex model airInvestigationData extends auditData {
|
|
37998
|
+
}
|
|
37999
|
+
|
|
38000
|
+
/**
|
|
38001
|
+
* Audit data for AIR Manual Investigation events.
|
|
38002
|
+
*/
|
|
38003
|
+
@open
|
|
38004
|
+
@complex model airManualInvestigationData extends auditData {
|
|
38005
|
+
}
|
|
38006
|
+
|
|
38007
|
+
/**
|
|
38008
|
+
* Audit data for AI Span Outputs events.
|
|
38009
|
+
*/
|
|
38010
|
+
@open
|
|
38011
|
+
@complex model aISpanOutputsAuditRecord extends auditData {
|
|
38012
|
+
}
|
|
38013
|
+
|
|
38014
|
+
@complex model alertComment {
|
|
38015
|
+
comment: string | null;
|
|
38016
|
+
createdByDisplayName: string | null;
|
|
38017
|
+
@computed createdDateTime: offsetDateTime;
|
|
38018
|
+
}
|
|
38019
|
+
|
|
38020
|
+
@complex model alertEvidence {
|
|
38021
|
+
@computed createdDateTime: offsetDateTime;
|
|
38022
|
+
detailedRoles: string[] | null;
|
|
38023
|
+
remediationStatus: evidenceRemediationStatus;
|
|
38024
|
+
remediationStatusDetails: string | null;
|
|
38025
|
+
roles: evidenceRole[];
|
|
38026
|
+
tags: string[] | null;
|
|
38027
|
+
verdict: evidenceVerdict;
|
|
38028
|
+
}
|
|
38029
|
+
|
|
38030
|
+
/**
|
|
38031
|
+
* Audit data for Alert Submission events.
|
|
38032
|
+
*/
|
|
38033
|
+
@open
|
|
38034
|
+
@complex model alertSubmissionAuditRecord extends auditData {
|
|
38035
|
+
}
|
|
38036
|
+
|
|
38037
|
+
/**
|
|
38038
|
+
* Audit data for Alert Submission Result Detail events.
|
|
38039
|
+
*/
|
|
38040
|
+
@open
|
|
38041
|
+
@complex model alertSubmissionResultDetailAuditRecord extends auditData {
|
|
38042
|
+
}
|
|
38043
|
+
|
|
38044
|
+
@complex model amazonResourceEvidence extends alertEvidence {
|
|
38045
|
+
amazonAccountId: string | null;
|
|
38046
|
+
amazonResourceId: string | null;
|
|
38047
|
+
resourceName: string | null;
|
|
38048
|
+
resourceType: string | null;
|
|
38049
|
+
}
|
|
38050
|
+
|
|
38051
|
+
@complex model analyzedEmailAttachment {
|
|
38052
|
+
detonationDetails: detonationDetails | null;
|
|
38053
|
+
fileExtension: string | null;
|
|
38054
|
+
fileName: string | null;
|
|
38055
|
+
fileSize: int32 | null;
|
|
38056
|
+
fileType: string | null;
|
|
38057
|
+
malwareFamily: string | null;
|
|
38058
|
+
sha256: string | null;
|
|
38059
|
+
tenantAllowBlockListDetailInfo: string | null;
|
|
38060
|
+
threatType: threatType | null;
|
|
38061
|
+
}
|
|
38062
|
+
|
|
38063
|
+
@complex model analyzedEmailAuthenticationDetail {
|
|
38064
|
+
compositeAuthentication: string | null;
|
|
38065
|
+
dkim: string | null;
|
|
38066
|
+
dmarc: string | null;
|
|
38067
|
+
senderPolicyFramework: string | null;
|
|
38068
|
+
}
|
|
38069
|
+
|
|
38070
|
+
@complex model analyzedEmailDeliveryDetail {
|
|
38071
|
+
action: deliveryAction | null;
|
|
38072
|
+
latestThreats: string | null;
|
|
38073
|
+
location: deliveryLocation | null;
|
|
38074
|
+
originalThreats: string | null;
|
|
38075
|
+
}
|
|
38076
|
+
|
|
38077
|
+
@complex model analyzedEmailDlpRuleInfo {
|
|
38078
|
+
name: string | null;
|
|
38079
|
+
ruleId: string | null;
|
|
38080
|
+
}
|
|
38081
|
+
|
|
38082
|
+
@complex model analyzedEmailExchangeTransportRuleInfo {
|
|
38083
|
+
name: string | null;
|
|
38084
|
+
ruleId: string | null;
|
|
38085
|
+
}
|
|
38086
|
+
|
|
38087
|
+
@complex model analyzedEmailRecipientDetail {
|
|
38088
|
+
ccRecipients: string[] | null;
|
|
38089
|
+
domainName: string | null;
|
|
38090
|
+
}
|
|
38091
|
+
|
|
38092
|
+
@complex model analyzedEmailSenderDetail {
|
|
38093
|
+
displayName: string | null;
|
|
38094
|
+
domainCreationDateTime: offsetDateTime | null;
|
|
38095
|
+
domainName: string | null;
|
|
38096
|
+
domainOwner: string | null;
|
|
38097
|
+
fromAddress: string | null;
|
|
38098
|
+
ipv4: string | null;
|
|
38099
|
+
location: string | null;
|
|
38100
|
+
mailFromAddress: string | null;
|
|
38101
|
+
mailFromDomainName: string | null;
|
|
37698
38102
|
}
|
|
37699
38103
|
|
|
37700
38104
|
@complex model analyzedEmailUrl {
|
|
@@ -37726,6 +38130,49 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37726
38130
|
urn: string | null;
|
|
37727
38131
|
}
|
|
37728
38132
|
|
|
38133
|
+
/**
|
|
38134
|
+
* Audit data for Attack Sim Admin events.
|
|
38135
|
+
*/
|
|
38136
|
+
@open
|
|
38137
|
+
@complex model attackSimAdminAuditRecord extends auditData {
|
|
38138
|
+
}
|
|
38139
|
+
|
|
38140
|
+
/**
|
|
38141
|
+
* Audit data for Attack Sim events.
|
|
38142
|
+
*/
|
|
38143
|
+
@open
|
|
38144
|
+
@complex model attackSimAuditRecord extends auditData {
|
|
38145
|
+
}
|
|
38146
|
+
|
|
38147
|
+
/**
|
|
38148
|
+
* Audit data for Audit Config events.
|
|
38149
|
+
*/
|
|
38150
|
+
@open
|
|
38151
|
+
@complex model auditConfigAuditRecord extends auditData {
|
|
38152
|
+
}
|
|
38153
|
+
|
|
38154
|
+
/**
|
|
38155
|
+
* Abstract base type for audit event data.
|
|
38156
|
+
*/
|
|
38157
|
+
@abstract
|
|
38158
|
+
@complex model auditData {
|
|
38159
|
+
dynamicProperties: auditRecordTypeDictionary | null;
|
|
38160
|
+
}
|
|
38161
|
+
|
|
38162
|
+
/**
|
|
38163
|
+
* A dictionary of name-value pairs for dynamic audit event properties.
|
|
38164
|
+
*/
|
|
38165
|
+
@open
|
|
38166
|
+
@complex model auditRecordTypeDictionary {
|
|
38167
|
+
}
|
|
38168
|
+
|
|
38169
|
+
/**
|
|
38170
|
+
* Audit data for Audit Search events.
|
|
38171
|
+
*/
|
|
38172
|
+
@open
|
|
38173
|
+
@complex model auditSearchAuditRecord extends auditData {
|
|
38174
|
+
}
|
|
38175
|
+
|
|
37729
38176
|
@complex model autonomousSystem {
|
|
37730
38177
|
name: string;
|
|
37731
38178
|
number: int32;
|
|
@@ -37733,6 +38180,55 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37733
38180
|
value: string;
|
|
37734
38181
|
}
|
|
37735
38182
|
|
|
38183
|
+
/**
|
|
38184
|
+
* Audit data for Azfw Application Rule Aggregation Event events.
|
|
38185
|
+
*/
|
|
38186
|
+
@open
|
|
38187
|
+
@complex model azfwApplicationRuleAggregationEventRecord extends auditData {
|
|
38188
|
+
}
|
|
38189
|
+
|
|
38190
|
+
/**
|
|
38191
|
+
* Audit data for Azfw Dns Query Event events.
|
|
38192
|
+
*/
|
|
38193
|
+
@open
|
|
38194
|
+
@complex model azfwDnsQueryEventRecord extends auditData {
|
|
38195
|
+
}
|
|
38196
|
+
|
|
38197
|
+
/**
|
|
38198
|
+
* Audit data for Azfw Network Rule Event events.
|
|
38199
|
+
*/
|
|
38200
|
+
@open
|
|
38201
|
+
@complex model azfwNetworkRuleEventRecord extends auditData {
|
|
38202
|
+
}
|
|
38203
|
+
|
|
38204
|
+
/**
|
|
38205
|
+
* Audit data for Azure Active Directory Account Logon events.
|
|
38206
|
+
*/
|
|
38207
|
+
@open
|
|
38208
|
+
@complex model azureActiveDirectoryAccountLogonAuditRecord extends auditData {
|
|
38209
|
+
}
|
|
38210
|
+
|
|
38211
|
+
/**
|
|
38212
|
+
* Audit data for Azure Active Directory events.
|
|
38213
|
+
*/
|
|
38214
|
+
@open
|
|
38215
|
+
@complex model azureActiveDirectoryAuditRecord extends auditData {
|
|
38216
|
+
}
|
|
38217
|
+
|
|
38218
|
+
/**
|
|
38219
|
+
* Audit data for Azure Active Directory STS Logon events.
|
|
38220
|
+
*/
|
|
38221
|
+
@open
|
|
38222
|
+
@complex model azureActiveDirectoryStsLogonAuditRecord extends auditData {
|
|
38223
|
+
}
|
|
38224
|
+
|
|
38225
|
+
/**
|
|
38226
|
+
* Audit data for Azure AI Search Audit events.
|
|
38227
|
+
*/
|
|
38228
|
+
@open
|
|
38229
|
+
@complex model azureAISearchAuditRecord extends auditData {
|
|
38230
|
+
}
|
|
38231
|
+
|
|
37736
38232
|
@complex model azureResourceEvidence extends alertEvidence {
|
|
37737
38233
|
resourceId: string | null;
|
|
37738
38234
|
resourceName: string | null;
|
|
@@ -37753,6 +38249,83 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37753
38249
|
url: string | null;
|
|
37754
38250
|
}
|
|
37755
38251
|
|
|
38252
|
+
/**
|
|
38253
|
+
* Audit data for threat campaign events.
|
|
38254
|
+
*/
|
|
38255
|
+
@open
|
|
38256
|
+
@complex model campaignAuditRecord extends auditData {
|
|
38257
|
+
}
|
|
38258
|
+
|
|
38259
|
+
/**
|
|
38260
|
+
* Audit data for CCRAI Policy Violation events.
|
|
38261
|
+
*/
|
|
38262
|
+
@open
|
|
38263
|
+
@complex model ccraiPolicyViolationRecord extends auditData {
|
|
38264
|
+
}
|
|
38265
|
+
|
|
38266
|
+
/**
|
|
38267
|
+
* Audit data for CDP Classifier Health events.
|
|
38268
|
+
*/
|
|
38269
|
+
@open
|
|
38270
|
+
@complex model cdpClassifierHealthRecord extends auditData {
|
|
38271
|
+
}
|
|
38272
|
+
|
|
38273
|
+
/**
|
|
38274
|
+
* Audit data for CDP Cold Crawl Status events.
|
|
38275
|
+
*/
|
|
38276
|
+
@open
|
|
38277
|
+
@complex model cdpColdCrawlStatusRecord extends auditData {
|
|
38278
|
+
}
|
|
38279
|
+
|
|
38280
|
+
/**
|
|
38281
|
+
* Audit data for CDP Consumption Resource events.
|
|
38282
|
+
*/
|
|
38283
|
+
@open
|
|
38284
|
+
@complex model cdpConsumptionResourceRecord extends auditData {
|
|
38285
|
+
}
|
|
38286
|
+
|
|
38287
|
+
/**
|
|
38288
|
+
* Audit data for CDP Content Explorer Aggregate events.
|
|
38289
|
+
*/
|
|
38290
|
+
@open
|
|
38291
|
+
@complex model cdpContentExplorerAggregateRecord extends auditData {
|
|
38292
|
+
}
|
|
38293
|
+
|
|
38294
|
+
/**
|
|
38295
|
+
* Audit data for Cdpdlmai Interaction Insights events.
|
|
38296
|
+
*/
|
|
38297
|
+
@open
|
|
38298
|
+
@complex model cdpdlmaiInteractionInsightsRecord extends auditData {
|
|
38299
|
+
}
|
|
38300
|
+
|
|
38301
|
+
/**
|
|
38302
|
+
* Audit data for CDP DLP Sensitive Endpoint events.
|
|
38303
|
+
*/
|
|
38304
|
+
@open
|
|
38305
|
+
@complex model cdpDlpSensitiveEndpointAuditRecord extends auditData {
|
|
38306
|
+
}
|
|
38307
|
+
|
|
38308
|
+
/**
|
|
38309
|
+
* Audit data for CDP Log events.
|
|
38310
|
+
*/
|
|
38311
|
+
@open
|
|
38312
|
+
@complex model cdpLogRecord extends auditData {
|
|
38313
|
+
}
|
|
38314
|
+
|
|
38315
|
+
/**
|
|
38316
|
+
* Audit data for CDP OCR Billing events.
|
|
38317
|
+
*/
|
|
38318
|
+
@open
|
|
38319
|
+
@complex model cdpOcrBillingRecord extends auditData {
|
|
38320
|
+
}
|
|
38321
|
+
|
|
38322
|
+
/**
|
|
38323
|
+
* Audit data for CDP Resource Scope Change Event events.
|
|
38324
|
+
*/
|
|
38325
|
+
@open
|
|
38326
|
+
@complex model cdpResourceScopeChangeEventRecord extends auditData {
|
|
38327
|
+
}
|
|
38328
|
+
|
|
37756
38329
|
@complex model cloudApplicationEvidence extends alertEvidence {
|
|
37757
38330
|
appId: int64 | null;
|
|
37758
38331
|
displayName: string | null;
|
|
@@ -37778,688 +38351,3047 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37778
38351
|
userAgent: string | null;
|
|
37779
38352
|
}
|
|
37780
38353
|
|
|
37781
|
-
|
|
37782
|
-
|
|
37783
|
-
|
|
38354
|
+
/**
|
|
38355
|
+
* Audit data for Cloud Update Device Config events.
|
|
38356
|
+
*/
|
|
38357
|
+
@open
|
|
38358
|
+
@complex model cloudUpdateDeviceConfigAuditRecord extends auditData {
|
|
37784
38359
|
}
|
|
37785
38360
|
|
|
37786
|
-
|
|
37787
|
-
|
|
37788
|
-
|
|
37789
|
-
|
|
37790
|
-
|
|
37791
|
-
|
|
37792
|
-
name: string | null;
|
|
37793
|
-
pod: kubernetesPodEvidence | null;
|
|
37794
|
-
}
|
|
38361
|
+
/**
|
|
38362
|
+
* Audit data for Cloud Update Profile Config events.
|
|
38363
|
+
*/
|
|
38364
|
+
@open
|
|
38365
|
+
@complex model cloudUpdateProfileConfigAuditRecord extends auditData {
|
|
38366
|
+
}
|
|
37795
38367
|
|
|
37796
|
-
|
|
37797
|
-
|
|
37798
|
-
|
|
37799
|
-
|
|
38368
|
+
/**
|
|
38369
|
+
* Audit data for Cloud Update Tenant Config events.
|
|
38370
|
+
*/
|
|
38371
|
+
@open
|
|
38372
|
+
@complex model cloudUpdateTenantConfigAuditRecord extends auditData {
|
|
37800
38373
|
}
|
|
37801
38374
|
|
|
37802
|
-
|
|
37803
|
-
|
|
38375
|
+
/**
|
|
38376
|
+
* Audit data for Compliance Connector events.
|
|
38377
|
+
*/
|
|
38378
|
+
@open
|
|
38379
|
+
@complex model complianceConnectorAuditRecord extends auditData {
|
|
37804
38380
|
}
|
|
37805
38381
|
|
|
37806
|
-
|
|
37807
|
-
|
|
37808
|
-
|
|
37809
|
-
|
|
38382
|
+
/**
|
|
38383
|
+
* Audit data for Compliance DLM Exchange events.
|
|
38384
|
+
*/
|
|
38385
|
+
@open
|
|
38386
|
+
@complex model complianceDLMExchangeAuditRecord extends auditData {
|
|
37810
38387
|
}
|
|
37811
38388
|
|
|
37812
|
-
|
|
37813
|
-
|
|
38389
|
+
/**
|
|
38390
|
+
* Audit data for Compliance DLM SharePoint events.
|
|
38391
|
+
*/
|
|
38392
|
+
@open
|
|
38393
|
+
@complex model complianceDLMSharePointAuditRecord extends auditData {
|
|
37814
38394
|
}
|
|
37815
38395
|
|
|
37816
|
-
|
|
37817
|
-
|
|
37818
|
-
|
|
37819
|
-
|
|
37820
|
-
|
|
37821
|
-
details: string | null;
|
|
37822
|
-
eventDateTime: offsetDateTime | null;
|
|
37823
|
-
operation: string | null;
|
|
37824
|
-
processId: string | null;
|
|
37825
|
-
processName: string | null;
|
|
37826
|
-
target: string | null;
|
|
38396
|
+
/**
|
|
38397
|
+
* Audit data for Compliance DLP Applications events.
|
|
38398
|
+
*/
|
|
38399
|
+
@open
|
|
38400
|
+
@complex model complianceDLPApplicationsAuditRecord extends auditData {
|
|
37827
38401
|
}
|
|
37828
38402
|
|
|
37829
|
-
|
|
37830
|
-
|
|
37831
|
-
|
|
38403
|
+
/**
|
|
38404
|
+
* Audit data for Compliance DLP Applications Classification events.
|
|
38405
|
+
*/
|
|
38406
|
+
@open
|
|
38407
|
+
@complex model complianceDLPApplicationsClassificationAuditRecord extends auditData {
|
|
37832
38408
|
}
|
|
37833
38409
|
|
|
37834
|
-
|
|
37835
|
-
|
|
37836
|
-
|
|
37837
|
-
|
|
37838
|
-
|
|
37839
|
-
detonationChain: detonationChain | null;
|
|
37840
|
-
detonationObservables: detonationObservables | null;
|
|
37841
|
-
detonationScreenshotUri: string | null;
|
|
37842
|
-
detonationVerdict: string | null;
|
|
37843
|
-
detonationVerdictReason: string | null;
|
|
37844
|
-
entityMetadata: string | null;
|
|
37845
|
-
mitreTechniques: string | null;
|
|
37846
|
-
staticAnalysis: string | null;
|
|
37847
|
-
submissionSource: string | null;
|
|
38410
|
+
/**
|
|
38411
|
+
* Audit data for Compliance DLP Endpoint events.
|
|
38412
|
+
*/
|
|
38413
|
+
@open
|
|
38414
|
+
@complex model complianceDLPEndpointAuditRecord extends auditData {
|
|
37848
38415
|
}
|
|
37849
38416
|
|
|
37850
|
-
|
|
37851
|
-
|
|
37852
|
-
|
|
37853
|
-
|
|
38417
|
+
/**
|
|
38418
|
+
* Audit data for Compliance DLP Endpoint Discovery events.
|
|
38419
|
+
*/
|
|
38420
|
+
@open
|
|
38421
|
+
@complex model complianceDLPEndpointDiscoveryAuditRecord extends auditData {
|
|
37854
38422
|
}
|
|
37855
38423
|
|
|
37856
|
-
|
|
37857
|
-
|
|
37858
|
-
|
|
37859
|
-
|
|
37860
|
-
|
|
37861
|
-
firstSeenDateTime: offsetDateTime | null;
|
|
37862
|
-
healthStatus: deviceHealthStatus | null;
|
|
37863
|
-
hostName: string | null;
|
|
37864
|
-
ipInterfaces: string[] | null;
|
|
37865
|
-
lastExternalIpAddress: string | null;
|
|
37866
|
-
lastIpAddress: string | null;
|
|
37867
|
-
loggedOnUsers: loggedOnUser[] | null;
|
|
37868
|
-
mdeDeviceId: string | null;
|
|
37869
|
-
ntDomain: string | null;
|
|
37870
|
-
onboardingStatus: onboardingStatus | null;
|
|
37871
|
-
osBuild: int64 | null;
|
|
37872
|
-
osPlatform: string | null;
|
|
37873
|
-
rbacGroupId: int32 | null;
|
|
37874
|
-
rbacGroupName: string | null;
|
|
37875
|
-
resourceAccessEvents: resourceAccessEvent[] | null;
|
|
37876
|
-
riskScore: deviceRiskScore | null;
|
|
37877
|
-
version: string | null;
|
|
37878
|
-
vmMetadata: vmMetadata | null;
|
|
38424
|
+
/**
|
|
38425
|
+
* Audit data for Compliance DLP Enforcement events.
|
|
38426
|
+
*/
|
|
38427
|
+
@open
|
|
38428
|
+
@complex model complianceDLPEnforcementAuditRecord extends auditData {
|
|
37879
38429
|
}
|
|
37880
38430
|
|
|
38431
|
+
/**
|
|
38432
|
+
* Audit data for Compliance DLP Exchange events.
|
|
38433
|
+
*/
|
|
37881
38434
|
@open
|
|
37882
|
-
@complex model
|
|
38435
|
+
@complex model complianceDLPExchangeAuditRecord extends auditData {
|
|
37883
38436
|
}
|
|
37884
38437
|
|
|
37885
|
-
|
|
37886
|
-
|
|
37887
|
-
|
|
37888
|
-
|
|
37889
|
-
|
|
38438
|
+
/**
|
|
38439
|
+
* Audit data for Compliance DLP Exchange Classification events.
|
|
38440
|
+
*/
|
|
38441
|
+
@open
|
|
38442
|
+
@complex model complianceDLPExchangeClassificationAuditRecord extends auditData {
|
|
37890
38443
|
}
|
|
37891
38444
|
|
|
38445
|
+
/**
|
|
38446
|
+
* Audit data for Compliance DLP Exchange Classification CDP events.
|
|
38447
|
+
*/
|
|
37892
38448
|
@open
|
|
37893
|
-
@complex model
|
|
38449
|
+
@complex model complianceDLPExchangeClassificationCdpRecord extends auditData {
|
|
37894
38450
|
}
|
|
37895
38451
|
|
|
37896
|
-
|
|
37897
|
-
|
|
37898
|
-
|
|
37899
|
-
|
|
38452
|
+
/**
|
|
38453
|
+
* Audit data for Compliance DLP Exchange Discovery events.
|
|
38454
|
+
*/
|
|
38455
|
+
@open
|
|
38456
|
+
@complex model complianceDLPExchangeDiscoveryAuditRecord extends auditData {
|
|
37900
38457
|
}
|
|
37901
38458
|
|
|
37902
|
-
|
|
37903
|
-
|
|
37904
|
-
|
|
37905
|
-
|
|
37906
|
-
|
|
38459
|
+
/**
|
|
38460
|
+
* Audit data for Compliance DLP SharePoint events.
|
|
38461
|
+
*/
|
|
38462
|
+
@open
|
|
38463
|
+
@complex model complianceDLPSharePointAuditRecord extends auditData {
|
|
37907
38464
|
}
|
|
37908
38465
|
|
|
37909
|
-
|
|
37910
|
-
|
|
37911
|
-
|
|
38466
|
+
/**
|
|
38467
|
+
* Audit data for Compliance DLP SharePoint Classification events.
|
|
38468
|
+
*/
|
|
38469
|
+
@open
|
|
38470
|
+
@complex model complianceDLPSharePointClassificationAuditRecord extends auditData {
|
|
37912
38471
|
}
|
|
37913
38472
|
|
|
37914
|
-
|
|
37915
|
-
|
|
37916
|
-
|
|
37917
|
-
|
|
38473
|
+
/**
|
|
38474
|
+
* Audit data for Compliance DLP SharePoint Classification CDP events.
|
|
38475
|
+
*/
|
|
38476
|
+
@open
|
|
38477
|
+
@complex model complianceDLPSharePointClassificationCdpRecord extends auditData {
|
|
37918
38478
|
}
|
|
37919
38479
|
|
|
37920
|
-
|
|
37921
|
-
|
|
37922
|
-
|
|
37923
|
-
|
|
37924
|
-
|
|
37925
|
-
issuer: string | null;
|
|
37926
|
-
md5: string | null;
|
|
37927
|
-
sha1: string | null;
|
|
37928
|
-
sha256: string | null;
|
|
37929
|
-
sha256Ac: string | null;
|
|
37930
|
-
signer: string | null;
|
|
38480
|
+
/**
|
|
38481
|
+
* Audit data for Compliance DLP SharePoint Classification Extended events.
|
|
38482
|
+
*/
|
|
38483
|
+
@open
|
|
38484
|
+
@complex model complianceDLPSharePointClassificationExtendedAuditRecord extends auditData {
|
|
37931
38485
|
}
|
|
37932
38486
|
|
|
37933
|
-
|
|
37934
|
-
|
|
37935
|
-
|
|
37936
|
-
|
|
38487
|
+
/**
|
|
38488
|
+
* Audit data for Compliance Exchange OCR events.
|
|
38489
|
+
*/
|
|
38490
|
+
@open
|
|
38491
|
+
@complex model complianceExchangeOcrAuditRecord extends auditData {
|
|
37937
38492
|
}
|
|
37938
38493
|
|
|
37939
|
-
|
|
37940
|
-
|
|
37941
|
-
|
|
38494
|
+
/**
|
|
38495
|
+
* Audit data for Compliance Manager Action events.
|
|
38496
|
+
*/
|
|
38497
|
+
@open
|
|
38498
|
+
@complex model complianceManagerActionRecord extends auditData {
|
|
37942
38499
|
}
|
|
37943
38500
|
|
|
37944
|
-
|
|
37945
|
-
|
|
37946
|
-
|
|
38501
|
+
/**
|
|
38502
|
+
* Audit data for Compliance Policy Grading SharePoint events.
|
|
38503
|
+
*/
|
|
38504
|
+
@open
|
|
38505
|
+
@complex model compliancePolicyGradingSharePointAuditRecord extends auditData {
|
|
37947
38506
|
}
|
|
37948
38507
|
|
|
37949
|
-
|
|
37950
|
-
|
|
38508
|
+
/**
|
|
38509
|
+
* Audit data for Compliance Settings Change events.
|
|
38510
|
+
*/
|
|
38511
|
+
@open
|
|
38512
|
+
@complex model complianceSettingsChangeAuditRecord extends auditData {
|
|
37951
38513
|
}
|
|
37952
38514
|
|
|
37953
|
-
|
|
38515
|
+
/**
|
|
38516
|
+
* Audit data for Compliance SIT Grading SharePoint events.
|
|
38517
|
+
*/
|
|
38518
|
+
@open
|
|
38519
|
+
@complex model complianceSitGradingSharePointAuditRecord extends auditData {
|
|
37954
38520
|
}
|
|
37955
38521
|
|
|
37956
|
-
|
|
37957
|
-
|
|
37958
|
-
|
|
38522
|
+
/**
|
|
38523
|
+
* Audit data for Compliance Supervision Exchange events.
|
|
38524
|
+
*/
|
|
38525
|
+
@open
|
|
38526
|
+
@complex model complianceSupervisionExchangeAuditRecord extends auditData {
|
|
37959
38527
|
}
|
|
37960
38528
|
|
|
37961
|
-
@complex model
|
|
38529
|
+
@complex model compromiseIndicator {
|
|
38530
|
+
value: string | null;
|
|
38531
|
+
verdict: verdictCategory | null;
|
|
37962
38532
|
}
|
|
37963
38533
|
|
|
37964
|
-
|
|
37965
|
-
|
|
38534
|
+
/**
|
|
38535
|
+
* Audit data for Connected AI App Interaction events.
|
|
38536
|
+
*/
|
|
38537
|
+
@open
|
|
38538
|
+
@complex model connectedAIAppInteractionAuditRecord extends auditData {
|
|
37966
38539
|
}
|
|
37967
38540
|
|
|
37968
|
-
|
|
38541
|
+
/**
|
|
38542
|
+
* Audit data for Consumption Resource events.
|
|
38543
|
+
*/
|
|
38544
|
+
@open
|
|
38545
|
+
@complex model consumptionResourceAuditRecord extends auditData {
|
|
37969
38546
|
}
|
|
37970
38547
|
|
|
37971
|
-
@complex model
|
|
38548
|
+
@complex model containerEvidence extends alertEvidence {
|
|
38549
|
+
args: string[] | null;
|
|
38550
|
+
command: string[] | null;
|
|
38551
|
+
containerId: string | null;
|
|
38552
|
+
image: containerImageEvidence | null;
|
|
38553
|
+
isPrivileged: boolean;
|
|
38554
|
+
name: string | null;
|
|
38555
|
+
pod: kubernetesPodEvidence | null;
|
|
37972
38556
|
}
|
|
37973
38557
|
|
|
37974
|
-
@complex model
|
|
37975
|
-
|
|
37976
|
-
|
|
38558
|
+
@complex model containerImageEvidence extends alertEvidence {
|
|
38559
|
+
digestImage: containerImageEvidence | null;
|
|
38560
|
+
imageId: string | null;
|
|
38561
|
+
registry: containerRegistryEvidence | null;
|
|
37977
38562
|
}
|
|
37978
38563
|
|
|
37979
|
-
@complex model
|
|
37980
|
-
|
|
37981
|
-
countryName: string | null;
|
|
37982
|
-
latitude: float64 | null;
|
|
37983
|
-
longitude: float64 | null;
|
|
37984
|
-
state: string | null;
|
|
38564
|
+
@complex model containerRegistryEvidence extends alertEvidence {
|
|
38565
|
+
registry: string | null;
|
|
37985
38566
|
}
|
|
37986
38567
|
|
|
37987
|
-
|
|
37988
|
-
|
|
37989
|
-
|
|
37990
|
-
|
|
37991
|
-
|
|
37992
|
-
orgId: string | null;
|
|
37993
|
-
webUrl: string | null;
|
|
38568
|
+
/**
|
|
38569
|
+
* Audit data for Content Store Meta events.
|
|
38570
|
+
*/
|
|
38571
|
+
@open
|
|
38572
|
+
@complex model contentStoreMetadataRecord extends auditData {
|
|
37994
38573
|
}
|
|
37995
38574
|
|
|
37996
|
-
|
|
37997
|
-
|
|
37998
|
-
|
|
37999
|
-
|
|
38000
|
-
|
|
38001
|
-
repoId: string | null;
|
|
38575
|
+
/**
|
|
38576
|
+
* Audit data for Copilot Agent Management events.
|
|
38577
|
+
*/
|
|
38578
|
+
@open
|
|
38579
|
+
@complex model copilotAgentManagementAuditRecord extends auditData {
|
|
38002
38580
|
}
|
|
38003
38581
|
|
|
38004
|
-
|
|
38005
|
-
|
|
38006
|
-
|
|
38007
|
-
|
|
38008
|
-
|
|
38009
|
-
webUrl: string | null;
|
|
38582
|
+
/**
|
|
38583
|
+
* Audit data for Copilot for Security Logging events.
|
|
38584
|
+
*/
|
|
38585
|
+
@open
|
|
38586
|
+
@complex model copilotForSecurityLoggingAuditRecord extends auditData {
|
|
38010
38587
|
}
|
|
38011
38588
|
|
|
38012
|
-
|
|
38013
|
-
|
|
38014
|
-
|
|
38015
|
-
|
|
38016
|
-
|
|
38017
|
-
projectNumber: int64 | null;
|
|
38018
|
-
resourceName: string | null;
|
|
38019
|
-
resourceType: string | null;
|
|
38589
|
+
/**
|
|
38590
|
+
* Audit data for Copilot for Security Trigger events.
|
|
38591
|
+
*/
|
|
38592
|
+
@open
|
|
38593
|
+
@complex model copilotForSecurityTriggerAuditRecord extends auditData {
|
|
38020
38594
|
}
|
|
38021
38595
|
|
|
38022
|
-
|
|
38023
|
-
|
|
38024
|
-
|
|
38025
|
-
|
|
38026
|
-
|
|
38027
|
-
startUtcDateTime: offsetDateTime | null;
|
|
38596
|
+
/**
|
|
38597
|
+
* Audit data for Copilot Interaction events.
|
|
38598
|
+
*/
|
|
38599
|
+
@open
|
|
38600
|
+
@complex model copilotInteractionAuditRecord extends auditData {
|
|
38028
38601
|
}
|
|
38029
38602
|
|
|
38030
|
-
|
|
38031
|
-
|
|
38032
|
-
|
|
38033
|
-
|
|
38034
|
-
|
|
38035
|
-
timesObserved: int32 | null;
|
|
38603
|
+
/**
|
|
38604
|
+
* Audit data for Copilot Plugin Setting events.
|
|
38605
|
+
*/
|
|
38606
|
+
@open
|
|
38607
|
+
@complex model copilotPluginSettingAuditRecord extends auditData {
|
|
38036
38608
|
}
|
|
38037
38609
|
|
|
38038
|
-
|
|
38039
|
-
|
|
38040
|
-
|
|
38041
|
-
|
|
38042
|
-
|
|
38610
|
+
/**
|
|
38611
|
+
* Audit data for Copilot Prompt Book Setting events.
|
|
38612
|
+
*/
|
|
38613
|
+
@open
|
|
38614
|
+
@complex model copilotPromptBookSettingAuditRecord extends auditData {
|
|
38043
38615
|
}
|
|
38044
38616
|
|
|
38045
|
-
|
|
38046
|
-
|
|
38047
|
-
|
|
38048
|
-
|
|
38049
|
-
|
|
38617
|
+
/**
|
|
38618
|
+
* Audit data for Copilot Session Sharing events.
|
|
38619
|
+
*/
|
|
38620
|
+
@open
|
|
38621
|
+
@complex model copilotSessionSharingAuditRecord extends auditData {
|
|
38050
38622
|
}
|
|
38051
38623
|
|
|
38052
|
-
|
|
38053
|
-
|
|
38054
|
-
|
|
38055
|
-
|
|
38624
|
+
/**
|
|
38625
|
+
* Audit data for Copilot Setting events.
|
|
38626
|
+
*/
|
|
38627
|
+
@open
|
|
38628
|
+
@complex model copilotSettingAuditRecord extends auditData {
|
|
38056
38629
|
}
|
|
38057
38630
|
|
|
38058
|
-
|
|
38059
|
-
|
|
38060
|
-
|
|
38631
|
+
/**
|
|
38632
|
+
* Audit data for Copilot Workspace Setting events.
|
|
38633
|
+
*/
|
|
38634
|
+
@open
|
|
38635
|
+
@complex model copilotWorkspaceSettingAuditRecord extends auditData {
|
|
38061
38636
|
}
|
|
38062
38637
|
|
|
38638
|
+
/**
|
|
38639
|
+
* Audit data for Core Reporting Settings events.
|
|
38640
|
+
*/
|
|
38063
38641
|
@open
|
|
38064
|
-
@complex model
|
|
38642
|
+
@complex model coreReportingSettingsAuditRecord extends auditData {
|
|
38065
38643
|
}
|
|
38066
38644
|
|
|
38067
|
-
|
|
38068
|
-
|
|
38069
|
-
|
|
38645
|
+
/**
|
|
38646
|
+
* Audit data for Cortana Briefing events.
|
|
38647
|
+
*/
|
|
38648
|
+
@open
|
|
38649
|
+
@complex model cortanaBriefingAuditRecord extends auditData {
|
|
38070
38650
|
}
|
|
38071
38651
|
|
|
38072
|
-
|
|
38073
|
-
|
|
38074
|
-
|
|
38652
|
+
/**
|
|
38653
|
+
* Audit data for Critical Asset Management Classification events.
|
|
38654
|
+
*/
|
|
38655
|
+
@open
|
|
38656
|
+
@complex model criticalAssetManagementClassificationRecord extends auditData {
|
|
38075
38657
|
}
|
|
38076
38658
|
|
|
38077
|
-
|
|
38078
|
-
|
|
38079
|
-
|
|
38080
|
-
|
|
38081
|
-
|
|
38659
|
+
/**
|
|
38660
|
+
* Audit data for CRM Entity Operation events.
|
|
38661
|
+
*/
|
|
38662
|
+
@open
|
|
38663
|
+
@complex model crmEntityOperationAuditRecord extends auditData {
|
|
38082
38664
|
}
|
|
38083
38665
|
|
|
38084
|
-
|
|
38085
|
-
|
|
38086
|
-
|
|
38087
|
-
|
|
38088
|
-
|
|
38089
|
-
deviceType: string | null;
|
|
38090
|
-
importance: ioTDeviceImportanceType | null;
|
|
38091
|
-
ioTHub: azureResourceEvidence | null;
|
|
38092
|
-
ioTSecurityAgentId: string | null;
|
|
38093
|
-
ipAddress: ipEvidence | null;
|
|
38094
|
-
isAuthorized: boolean | null;
|
|
38095
|
-
isProgramming: boolean | null;
|
|
38096
|
-
isScanner: boolean | null;
|
|
38097
|
-
macAddress: string | null;
|
|
38098
|
-
manufacturer: string | null;
|
|
38099
|
-
`model`: string | null;
|
|
38100
|
-
nics: nicEvidence[] | null;
|
|
38101
|
-
operatingSystem: string | null;
|
|
38102
|
-
owners: string[] | null;
|
|
38103
|
-
protocols: string[] | null;
|
|
38104
|
-
purdueLayer: string | null;
|
|
38105
|
-
sensor: string | null;
|
|
38106
|
-
serialNumber: string | null;
|
|
38107
|
-
site: string | null;
|
|
38108
|
-
source: string | null;
|
|
38109
|
-
sourceRef: urlEvidence | null;
|
|
38110
|
-
zone: string | null;
|
|
38666
|
+
/**
|
|
38667
|
+
* Audit data for Cross Tenant Access Policy events.
|
|
38668
|
+
*/
|
|
38669
|
+
@open
|
|
38670
|
+
@complex model crossTenantAccessPolicyAuditRecord extends auditData {
|
|
38111
38671
|
}
|
|
38112
38672
|
|
|
38113
|
-
|
|
38114
|
-
|
|
38115
|
-
|
|
38116
|
-
|
|
38117
|
-
|
|
38673
|
+
/**
|
|
38674
|
+
* Audit data for Customer Key Service Encryption events.
|
|
38675
|
+
*/
|
|
38676
|
+
@open
|
|
38677
|
+
@complex model customerKeyServiceEncryptionAuditRecord extends auditData {
|
|
38118
38678
|
}
|
|
38119
38679
|
|
|
38120
|
-
@complex model
|
|
38121
|
-
|
|
38122
|
-
|
|
38123
|
-
|
|
38124
|
-
platform: kubernetesPlatform | null;
|
|
38125
|
-
version: string | null;
|
|
38680
|
+
@complex model cvssSummary {
|
|
38681
|
+
score: float64;
|
|
38682
|
+
severity: vulnerabilitySeverity | null;
|
|
38683
|
+
vectorString: string | null;
|
|
38126
38684
|
}
|
|
38127
38685
|
|
|
38128
|
-
|
|
38129
|
-
|
|
38130
|
-
|
|
38131
|
-
|
|
38132
|
-
|
|
38686
|
+
/**
|
|
38687
|
+
* Audit data for Data Center Security cmdlet events.
|
|
38688
|
+
*/
|
|
38689
|
+
@open
|
|
38690
|
+
@complex model dataCenterSecurityCmdletAuditRecord extends auditData {
|
|
38133
38691
|
}
|
|
38134
38692
|
|
|
38135
|
-
|
|
38136
|
-
|
|
38137
|
-
|
|
38138
|
-
|
|
38693
|
+
/**
|
|
38694
|
+
* Audit data for Data Governance events.
|
|
38695
|
+
*/
|
|
38696
|
+
@open
|
|
38697
|
+
@complex model dataGovernanceAuditRecord extends auditData {
|
|
38139
38698
|
}
|
|
38140
38699
|
|
|
38141
|
-
|
|
38142
|
-
|
|
38143
|
-
|
|
38144
|
-
|
|
38145
|
-
|
|
38146
|
-
labels: dictionary | null;
|
|
38147
|
-
name: string | null;
|
|
38148
|
-
`namespace`: kubernetesNamespaceEvidence | null;
|
|
38149
|
-
podIp: ipEvidence | null;
|
|
38150
|
-
serviceAccount: kubernetesServiceAccountEvidence | null;
|
|
38700
|
+
/**
|
|
38701
|
+
* Audit data for Data Insights Rest Api events.
|
|
38702
|
+
*/
|
|
38703
|
+
@open
|
|
38704
|
+
@complex model dataInsightsRestApiAuditRecord extends auditData {
|
|
38151
38705
|
}
|
|
38152
38706
|
|
|
38153
|
-
|
|
38154
|
-
|
|
38155
|
-
|
|
38156
|
-
|
|
38707
|
+
/**
|
|
38708
|
+
* Audit data for Data Lake Export Operation events.
|
|
38709
|
+
*/
|
|
38710
|
+
@open
|
|
38711
|
+
@complex model dataLakeExportOperationAuditRecord extends auditData {
|
|
38157
38712
|
}
|
|
38158
38713
|
|
|
38159
|
-
|
|
38160
|
-
|
|
38161
|
-
|
|
38714
|
+
/**
|
|
38715
|
+
* Audit data for Data Security Investigation events.
|
|
38716
|
+
*/
|
|
38717
|
+
@open
|
|
38718
|
+
@complex model dataSecurityInvestigationAuditRecord extends auditData {
|
|
38162
38719
|
}
|
|
38163
38720
|
|
|
38164
|
-
|
|
38165
|
-
|
|
38166
|
-
|
|
38167
|
-
|
|
38168
|
-
|
|
38169
|
-
`namespace`: kubernetesNamespaceEvidence | null;
|
|
38170
|
-
selector: dictionary | null;
|
|
38171
|
-
servicePorts: kubernetesServicePort[] | null;
|
|
38172
|
-
serviceType: kubernetesServiceType;
|
|
38721
|
+
/**
|
|
38722
|
+
* Audit data for Data Share Operation events.
|
|
38723
|
+
*/
|
|
38724
|
+
@open
|
|
38725
|
+
@complex model dataShareOperationAuditRecord extends auditData {
|
|
38173
38726
|
}
|
|
38174
38727
|
|
|
38175
|
-
|
|
38176
|
-
|
|
38177
|
-
|
|
38178
|
-
|
|
38179
|
-
|
|
38180
|
-
protocol: containerPortProtocol | null;
|
|
38181
|
-
targetPort: string | null;
|
|
38728
|
+
/**
|
|
38729
|
+
* Default open-type audit data when no specific subtype applies.
|
|
38730
|
+
*/
|
|
38731
|
+
@open
|
|
38732
|
+
@complex model defaultAuditData extends auditData {
|
|
38182
38733
|
}
|
|
38183
38734
|
|
|
38184
|
-
|
|
38185
|
-
|
|
38186
|
-
|
|
38735
|
+
/**
|
|
38736
|
+
* Audit data for Defender Case Management events.
|
|
38737
|
+
*/
|
|
38738
|
+
@open
|
|
38739
|
+
@complex model defenderCaseManagementAuditRecord extends auditData {
|
|
38187
38740
|
}
|
|
38188
38741
|
|
|
38189
|
-
|
|
38190
|
-
|
|
38191
|
-
|
|
38192
|
-
|
|
38193
|
-
|
|
38194
|
-
mailboxPrimaryAddress: string | null;
|
|
38195
|
-
upn: string | null;
|
|
38742
|
+
/**
|
|
38743
|
+
* Audit data for Defender Preview Features events.
|
|
38744
|
+
*/
|
|
38745
|
+
@open
|
|
38746
|
+
@complex model defenderPreviewFeaturesRecord extends auditData {
|
|
38196
38747
|
}
|
|
38197
38748
|
|
|
38198
|
-
|
|
38199
|
-
|
|
38200
|
-
|
|
38201
|
-
|
|
38202
|
-
|
|
38749
|
+
/**
|
|
38750
|
+
* Audit data for Defender Security for AI Configuration events.
|
|
38751
|
+
*/
|
|
38752
|
+
@open
|
|
38753
|
+
@complex model defenderSecurityForAIConfigurationAuditRecord extends auditData {
|
|
38203
38754
|
}
|
|
38204
38755
|
|
|
38205
|
-
|
|
38206
|
-
|
|
38207
|
-
|
|
38208
|
-
|
|
38209
|
-
|
|
38210
|
-
query: string | null;
|
|
38211
|
-
urn: string | null;
|
|
38756
|
+
/**
|
|
38757
|
+
* Audit data for Deploy Feature Activity events.
|
|
38758
|
+
*/
|
|
38759
|
+
@open
|
|
38760
|
+
@complex model deployFeatureActivityRecord extends auditData {
|
|
38212
38761
|
}
|
|
38213
38762
|
|
|
38214
|
-
@complex model
|
|
38215
|
-
|
|
38216
|
-
files: fileEvidence[] | null;
|
|
38217
|
-
name: string | null;
|
|
38218
|
-
processes: processEvidence[] | null;
|
|
38763
|
+
@complex model deploymentAccessKeyType {
|
|
38764
|
+
deploymentAccessKey: string;
|
|
38219
38765
|
}
|
|
38220
38766
|
|
|
38221
|
-
@
|
|
38222
|
-
|
|
38767
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
38768
|
+
@complex model detonationBehaviourDetails {
|
|
38769
|
+
actionStatus: string | null;
|
|
38770
|
+
behaviourCapability: string | null;
|
|
38771
|
+
behaviourGroup: string | null;
|
|
38772
|
+
details: string | null;
|
|
38773
|
+
eventDateTime: offsetDateTime | null;
|
|
38774
|
+
operation: string | null;
|
|
38775
|
+
processId: string | null;
|
|
38776
|
+
processName: string | null;
|
|
38777
|
+
target: string | null;
|
|
38223
38778
|
}
|
|
38224
38779
|
|
|
38225
|
-
@complex model
|
|
38226
|
-
|
|
38227
|
-
|
|
38228
|
-
protocol: protocolType | null;
|
|
38229
|
-
sourceAddress: ipEvidence | null;
|
|
38230
|
-
sourcePort: int32 | null;
|
|
38780
|
+
@complex model detonationChain {
|
|
38781
|
+
childNodes: detonationChain[] | null;
|
|
38782
|
+
value: string | null;
|
|
38231
38783
|
}
|
|
38232
38784
|
|
|
38233
|
-
@complex model
|
|
38234
|
-
|
|
38235
|
-
|
|
38236
|
-
|
|
38785
|
+
@complex model detonationDetails {
|
|
38786
|
+
analysisDateTime: offsetDateTime | null;
|
|
38787
|
+
compromiseIndicators: compromiseIndicator[] | null;
|
|
38788
|
+
detonationBehaviourDetails: detonationBehaviourDetails | null;
|
|
38789
|
+
detonationBehaviourDetailsV2: string | null;
|
|
38790
|
+
detonationChain: detonationChain | null;
|
|
38791
|
+
detonationObservables: detonationObservables | null;
|
|
38792
|
+
detonationScreenshotUri: string | null;
|
|
38793
|
+
detonationVerdict: string | null;
|
|
38794
|
+
detonationVerdictReason: string | null;
|
|
38795
|
+
entityMetadata: string | null;
|
|
38796
|
+
mitreTechniques: string | null;
|
|
38797
|
+
staticAnalysis: string | null;
|
|
38798
|
+
submissionSource: string | null;
|
|
38237
38799
|
}
|
|
38238
38800
|
|
|
38239
|
-
@complex model
|
|
38240
|
-
|
|
38241
|
-
|
|
38242
|
-
|
|
38243
|
-
publisher: string | null;
|
|
38801
|
+
@complex model detonationObservables {
|
|
38802
|
+
contactedIps: string[] | null;
|
|
38803
|
+
contactedUrls: string[] | null;
|
|
38804
|
+
droppedfiles: string[] | null;
|
|
38244
38805
|
}
|
|
38245
38806
|
|
|
38246
|
-
|
|
38247
|
-
|
|
38248
|
-
|
|
38249
|
-
|
|
38807
|
+
/**
|
|
38808
|
+
* Audit data for Device Discovery Settings Authenticated Scans events.
|
|
38809
|
+
*/
|
|
38810
|
+
@open
|
|
38811
|
+
@complex model deviceDiscoverySettingsAuthenticatedScansRecord extends auditData {
|
|
38250
38812
|
}
|
|
38251
38813
|
|
|
38252
|
-
|
|
38253
|
-
|
|
38254
|
-
|
|
38814
|
+
/**
|
|
38815
|
+
* Audit data for Device Discovery Settings Exclusion events.
|
|
38816
|
+
*/
|
|
38817
|
+
@open
|
|
38818
|
+
@complex model deviceDiscoverySettingsExclusionRecord extends auditData {
|
|
38819
|
+
}
|
|
38820
|
+
|
|
38821
|
+
/**
|
|
38822
|
+
* Audit data for Device Discovery Settings events.
|
|
38823
|
+
*/
|
|
38824
|
+
@open
|
|
38825
|
+
@complex model deviceDiscoverySettingsRecord extends auditData {
|
|
38826
|
+
}
|
|
38827
|
+
|
|
38828
|
+
@complex model deviceEvidence extends alertEvidence {
|
|
38829
|
+
azureAdDeviceId: string | null;
|
|
38830
|
+
defenderAvStatus: defenderAvStatus | null;
|
|
38831
|
+
deviceDnsName: string | null;
|
|
38832
|
+
dnsDomain: string | null;
|
|
38833
|
+
firstSeenDateTime: offsetDateTime | null;
|
|
38834
|
+
healthStatus: deviceHealthStatus | null;
|
|
38835
|
+
hostName: string | null;
|
|
38836
|
+
ipInterfaces: string[] | null;
|
|
38837
|
+
lastExternalIpAddress: string | null;
|
|
38838
|
+
lastIpAddress: string | null;
|
|
38839
|
+
loggedOnUsers: loggedOnUser[] | null;
|
|
38255
38840
|
mdeDeviceId: string | null;
|
|
38256
|
-
|
|
38257
|
-
|
|
38258
|
-
|
|
38259
|
-
|
|
38260
|
-
|
|
38261
|
-
|
|
38262
|
-
|
|
38841
|
+
ntDomain: string | null;
|
|
38842
|
+
onboardingStatus: onboardingStatus | null;
|
|
38843
|
+
osBuild: int64 | null;
|
|
38844
|
+
osPlatform: string | null;
|
|
38845
|
+
rbacGroupId: int32 | null;
|
|
38846
|
+
rbacGroupName: string | null;
|
|
38847
|
+
resourceAccessEvents: resourceAccessEvent[] | null;
|
|
38848
|
+
riskScore: deviceRiskScore | null;
|
|
38849
|
+
version: string | null;
|
|
38850
|
+
vmMetadata: vmMetadata | null;
|
|
38263
38851
|
}
|
|
38264
38852
|
|
|
38265
|
-
@
|
|
38266
|
-
|
|
38267
|
-
maxWords: int32 | null;
|
|
38268
|
-
minWords: int32 | null;
|
|
38269
|
-
similarityThreshold: int32 | null;
|
|
38853
|
+
@open
|
|
38854
|
+
@complex model dictionary {
|
|
38270
38855
|
}
|
|
38271
38856
|
|
|
38272
|
-
|
|
38273
|
-
|
|
38274
|
-
|
|
38857
|
+
/**
|
|
38858
|
+
* Audit data for eDiscovery events.
|
|
38859
|
+
*/
|
|
38860
|
+
@open
|
|
38861
|
+
@complex model discoveryAuditRecord extends auditData {
|
|
38275
38862
|
}
|
|
38276
38863
|
|
|
38277
|
-
|
|
38278
|
-
|
|
38279
|
-
|
|
38280
|
-
|
|
38281
|
-
|
|
38282
|
-
registryValueName: string | null;
|
|
38283
|
-
registryValueType: string | null;
|
|
38864
|
+
/**
|
|
38865
|
+
* Audit data for DLP Endpoint events.
|
|
38866
|
+
*/
|
|
38867
|
+
@open
|
|
38868
|
+
@complex model dlpEndpointAuditRecord extends auditData {
|
|
38284
38869
|
}
|
|
38285
38870
|
|
|
38286
|
-
|
|
38871
|
+
/**
|
|
38872
|
+
* Audit data for DLP Import Result events.
|
|
38873
|
+
*/
|
|
38874
|
+
@open
|
|
38875
|
+
@complex model dlpImportResultAuditRecord extends auditData {
|
|
38876
|
+
}
|
|
38877
|
+
|
|
38878
|
+
/**
|
|
38879
|
+
* Audit data for DLP Sensitive Information Type Rule Package cmdlet events.
|
|
38880
|
+
*/
|
|
38881
|
+
@open
|
|
38882
|
+
@complex model dlpSensitiveInformationTypeRulePackageCmdletRecord extends auditData {
|
|
38883
|
+
}
|
|
38884
|
+
|
|
38885
|
+
@complex model dnsEvidence extends alertEvidence {
|
|
38886
|
+
dnsServerIp: ipEvidence | null;
|
|
38887
|
+
domainName: string | null;
|
|
38888
|
+
hostIpAddress: ipEvidence | null;
|
|
38889
|
+
ipAddresses: ipEvidence[] | null;
|
|
38890
|
+
}
|
|
38891
|
+
|
|
38892
|
+
/**
|
|
38893
|
+
* Audit data for Dragon Copilot Access events.
|
|
38894
|
+
*/
|
|
38895
|
+
@open
|
|
38896
|
+
@complex model dragonCopilotAccessRecord extends auditData {
|
|
38897
|
+
}
|
|
38898
|
+
|
|
38899
|
+
/**
|
|
38900
|
+
* Audit data for Dragon Copilot Admin events.
|
|
38901
|
+
*/
|
|
38902
|
+
@open
|
|
38903
|
+
@complex model dragonCopilotAdminRecord extends auditData {
|
|
38904
|
+
}
|
|
38905
|
+
|
|
38906
|
+
/**
|
|
38907
|
+
* Audit data for Dragon Copilot Clinical Data events.
|
|
38908
|
+
*/
|
|
38909
|
+
@open
|
|
38910
|
+
@complex model dragonCopilotClinicalDataRecord extends auditData {
|
|
38911
|
+
}
|
|
38912
|
+
|
|
38913
|
+
/**
|
|
38914
|
+
* Audit data for Dragon Copilot Session events.
|
|
38915
|
+
*/
|
|
38916
|
+
@open
|
|
38917
|
+
@complex model dragonCopilotSessionRecord extends auditData {
|
|
38918
|
+
}
|
|
38919
|
+
|
|
38920
|
+
@open
|
|
38921
|
+
@complex model dynamicColumnValue {
|
|
38922
|
+
}
|
|
38923
|
+
|
|
38924
|
+
/**
|
|
38925
|
+
* Audit data for Dynamics365 Business Central events.
|
|
38926
|
+
*/
|
|
38927
|
+
@open
|
|
38928
|
+
@complex model dynamics365BusinessCentralAuditRecord extends auditData {
|
|
38929
|
+
}
|
|
38930
|
+
|
|
38931
|
+
/**
|
|
38932
|
+
* Audit data for EHR Connector events.
|
|
38933
|
+
*/
|
|
38934
|
+
@open
|
|
38935
|
+
@complex model ehrConnectorAuditBaseRecord extends auditData {
|
|
38936
|
+
}
|
|
38937
|
+
|
|
38938
|
+
@complex model emailSender {
|
|
38939
|
+
displayName: string | null;
|
|
38940
|
+
domainName: string | null;
|
|
38941
|
+
emailAddress: string | null;
|
|
38942
|
+
}
|
|
38943
|
+
|
|
38944
|
+
/**
|
|
38945
|
+
* Audit data for EOP Submission Feed Entity events.
|
|
38946
|
+
*/
|
|
38947
|
+
@open
|
|
38948
|
+
@complex model eopSubmissionFeedEntityAuditRecord extends auditData {
|
|
38949
|
+
}
|
|
38950
|
+
|
|
38951
|
+
@complex model eventPropagationResult {
|
|
38952
|
+
location: string | null;
|
|
38953
|
+
serviceName: string | null;
|
|
38954
|
+
status: eventPropagationStatus | null;
|
|
38955
|
+
statusInformation: string | null;
|
|
38956
|
+
}
|
|
38957
|
+
|
|
38958
|
+
@complex model eventQuery {
|
|
38959
|
+
query: string;
|
|
38960
|
+
queryType: queryType | null;
|
|
38961
|
+
}
|
|
38962
|
+
|
|
38963
|
+
/**
|
|
38964
|
+
* Audit data for Exchange Admin events.
|
|
38965
|
+
*/
|
|
38966
|
+
@open
|
|
38967
|
+
@complex model exchangeAdminAuditRecord extends auditData {
|
|
38968
|
+
}
|
|
38969
|
+
|
|
38970
|
+
/**
|
|
38971
|
+
* Audit data for Exchange Aggregated Mailbox events.
|
|
38972
|
+
*/
|
|
38973
|
+
@open
|
|
38974
|
+
@complex model exchangeAggregatedMailboxAuditRecord extends auditData {
|
|
38975
|
+
}
|
|
38976
|
+
|
|
38977
|
+
/**
|
|
38978
|
+
* Audit data for Exchange Aggregated Operation events.
|
|
38979
|
+
*/
|
|
38980
|
+
@open
|
|
38981
|
+
@complex model exchangeAggregatedOperationRecord extends auditData {
|
|
38982
|
+
}
|
|
38983
|
+
|
|
38984
|
+
/**
|
|
38985
|
+
* Audit data for Exchange Mailbox Audit Group events.
|
|
38986
|
+
*/
|
|
38987
|
+
@open
|
|
38988
|
+
@complex model exchangeMailboxAuditGroupRecord extends auditData {
|
|
38989
|
+
}
|
|
38990
|
+
|
|
38991
|
+
/**
|
|
38992
|
+
* Audit data for Exchange Mailbox events.
|
|
38993
|
+
*/
|
|
38994
|
+
@open
|
|
38995
|
+
@complex model exchangeMailboxAuditRecord extends auditData {
|
|
38996
|
+
}
|
|
38997
|
+
|
|
38998
|
+
@complex model exportFileMetadata {
|
|
38287
38999
|
downloadUrl: string | null;
|
|
38288
39000
|
fileName: string | null;
|
|
38289
39001
|
size: int64 | null;
|
|
38290
39002
|
}
|
|
38291
39003
|
|
|
38292
|
-
|
|
38293
|
-
|
|
38294
|
-
|
|
38295
|
-
|
|
38296
|
-
|
|
39004
|
+
/**
|
|
39005
|
+
* Audit data for Microsoft Fabric events.
|
|
39006
|
+
*/
|
|
39007
|
+
@open
|
|
39008
|
+
@complex model fabricAuditRecord extends auditData {
|
|
39009
|
+
}
|
|
39010
|
+
|
|
39011
|
+
/**
|
|
39012
|
+
* Audit data for Fabric Policy events.
|
|
39013
|
+
*/
|
|
39014
|
+
@open
|
|
39015
|
+
@complex model fabricPolicyRecord extends auditData {
|
|
39016
|
+
}
|
|
39017
|
+
|
|
39018
|
+
@complex model fileDetails {
|
|
39019
|
+
fileName: string | null;
|
|
39020
|
+
filePath: string | null;
|
|
39021
|
+
filePublisher: string | null;
|
|
39022
|
+
fileSize: int64 | null;
|
|
39023
|
+
issuer: string | null;
|
|
39024
|
+
md5: string | null;
|
|
39025
|
+
sha1: string | null;
|
|
39026
|
+
sha256: string | null;
|
|
39027
|
+
sha256Ac: string | null;
|
|
39028
|
+
signer: string | null;
|
|
39029
|
+
}
|
|
39030
|
+
|
|
39031
|
+
@complex model fileEvidence extends alertEvidence {
|
|
39032
|
+
detectionStatus: detectionStatus | null;
|
|
39033
|
+
fileDetails: fileDetails | null;
|
|
39034
|
+
mdeDeviceId: string | null;
|
|
39035
|
+
}
|
|
39036
|
+
|
|
39037
|
+
@complex model fileHash {
|
|
39038
|
+
algorithm: fileHashAlgorithm;
|
|
39039
|
+
value: string | null;
|
|
39040
|
+
}
|
|
39041
|
+
|
|
39042
|
+
@complex model fileHashEvidence extends alertEvidence {
|
|
39043
|
+
algorithm: fileHashAlgorithm;
|
|
39044
|
+
value: string | null;
|
|
39045
|
+
}
|
|
39046
|
+
|
|
39047
|
+
@complex model filePlanAppliedCategory extends filePlanDescriptorBase {
|
|
39048
|
+
subcategory: filePlanSubcategory | null;
|
|
39049
|
+
}
|
|
39050
|
+
|
|
39051
|
+
@complex model filePlanAuthority extends filePlanDescriptorBase {
|
|
39052
|
+
}
|
|
39053
|
+
|
|
39054
|
+
@complex model filePlanCitation extends filePlanDescriptorBase {
|
|
39055
|
+
citationJurisdiction: string | null;
|
|
39056
|
+
citationUrl: string | null;
|
|
39057
|
+
}
|
|
39058
|
+
|
|
39059
|
+
@complex model filePlanDepartment extends filePlanDescriptorBase {
|
|
39060
|
+
}
|
|
39061
|
+
|
|
39062
|
+
@complex model filePlanDescriptorBase {
|
|
39063
|
+
displayName: string | null;
|
|
39064
|
+
}
|
|
39065
|
+
|
|
39066
|
+
@complex model filePlanReference extends filePlanDescriptorBase {
|
|
39067
|
+
}
|
|
39068
|
+
|
|
39069
|
+
@complex model filePlanSubcategory extends filePlanDescriptorBase {
|
|
39070
|
+
}
|
|
39071
|
+
|
|
39072
|
+
@complex model formattedContent {
|
|
39073
|
+
content: string | null;
|
|
39074
|
+
format: contentFormat | null;
|
|
39075
|
+
}
|
|
39076
|
+
|
|
39077
|
+
@complex model geoLocation {
|
|
39078
|
+
city: string | null;
|
|
39079
|
+
countryName: string | null;
|
|
39080
|
+
latitude: float64 | null;
|
|
39081
|
+
longitude: float64 | null;
|
|
39082
|
+
state: string | null;
|
|
39083
|
+
}
|
|
39084
|
+
|
|
39085
|
+
@complex model gitHubOrganizationEvidence extends alertEvidence {
|
|
39086
|
+
company: string | null;
|
|
39087
|
+
displayName: string | null;
|
|
39088
|
+
email: string | null;
|
|
39089
|
+
login: string | null;
|
|
39090
|
+
orgId: string | null;
|
|
39091
|
+
webUrl: string | null;
|
|
39092
|
+
}
|
|
39093
|
+
|
|
39094
|
+
@complex model gitHubRepoEvidence extends alertEvidence {
|
|
39095
|
+
baseUrl: string | null;
|
|
39096
|
+
login: string | null;
|
|
39097
|
+
owner: string | null;
|
|
39098
|
+
ownerType: string | null;
|
|
39099
|
+
repoId: string | null;
|
|
39100
|
+
}
|
|
39101
|
+
|
|
39102
|
+
@complex model gitHubUserEvidence extends alertEvidence {
|
|
39103
|
+
email: string | null;
|
|
39104
|
+
login: string | null;
|
|
39105
|
+
name: string | null;
|
|
39106
|
+
userId: string | null;
|
|
39107
|
+
webUrl: string | null;
|
|
39108
|
+
}
|
|
39109
|
+
|
|
39110
|
+
@complex model googleCloudResourceEvidence extends alertEvidence {
|
|
39111
|
+
fullResourceName: string | null;
|
|
39112
|
+
location: string | null;
|
|
39113
|
+
locationType: googleCloudLocationType | null;
|
|
39114
|
+
projectId: string | null;
|
|
39115
|
+
projectNumber: int64 | null;
|
|
39116
|
+
resourceName: string | null;
|
|
39117
|
+
resourceType: string | null;
|
|
39118
|
+
}
|
|
39119
|
+
|
|
39120
|
+
/**
|
|
39121
|
+
* Audit data for Healthcare Signal events.
|
|
39122
|
+
*/
|
|
39123
|
+
@open
|
|
39124
|
+
@complex model healthcareSignalRecord extends auditData {
|
|
39125
|
+
}
|
|
39126
|
+
|
|
39127
|
+
/**
|
|
39128
|
+
* Audit data for Hosted RPA events.
|
|
39129
|
+
*/
|
|
39130
|
+
@open
|
|
39131
|
+
@complex model hostedRpaAuditRecord extends auditData {
|
|
39132
|
+
}
|
|
39133
|
+
|
|
39134
|
+
@complex model hostLogonSessionEvidence extends alertEvidence {
|
|
39135
|
+
account: userEvidence | null;
|
|
39136
|
+
endUtcDateTime: offsetDateTime | null;
|
|
39137
|
+
host: deviceEvidence | null;
|
|
39138
|
+
sessionId: string | null;
|
|
39139
|
+
startUtcDateTime: offsetDateTime | null;
|
|
39140
|
+
}
|
|
39141
|
+
|
|
39142
|
+
@complex model hostPortBanner {
|
|
39143
|
+
banner: string;
|
|
39144
|
+
firstSeenDateTime: offsetDateTime | null;
|
|
39145
|
+
@computed lastSeenDateTime: offsetDateTime | null;
|
|
39146
|
+
scanProtocol: string | null;
|
|
39147
|
+
timesObserved: int32 | null;
|
|
39148
|
+
}
|
|
39149
|
+
|
|
39150
|
+
@complex model hostPortComponent {
|
|
39151
|
+
firstSeenDateTime: offsetDateTime | null;
|
|
39152
|
+
isRecent: boolean | null;
|
|
39153
|
+
@computed lastSeenDateTime: offsetDateTime | null;
|
|
39154
|
+
@references component: hostComponent | null;
|
|
39155
|
+
}
|
|
39156
|
+
|
|
39157
|
+
@complex model hostReputationRule {
|
|
39158
|
+
description: string;
|
|
39159
|
+
name: string;
|
|
39160
|
+
relatedDetailsUrl: string | null;
|
|
39161
|
+
severity: hostReputationRuleSeverity;
|
|
39162
|
+
}
|
|
39163
|
+
|
|
39164
|
+
@complex model hostSslCertificatePort {
|
|
39165
|
+
firstSeenDateTime: offsetDateTime | null;
|
|
39166
|
+
@computed lastSeenDateTime: offsetDateTime | null;
|
|
39167
|
+
port: int32 | null;
|
|
39168
|
+
}
|
|
39169
|
+
|
|
39170
|
+
/**
|
|
39171
|
+
* Audit data for HR Signal events.
|
|
39172
|
+
*/
|
|
39173
|
+
@open
|
|
39174
|
+
@complex model hrSignalAuditRecord extends auditData {
|
|
39175
|
+
}
|
|
39176
|
+
|
|
39177
|
+
@complex model huntingQueryResults {
|
|
39178
|
+
results: huntingRowResult[] | null;
|
|
39179
|
+
schema: singlePropertySchema[] | null;
|
|
39180
|
+
}
|
|
39181
|
+
|
|
39182
|
+
@open
|
|
39183
|
+
@complex model huntingRowResult {
|
|
39184
|
+
}
|
|
39185
|
+
|
|
39186
|
+
/**
|
|
39187
|
+
* Audit data for Hygiene Event events.
|
|
39188
|
+
*/
|
|
39189
|
+
@open
|
|
39190
|
+
@complex model hygieneEventRecord extends auditData {
|
|
39191
|
+
}
|
|
39192
|
+
|
|
39193
|
+
@complex model hyperlink {
|
|
39194
|
+
name: string;
|
|
39195
|
+
url: string;
|
|
39196
|
+
}
|
|
39197
|
+
|
|
39198
|
+
/**
|
|
39199
|
+
* Audit data for Information Barrier Policy Application events.
|
|
39200
|
+
*/
|
|
39201
|
+
@open
|
|
39202
|
+
@complex model informationBarrierPolicyApplicationAuditRecord extends auditData {
|
|
39203
|
+
}
|
|
39204
|
+
|
|
39205
|
+
/**
|
|
39206
|
+
* Audit data for Information Worker Protection events.
|
|
39207
|
+
*/
|
|
39208
|
+
@open
|
|
39209
|
+
@complex model informationWorkerProtectionAuditRecord extends auditData {
|
|
39210
|
+
}
|
|
39211
|
+
|
|
39212
|
+
/**
|
|
39213
|
+
* Audit data for Insider Risk Scoped User Insights events.
|
|
39214
|
+
*/
|
|
39215
|
+
@open
|
|
39216
|
+
@complex model insiderRiskScopedUserInsightsRecord extends auditData {
|
|
39217
|
+
}
|
|
39218
|
+
|
|
39219
|
+
/**
|
|
39220
|
+
* Audit data for Insider Risk Scoped Users events.
|
|
39221
|
+
*/
|
|
39222
|
+
@open
|
|
39223
|
+
@complex model insiderRiskScopedUsersRecord extends auditData {
|
|
39224
|
+
}
|
|
39225
|
+
|
|
39226
|
+
/**
|
|
39227
|
+
* Audit data for Integrated Apps App Admin Activity events.
|
|
39228
|
+
*/
|
|
39229
|
+
@open
|
|
39230
|
+
@complex model integratedAppsAppAdminActivityAuditRecord extends auditData {
|
|
39231
|
+
}
|
|
39232
|
+
|
|
39233
|
+
/**
|
|
39234
|
+
* Audit data for Integrated Apps App Settings Admin Activity events.
|
|
39235
|
+
*/
|
|
39236
|
+
@open
|
|
39237
|
+
@complex model integratedAppsAppSettingsAdminActivityAuditRecord extends auditData {
|
|
39238
|
+
}
|
|
39239
|
+
|
|
39240
|
+
@complex model intelligenceProfileCountryOrRegionOfOrigin {
|
|
39241
|
+
code: string;
|
|
39242
|
+
label: string;
|
|
39243
|
+
}
|
|
39244
|
+
|
|
39245
|
+
@complex model invokeActionResult {
|
|
39246
|
+
accountId: string;
|
|
39247
|
+
action: action;
|
|
39248
|
+
correlationId: string | null;
|
|
39249
|
+
identityProvider: identityProvider;
|
|
39250
|
+
}
|
|
39251
|
+
|
|
39252
|
+
@complex model ioTDeviceEvidence extends alertEvidence {
|
|
39253
|
+
deviceId: string | null;
|
|
39254
|
+
deviceName: string | null;
|
|
39255
|
+
devicePageLink: string | null;
|
|
39256
|
+
deviceSubType: string | null;
|
|
39257
|
+
deviceType: string | null;
|
|
39258
|
+
importance: ioTDeviceImportanceType | null;
|
|
39259
|
+
ioTHub: azureResourceEvidence | null;
|
|
39260
|
+
ioTSecurityAgentId: string | null;
|
|
39261
|
+
ipAddress: ipEvidence | null;
|
|
39262
|
+
isAuthorized: boolean | null;
|
|
39263
|
+
isProgramming: boolean | null;
|
|
39264
|
+
isScanner: boolean | null;
|
|
39265
|
+
macAddress: string | null;
|
|
39266
|
+
manufacturer: string | null;
|
|
39267
|
+
`model`: string | null;
|
|
39268
|
+
nics: nicEvidence[] | null;
|
|
39269
|
+
operatingSystem: string | null;
|
|
39270
|
+
owners: string[] | null;
|
|
39271
|
+
protocols: string[] | null;
|
|
39272
|
+
purdueLayer: string | null;
|
|
39273
|
+
sensor: string | null;
|
|
39274
|
+
serialNumber: string | null;
|
|
39275
|
+
site: string | null;
|
|
39276
|
+
source: string | null;
|
|
39277
|
+
sourceRef: urlEvidence | null;
|
|
39278
|
+
zone: string | null;
|
|
39279
|
+
}
|
|
39280
|
+
|
|
39281
|
+
@complex model ipEvidence extends alertEvidence {
|
|
39282
|
+
countryLetterCode: string | null;
|
|
39283
|
+
ipAddress: string | null;
|
|
39284
|
+
location: geoLocation | null;
|
|
39285
|
+
stream: stream | null;
|
|
39286
|
+
}
|
|
39287
|
+
|
|
39288
|
+
/**
|
|
39289
|
+
* Audit data for IRM Activity Audit Trail events.
|
|
39290
|
+
*/
|
|
39291
|
+
@open
|
|
39292
|
+
@complex model irmActivityAuditTrailRecord extends auditData {
|
|
39293
|
+
}
|
|
39294
|
+
|
|
39295
|
+
/**
|
|
39296
|
+
* Audit data for IRM User Defined Detection events.
|
|
39297
|
+
*/
|
|
39298
|
+
@open
|
|
39299
|
+
@complex model irmUserDefinedDetectionRecord extends auditData {
|
|
39300
|
+
}
|
|
39301
|
+
|
|
39302
|
+
/**
|
|
39303
|
+
* Audit data for Microsoft Kaizala events.
|
|
39304
|
+
*/
|
|
39305
|
+
@open
|
|
39306
|
+
@complex model kaizalaAuditRecord extends auditData {
|
|
39307
|
+
}
|
|
39308
|
+
|
|
39309
|
+
@complex model kubernetesClusterEvidence extends alertEvidence {
|
|
39310
|
+
cloudResource: alertEvidence | null;
|
|
39311
|
+
distribution: string | null;
|
|
39312
|
+
name: string | null;
|
|
39313
|
+
platform: kubernetesPlatform | null;
|
|
39314
|
+
version: string | null;
|
|
39315
|
+
}
|
|
39316
|
+
|
|
39317
|
+
@complex model kubernetesControllerEvidence extends alertEvidence {
|
|
39318
|
+
labels: dictionary | null;
|
|
39319
|
+
name: string | null;
|
|
39320
|
+
`namespace`: kubernetesNamespaceEvidence | null;
|
|
39321
|
+
type: string | null;
|
|
39322
|
+
}
|
|
39323
|
+
|
|
39324
|
+
@complex model kubernetesNamespaceEvidence extends alertEvidence {
|
|
39325
|
+
cluster: kubernetesClusterEvidence | null;
|
|
39326
|
+
labels: dictionary | null;
|
|
39327
|
+
name: string | null;
|
|
39328
|
+
}
|
|
39329
|
+
|
|
39330
|
+
@complex model kubernetesPodEvidence extends alertEvidence {
|
|
39331
|
+
containers: containerEvidence[] | null;
|
|
39332
|
+
controller: kubernetesControllerEvidence | null;
|
|
39333
|
+
ephemeralContainers: containerEvidence[] | null;
|
|
39334
|
+
initContainers: containerEvidence[] | null;
|
|
39335
|
+
labels: dictionary | null;
|
|
39336
|
+
name: string | null;
|
|
39337
|
+
`namespace`: kubernetesNamespaceEvidence | null;
|
|
39338
|
+
podIp: ipEvidence | null;
|
|
39339
|
+
serviceAccount: kubernetesServiceAccountEvidence | null;
|
|
39340
|
+
}
|
|
39341
|
+
|
|
39342
|
+
@complex model kubernetesSecretEvidence extends alertEvidence {
|
|
39343
|
+
name: string | null;
|
|
39344
|
+
`namespace`: kubernetesNamespaceEvidence | null;
|
|
39345
|
+
secretType: string | null;
|
|
39346
|
+
}
|
|
39347
|
+
|
|
39348
|
+
@complex model kubernetesServiceAccountEvidence extends alertEvidence {
|
|
39349
|
+
name: string | null;
|
|
39350
|
+
`namespace`: kubernetesNamespaceEvidence | null;
|
|
39351
|
+
}
|
|
39352
|
+
|
|
39353
|
+
@complex model kubernetesServiceEvidence extends alertEvidence {
|
|
39354
|
+
clusterIP: ipEvidence | null;
|
|
39355
|
+
externalIPs: ipEvidence[] | null;
|
|
39356
|
+
labels: dictionary | null;
|
|
39357
|
+
name: string | null;
|
|
39358
|
+
`namespace`: kubernetesNamespaceEvidence | null;
|
|
39359
|
+
selector: dictionary | null;
|
|
39360
|
+
servicePorts: kubernetesServicePort[] | null;
|
|
39361
|
+
serviceType: kubernetesServiceType;
|
|
39362
|
+
}
|
|
39363
|
+
|
|
39364
|
+
@complex model kubernetesServicePort {
|
|
39365
|
+
appProtocol: string | null;
|
|
39366
|
+
name: string | null;
|
|
39367
|
+
nodePort: int32;
|
|
39368
|
+
port: int32;
|
|
39369
|
+
protocol: containerPortProtocol | null;
|
|
39370
|
+
targetPort: string | null;
|
|
39371
|
+
}
|
|
39372
|
+
|
|
39373
|
+
/**
|
|
39374
|
+
* Audit data for Label Analytics Aggregate events.
|
|
39375
|
+
*/
|
|
39376
|
+
@open
|
|
39377
|
+
@complex model labelAnalyticsAggregateAuditRecord extends auditData {
|
|
39378
|
+
}
|
|
39379
|
+
|
|
39380
|
+
/**
|
|
39381
|
+
* Audit data for Label Content Explorer events.
|
|
39382
|
+
*/
|
|
39383
|
+
@open
|
|
39384
|
+
@complex model labelContentExplorerAuditRecord extends auditData {
|
|
39385
|
+
}
|
|
39386
|
+
|
|
39387
|
+
/**
|
|
39388
|
+
* Audit data for Large Content Meta events.
|
|
39389
|
+
*/
|
|
39390
|
+
@open
|
|
39391
|
+
@complex model largeContentMetadataAuditRecord extends auditData {
|
|
39392
|
+
}
|
|
39393
|
+
|
|
39394
|
+
@complex model loggedOnUser {
|
|
39395
|
+
accountName: string | null;
|
|
39396
|
+
domainName: string | null;
|
|
39397
|
+
}
|
|
39398
|
+
|
|
39399
|
+
/**
|
|
39400
|
+
* Audit data for M365 Compliance Connector events.
|
|
39401
|
+
*/
|
|
39402
|
+
@open
|
|
39403
|
+
@complex model m365ComplianceConnectorAuditRecord extends auditData {
|
|
39404
|
+
}
|
|
39405
|
+
|
|
39406
|
+
/**
|
|
39407
|
+
* Audit data for M365daad events.
|
|
39408
|
+
*/
|
|
39409
|
+
@open
|
|
39410
|
+
@complex model m365daadAuditRecord extends auditData {
|
|
39411
|
+
}
|
|
39412
|
+
|
|
39413
|
+
/**
|
|
39414
|
+
* Audit data for M365odsp Asset Meta events.
|
|
39415
|
+
*/
|
|
39416
|
+
@open
|
|
39417
|
+
@complex model m365odspAssetMetadataRecord extends auditData {
|
|
39418
|
+
}
|
|
39419
|
+
|
|
39420
|
+
/**
|
|
39421
|
+
* Audit data for M365 Search Sections events.
|
|
39422
|
+
*/
|
|
39423
|
+
@open
|
|
39424
|
+
@complex model m365SearchSectionsRecord extends auditData {
|
|
39425
|
+
}
|
|
39426
|
+
|
|
39427
|
+
@complex model mailboxConfigurationEvidence extends alertEvidence {
|
|
39428
|
+
configurationId: string | null;
|
|
39429
|
+
configurationType: mailboxConfigurationType | null;
|
|
39430
|
+
displayName: string | null;
|
|
39431
|
+
externalDirectoryObjectId: guid | null;
|
|
39432
|
+
mailboxPrimaryAddress: string | null;
|
|
39433
|
+
upn: string | null;
|
|
39434
|
+
}
|
|
39435
|
+
|
|
39436
|
+
@complex model mailboxEvidence extends alertEvidence {
|
|
39437
|
+
displayName: string | null;
|
|
39438
|
+
primaryAddress: string | null;
|
|
39439
|
+
upn: string | null;
|
|
39440
|
+
userAccount: userAccount | null;
|
|
39441
|
+
}
|
|
39442
|
+
|
|
39443
|
+
@complex model mailClusterEvidence extends alertEvidence {
|
|
39444
|
+
clusterBy: string | null;
|
|
39445
|
+
clusterByValue: string | null;
|
|
39446
|
+
emailCount: int64 | null;
|
|
39447
|
+
networkMessageIds: string[] | null;
|
|
39448
|
+
query: string | null;
|
|
39449
|
+
urn: string | null;
|
|
39450
|
+
}
|
|
39451
|
+
|
|
39452
|
+
/**
|
|
39453
|
+
* Audit data for Mail Submission events.
|
|
39454
|
+
*/
|
|
39455
|
+
@open
|
|
39456
|
+
@complex model mailSubmissionData extends auditData {
|
|
39457
|
+
}
|
|
39458
|
+
|
|
39459
|
+
@complex model malwareEvidence extends alertEvidence {
|
|
39460
|
+
category: string | null;
|
|
39461
|
+
files: fileEvidence[] | null;
|
|
39462
|
+
name: string | null;
|
|
39463
|
+
processes: processEvidence[] | null;
|
|
39464
|
+
}
|
|
39465
|
+
|
|
39466
|
+
/**
|
|
39467
|
+
* Audit data for Managed Services events.
|
|
39468
|
+
*/
|
|
39469
|
+
@open
|
|
39470
|
+
@complex model managedServicesAuditRecord extends auditData {
|
|
39471
|
+
}
|
|
39472
|
+
|
|
39473
|
+
/**
|
|
39474
|
+
* Audit data for Managed Tenants events.
|
|
39475
|
+
*/
|
|
39476
|
+
@open
|
|
39477
|
+
@complex model managedTenantsAuditRecord extends auditData {
|
|
39478
|
+
}
|
|
39479
|
+
|
|
39480
|
+
/**
|
|
39481
|
+
* Audit data for MAPG Alerts events.
|
|
39482
|
+
*/
|
|
39483
|
+
@open
|
|
39484
|
+
@complex model mapgAlertsAuditRecord extends auditData {
|
|
39485
|
+
}
|
|
39486
|
+
|
|
39487
|
+
/**
|
|
39488
|
+
* Audit data for MAPG Onboard events.
|
|
39489
|
+
*/
|
|
39490
|
+
@open
|
|
39491
|
+
@complex model mapgOnboardAuditRecord extends auditData {
|
|
39492
|
+
}
|
|
39493
|
+
|
|
39494
|
+
/**
|
|
39495
|
+
* Audit data for MAPG Policy events.
|
|
39496
|
+
*/
|
|
39497
|
+
@open
|
|
39498
|
+
@complex model mapgPolicyAuditRecord extends auditData {
|
|
39499
|
+
}
|
|
39500
|
+
|
|
39501
|
+
/**
|
|
39502
|
+
* Audit data for MAPG Remediation events.
|
|
39503
|
+
*/
|
|
39504
|
+
@open
|
|
39505
|
+
@complex model mapgRemediationAuditRecord extends auditData {
|
|
39506
|
+
}
|
|
39507
|
+
|
|
39508
|
+
/**
|
|
39509
|
+
* Audit data for MCAS Alerts events.
|
|
39510
|
+
*/
|
|
39511
|
+
@open
|
|
39512
|
+
@complex model mcasAlertsAuditRecord extends auditData {
|
|
39513
|
+
}
|
|
39514
|
+
|
|
39515
|
+
/**
|
|
39516
|
+
* Audit data for MDA events.
|
|
39517
|
+
*/
|
|
39518
|
+
@open
|
|
39519
|
+
@complex model mdaAuditRecord extends auditData {
|
|
39520
|
+
}
|
|
39521
|
+
|
|
39522
|
+
/**
|
|
39523
|
+
* Audit data for MDA Data Security Signal events.
|
|
39524
|
+
*/
|
|
39525
|
+
@open
|
|
39526
|
+
@complex model mdaDataSecuritySignalRecord extends auditData {
|
|
39527
|
+
}
|
|
39528
|
+
|
|
39529
|
+
/**
|
|
39530
|
+
* Audit data for MDASH events.
|
|
39531
|
+
*/
|
|
39532
|
+
@open
|
|
39533
|
+
@complex model mDASHAuditRecord extends auditData {
|
|
39534
|
+
}
|
|
39535
|
+
|
|
39536
|
+
/**
|
|
39537
|
+
* Audit data for MDATP events.
|
|
39538
|
+
*/
|
|
39539
|
+
@open
|
|
39540
|
+
@complex model mdatpAuditRecord extends auditData {
|
|
39541
|
+
}
|
|
39542
|
+
|
|
39543
|
+
/**
|
|
39544
|
+
* Audit data for MDC Events events.
|
|
39545
|
+
*/
|
|
39546
|
+
@open
|
|
39547
|
+
@complex model mdcEventsRecord extends auditData {
|
|
39548
|
+
}
|
|
39549
|
+
|
|
39550
|
+
/**
|
|
39551
|
+
* Audit data for MDI events.
|
|
39552
|
+
*/
|
|
39553
|
+
@open
|
|
39554
|
+
@complex model mdiAuditRecord extends auditData {
|
|
39555
|
+
}
|
|
39556
|
+
|
|
39557
|
+
@complex model mergeResponse {
|
|
39558
|
+
targetIncidentId: string;
|
|
39559
|
+
}
|
|
39560
|
+
|
|
39561
|
+
/**
|
|
39562
|
+
* Audit data for Mesh Worlds events.
|
|
39563
|
+
*/
|
|
39564
|
+
@open
|
|
39565
|
+
@complex model meshWorldsAuditRecord extends auditData {
|
|
39566
|
+
}
|
|
39567
|
+
|
|
39568
|
+
/**
|
|
39569
|
+
* Audit data for Microsoft365 Backup Backup Item events.
|
|
39570
|
+
*/
|
|
39571
|
+
@open
|
|
39572
|
+
@complex model microsoft365BackupBackupItemAuditRecord extends auditData {
|
|
39573
|
+
}
|
|
39574
|
+
|
|
39575
|
+
/**
|
|
39576
|
+
* Audit data for Microsoft365 Backup Backup Policy events.
|
|
39577
|
+
*/
|
|
39578
|
+
@open
|
|
39579
|
+
@complex model microsoft365BackupBackupPolicyAuditRecord extends auditData {
|
|
39580
|
+
}
|
|
39581
|
+
|
|
39582
|
+
/**
|
|
39583
|
+
* Audit data for Microsoft365 Backup Granular Browse Task events.
|
|
39584
|
+
*/
|
|
39585
|
+
@open
|
|
39586
|
+
@complex model microsoft365BackupGranularBrowseTaskAuditRecord extends auditData {
|
|
39587
|
+
}
|
|
39588
|
+
|
|
39589
|
+
/**
|
|
39590
|
+
* Audit data for Microsoft365 Backup Restore Item events.
|
|
39591
|
+
*/
|
|
39592
|
+
@open
|
|
39593
|
+
@complex model microsoft365BackupRestoreItemAuditRecord extends auditData {
|
|
39594
|
+
}
|
|
39595
|
+
|
|
39596
|
+
/**
|
|
39597
|
+
* Audit data for Microsoft365 Backup Restore Task events.
|
|
39598
|
+
*/
|
|
39599
|
+
@open
|
|
39600
|
+
@complex model microsoft365BackupRestoreTaskAuditRecord extends auditData {
|
|
39601
|
+
}
|
|
39602
|
+
|
|
39603
|
+
/**
|
|
39604
|
+
* Audit data for Microsoft365 Copilot Scheduled Prompt events.
|
|
39605
|
+
*/
|
|
39606
|
+
@open
|
|
39607
|
+
@complex model microsoft365CopilotScheduledPromptAuditRecord extends auditData {
|
|
39608
|
+
}
|
|
39609
|
+
|
|
39610
|
+
/**
|
|
39611
|
+
* Audit data for Microsoft Defender Experts XDR events.
|
|
39612
|
+
*/
|
|
39613
|
+
@open
|
|
39614
|
+
@complex model microsoftDefenderExpertsXDRAuditRecord extends auditData {
|
|
39615
|
+
}
|
|
39616
|
+
|
|
39617
|
+
/**
|
|
39618
|
+
* Audit data for Microsoft Flow events.
|
|
39619
|
+
*/
|
|
39620
|
+
@open
|
|
39621
|
+
@complex model microsoftFlowAuditRecord extends auditData {
|
|
39622
|
+
}
|
|
39623
|
+
|
|
39624
|
+
/**
|
|
39625
|
+
* Audit data for Microsoft Forms events.
|
|
39626
|
+
*/
|
|
39627
|
+
@open
|
|
39628
|
+
@complex model microsoftFormsAuditRecord extends auditData {
|
|
39629
|
+
}
|
|
39630
|
+
|
|
39631
|
+
/**
|
|
39632
|
+
* Audit data for Microsoft Graph Data Connect Consent events.
|
|
39633
|
+
*/
|
|
39634
|
+
@open
|
|
39635
|
+
@complex model microsoftGraphDataConnectConsent extends auditData {
|
|
39636
|
+
}
|
|
39637
|
+
|
|
39638
|
+
/**
|
|
39639
|
+
* Audit data for Microsoft Graph Data Connect Operation events.
|
|
39640
|
+
*/
|
|
39641
|
+
@open
|
|
39642
|
+
@complex model microsoftGraphDataConnectOperation extends auditData {
|
|
39643
|
+
}
|
|
39644
|
+
|
|
39645
|
+
/**
|
|
39646
|
+
* Audit data for Microsoft Purview Data Catalog Operation events.
|
|
39647
|
+
*/
|
|
39648
|
+
@open
|
|
39649
|
+
@complex model microsoftPurviewDataCatalogOperationRecord extends auditData {
|
|
39650
|
+
}
|
|
39651
|
+
|
|
39652
|
+
/**
|
|
39653
|
+
* Audit data for Microsoft Purview Data Map Operation events.
|
|
39654
|
+
*/
|
|
39655
|
+
@open
|
|
39656
|
+
@complex model microsoftPurviewDataMapOperationRecord extends auditData {
|
|
39657
|
+
}
|
|
39658
|
+
|
|
39659
|
+
/**
|
|
39660
|
+
* Audit data for Microsoft Purview Metadata Policy Operation events.
|
|
39661
|
+
*/
|
|
39662
|
+
@open
|
|
39663
|
+
@complex model microsoftPurviewMetadataPolicyOperationRecord extends auditData {
|
|
39664
|
+
}
|
|
39665
|
+
|
|
39666
|
+
/**
|
|
39667
|
+
* Audit data for Microsoft Purview Policy Operation events.
|
|
39668
|
+
*/
|
|
39669
|
+
@open
|
|
39670
|
+
@complex model microsoftPurviewPolicyOperationRecord extends auditData {
|
|
39671
|
+
}
|
|
39672
|
+
|
|
39673
|
+
/**
|
|
39674
|
+
* Audit data for Microsoft Purview Privacy Audit Event events.
|
|
39675
|
+
*/
|
|
39676
|
+
@open
|
|
39677
|
+
@complex model microsoftPurviewPrivacyAuditEvent extends auditData {
|
|
39678
|
+
}
|
|
39679
|
+
|
|
39680
|
+
/**
|
|
39681
|
+
* Audit data for Microsoft Purview Unified Catalog Operation events.
|
|
39682
|
+
*/
|
|
39683
|
+
@open
|
|
39684
|
+
@complex model microsoftPurviewUnifiedCatalogOperationRecord extends auditData {
|
|
39685
|
+
}
|
|
39686
|
+
|
|
39687
|
+
/**
|
|
39688
|
+
* Audit data for Microsoft Stream events.
|
|
39689
|
+
*/
|
|
39690
|
+
@open
|
|
39691
|
+
@complex model microsoftStreamAuditRecord extends auditData {
|
|
39692
|
+
}
|
|
39693
|
+
|
|
39694
|
+
/**
|
|
39695
|
+
* Audit data for Microsoft Teams Admin events.
|
|
39696
|
+
*/
|
|
39697
|
+
@open
|
|
39698
|
+
@complex model microsoftTeamsAdminAuditRecord extends auditData {
|
|
39699
|
+
}
|
|
39700
|
+
|
|
39701
|
+
/**
|
|
39702
|
+
* Audit data for Microsoft Teams Analytics events.
|
|
39703
|
+
*/
|
|
39704
|
+
@open
|
|
39705
|
+
@complex model microsoftTeamsAnalyticsAuditRecord extends auditData {
|
|
39706
|
+
}
|
|
39707
|
+
|
|
39708
|
+
/**
|
|
39709
|
+
* Audit data for Microsoft Teams events.
|
|
39710
|
+
*/
|
|
39711
|
+
@open
|
|
39712
|
+
@complex model microsoftTeamsAuditRecord extends auditData {
|
|
39713
|
+
}
|
|
39714
|
+
|
|
39715
|
+
/**
|
|
39716
|
+
* Audit data for Microsoft Teams Device events.
|
|
39717
|
+
*/
|
|
39718
|
+
@open
|
|
39719
|
+
@complex model microsoftTeamsDeviceAuditRecord extends auditData {
|
|
39720
|
+
}
|
|
39721
|
+
|
|
39722
|
+
/**
|
|
39723
|
+
* Audit data for Microsoft Teams Retention Label Action events.
|
|
39724
|
+
*/
|
|
39725
|
+
@open
|
|
39726
|
+
@complex model microsoftTeamsRetentionLabelActionAuditRecord extends auditData {
|
|
39727
|
+
}
|
|
39728
|
+
|
|
39729
|
+
/**
|
|
39730
|
+
* Audit data for Microsoft Teams Sensitivity Label Action events.
|
|
39731
|
+
*/
|
|
39732
|
+
@open
|
|
39733
|
+
@complex model microsoftTeamsSensitivityLabelActionAuditRecord extends auditData {
|
|
39734
|
+
}
|
|
39735
|
+
|
|
39736
|
+
/**
|
|
39737
|
+
* Audit data for Microsoft Teams Shifts events.
|
|
39738
|
+
*/
|
|
39739
|
+
@open
|
|
39740
|
+
@complex model microsoftTeamsShiftsAuditRecord extends auditData {
|
|
39741
|
+
}
|
|
39742
|
+
|
|
39743
|
+
/**
|
|
39744
|
+
* Audit data for Microsoft Teams User Concern events.
|
|
39745
|
+
*/
|
|
39746
|
+
@open
|
|
39747
|
+
@complex model microsoftTeamsUserConcernAuditRecord extends auditData {
|
|
39748
|
+
}
|
|
39749
|
+
|
|
39750
|
+
/**
|
|
39751
|
+
* Audit data for MIP Auto Label Exchange Item events.
|
|
39752
|
+
*/
|
|
39753
|
+
@open
|
|
39754
|
+
@complex model mipAutoLabelExchangeItemAuditRecord extends auditData {
|
|
39755
|
+
}
|
|
39756
|
+
|
|
39757
|
+
/**
|
|
39758
|
+
* Audit data for MIP Auto Label Progress Feedback events.
|
|
39759
|
+
*/
|
|
39760
|
+
@open
|
|
39761
|
+
@complex model mipAutoLabelProgressFeedbackAuditRecord extends auditData {
|
|
39762
|
+
}
|
|
39763
|
+
|
|
39764
|
+
/**
|
|
39765
|
+
* Audit data for MIP Auto Label SharePoint Item events.
|
|
39766
|
+
*/
|
|
39767
|
+
@open
|
|
39768
|
+
@complex model mipAutoLabelSharePointItemAuditRecord extends auditData {
|
|
39769
|
+
}
|
|
39770
|
+
|
|
39771
|
+
/**
|
|
39772
|
+
* Audit data for MIP Auto Label SharePoint Policy Location events.
|
|
39773
|
+
*/
|
|
39774
|
+
@open
|
|
39775
|
+
@complex model mipAutoLabelSharePointPolicyLocationAuditRecord extends auditData {
|
|
39776
|
+
}
|
|
39777
|
+
|
|
39778
|
+
/**
|
|
39779
|
+
* Audit data for MIP Auto Label Simulation SharePoint Completion events.
|
|
39780
|
+
*/
|
|
39781
|
+
@open
|
|
39782
|
+
@complex model mipAutoLabelSimulationSharePointCompletionRecord extends auditData {
|
|
39783
|
+
}
|
|
39784
|
+
|
|
39785
|
+
/**
|
|
39786
|
+
* Audit data for MIP Auto Label Simulation SharePoint Progress events.
|
|
39787
|
+
*/
|
|
39788
|
+
@open
|
|
39789
|
+
@complex model mipAutoLabelSimulationSharePointProgressRecord extends auditData {
|
|
39790
|
+
}
|
|
39791
|
+
|
|
39792
|
+
/**
|
|
39793
|
+
* Audit data for MIP Auto Label Simulation Statistics events.
|
|
39794
|
+
*/
|
|
39795
|
+
@open
|
|
39796
|
+
@complex model mipAutoLabelSimulationStatisticsRecord extends auditData {
|
|
39797
|
+
}
|
|
39798
|
+
|
|
39799
|
+
/**
|
|
39800
|
+
* Audit data for MIP Exact Data Match events.
|
|
39801
|
+
*/
|
|
39802
|
+
@open
|
|
39803
|
+
@complex model mipExactDataMatchAuditRecord extends auditData {
|
|
39804
|
+
}
|
|
39805
|
+
|
|
39806
|
+
/**
|
|
39807
|
+
* Audit data for MIP Label Analytics events.
|
|
39808
|
+
*/
|
|
39809
|
+
@open
|
|
39810
|
+
@complex model mipLabelAnalyticsAuditRecord extends auditData {
|
|
39811
|
+
}
|
|
39812
|
+
|
|
39813
|
+
/**
|
|
39814
|
+
* Audit data for MIP Label events.
|
|
39815
|
+
*/
|
|
39816
|
+
@open
|
|
39817
|
+
@complex model mipLabelAuditRecord extends auditData {
|
|
39818
|
+
}
|
|
39819
|
+
|
|
39820
|
+
/**
|
|
39821
|
+
* Audit data for MOS Agent Info events.
|
|
39822
|
+
*/
|
|
39823
|
+
@open
|
|
39824
|
+
@complex model mosAgentInfoRecord extends auditData {
|
|
39825
|
+
}
|
|
39826
|
+
|
|
39827
|
+
/**
|
|
39828
|
+
* Audit data for MOS Agent Info V2 events.
|
|
39829
|
+
*/
|
|
39830
|
+
@open
|
|
39831
|
+
@complex model mosAgentInfoRecordV2 extends auditData {
|
|
39832
|
+
}
|
|
39833
|
+
|
|
39834
|
+
/**
|
|
39835
|
+
* Audit data for MS365D Custom Detection events.
|
|
39836
|
+
*/
|
|
39837
|
+
@open
|
|
39838
|
+
@complex model ms365dCustomDetectionAuditRecord extends auditData {
|
|
39839
|
+
}
|
|
39840
|
+
|
|
39841
|
+
/**
|
|
39842
|
+
* Audit data for MS365D Incident events.
|
|
39843
|
+
*/
|
|
39844
|
+
@open
|
|
39845
|
+
@complex model ms365dIncidentAuditRecord extends auditData {
|
|
39846
|
+
}
|
|
39847
|
+
|
|
39848
|
+
/**
|
|
39849
|
+
* Audit data for MS365D Suppression Rule events.
|
|
39850
|
+
*/
|
|
39851
|
+
@open
|
|
39852
|
+
@complex model ms365dSuppressionRuleAuditRecord extends auditData {
|
|
39853
|
+
}
|
|
39854
|
+
|
|
39855
|
+
/**
|
|
39856
|
+
* Audit data for MSDE Custom Collection events.
|
|
39857
|
+
*/
|
|
39858
|
+
@open
|
|
39859
|
+
@complex model msdeCustomCollectionAuditRecord extends auditData {
|
|
39860
|
+
}
|
|
39861
|
+
|
|
39862
|
+
/**
|
|
39863
|
+
* Audit data for MSDE General Settings events.
|
|
39864
|
+
*/
|
|
39865
|
+
@open
|
|
39866
|
+
@complex model msdeGeneralSettingsAuditRecord extends auditData {
|
|
39867
|
+
}
|
|
39868
|
+
|
|
39869
|
+
/**
|
|
39870
|
+
* Audit data for MSDE Indicators Settings events.
|
|
39871
|
+
*/
|
|
39872
|
+
@open
|
|
39873
|
+
@complex model msdeIndicatorsSettingsAuditRecord extends auditData {
|
|
39874
|
+
}
|
|
39875
|
+
|
|
39876
|
+
/**
|
|
39877
|
+
* Audit data for MSDE Response Actions events.
|
|
39878
|
+
*/
|
|
39879
|
+
@open
|
|
39880
|
+
@complex model msdeResponseActionsAuditRecord extends auditData {
|
|
39881
|
+
}
|
|
39882
|
+
|
|
39883
|
+
/**
|
|
39884
|
+
* Audit data for MSDE Roles Settings events.
|
|
39885
|
+
*/
|
|
39886
|
+
@open
|
|
39887
|
+
@complex model msdeRolesSettingsAuditRecord extends auditData {
|
|
39888
|
+
}
|
|
39889
|
+
|
|
39890
|
+
/**
|
|
39891
|
+
* Audit data for MSP Vector Search Content Metadata events.
|
|
39892
|
+
*/
|
|
39893
|
+
@open
|
|
39894
|
+
@complex model mspVectorSearchContentMetadataAuditRecord extends auditData {
|
|
39895
|
+
}
|
|
39896
|
+
|
|
39897
|
+
/**
|
|
39898
|
+
* Audit data for MSTIC Nation State Notification events.
|
|
39899
|
+
*/
|
|
39900
|
+
@open
|
|
39901
|
+
@complex model msticNationStateNotificationRecord extends auditData {
|
|
39902
|
+
}
|
|
39903
|
+
|
|
39904
|
+
/**
|
|
39905
|
+
* Audit data for Multi Stage Disposition events.
|
|
39906
|
+
*/
|
|
39907
|
+
@open
|
|
39908
|
+
@complex model multiStageDispositionAuditRecord extends auditData {
|
|
39909
|
+
}
|
|
39910
|
+
|
|
39911
|
+
/**
|
|
39912
|
+
* Audit data for My Analytics Settings events.
|
|
39913
|
+
*/
|
|
39914
|
+
@open
|
|
39915
|
+
@complex model myAnalyticsSettingsAuditRecord extends auditData {
|
|
39916
|
+
}
|
|
39917
|
+
|
|
39918
|
+
@complex model networkConnectionEvidence extends alertEvidence {
|
|
39919
|
+
destinationAddress: ipEvidence | null;
|
|
39920
|
+
destinationPort: int32 | null;
|
|
39921
|
+
protocol: protocolType | null;
|
|
39922
|
+
sourceAddress: ipEvidence | null;
|
|
39923
|
+
sourcePort: int32 | null;
|
|
39924
|
+
}
|
|
39925
|
+
|
|
39926
|
+
@complex model nicEvidence extends alertEvidence {
|
|
39927
|
+
ipAddress: ipEvidence | null;
|
|
39928
|
+
macAddress: string | null;
|
|
39929
|
+
vlans: string[] | null;
|
|
39930
|
+
}
|
|
39931
|
+
|
|
39932
|
+
/**
|
|
39933
|
+
* Audit data for Noisy Alert Policy events.
|
|
39934
|
+
*/
|
|
39935
|
+
@open
|
|
39936
|
+
@complex model noisyAlertPolicyAuditRecord extends auditData {
|
|
39937
|
+
}
|
|
39938
|
+
|
|
39939
|
+
@complex model oauthApplicationEvidence extends alertEvidence {
|
|
39940
|
+
appId: string | null;
|
|
39941
|
+
displayName: string | null;
|
|
39942
|
+
objectId: string | null;
|
|
39943
|
+
publisher: string | null;
|
|
39944
|
+
}
|
|
39945
|
+
|
|
39946
|
+
@complex model ocrSettings {
|
|
39947
|
+
isEnabled: boolean | null;
|
|
39948
|
+
maxImageSize: int32 | null;
|
|
39949
|
+
timeout: duration | null;
|
|
39950
|
+
}
|
|
39951
|
+
|
|
39952
|
+
/**
|
|
39953
|
+
* Audit data for Office Native events.
|
|
39954
|
+
*/
|
|
39955
|
+
@open
|
|
39956
|
+
@complex model officeNativeAuditRecord extends auditData {
|
|
39957
|
+
}
|
|
39958
|
+
|
|
39959
|
+
/**
|
|
39960
|
+
* Audit data for OME Portal events.
|
|
39961
|
+
*/
|
|
39962
|
+
@open
|
|
39963
|
+
@complex model omePortalAuditRecord extends auditData {
|
|
39964
|
+
}
|
|
39965
|
+
|
|
39966
|
+
/**
|
|
39967
|
+
* Audit data for On Demand SharePoint Classification events.
|
|
39968
|
+
*/
|
|
39969
|
+
@open
|
|
39970
|
+
@complex model onDemandSharePointClassificationAuditRecord extends auditData {
|
|
39971
|
+
}
|
|
39972
|
+
|
|
39973
|
+
/**
|
|
39974
|
+
* Audit data for OneDrive events.
|
|
39975
|
+
*/
|
|
39976
|
+
@open
|
|
39977
|
+
@complex model oneDriveAuditRecord extends auditData {
|
|
39978
|
+
}
|
|
39979
|
+
|
|
39980
|
+
/**
|
|
39981
|
+
* Audit data for On Premises File Share Scanner DLP events.
|
|
39982
|
+
*/
|
|
39983
|
+
@open
|
|
39984
|
+
@complex model onPremisesFileShareScannerDLPAuditRecord extends auditData {
|
|
39985
|
+
}
|
|
39986
|
+
|
|
39987
|
+
/**
|
|
39988
|
+
* Audit data for On Premises SharePoint Scanner DLP events.
|
|
39989
|
+
*/
|
|
39990
|
+
@open
|
|
39991
|
+
@complex model onPremisesSharePointScannerDLPAuditRecord extends auditData {
|
|
39992
|
+
}
|
|
39993
|
+
|
|
39994
|
+
/**
|
|
39995
|
+
* Audit data for Organizational Data In M365 events.
|
|
39996
|
+
*/
|
|
39997
|
+
@open
|
|
39998
|
+
@complex model organizationalDataInM365AuditRecord extends auditData {
|
|
39999
|
+
}
|
|
40000
|
+
|
|
40001
|
+
/**
|
|
40002
|
+
* Audit data for Outlook Copilot Automation events.
|
|
40003
|
+
*/
|
|
40004
|
+
@open
|
|
40005
|
+
@complex model outlookCopilotAutomationAuditRecord extends auditData {
|
|
40006
|
+
}
|
|
40007
|
+
|
|
40008
|
+
/**
|
|
40009
|
+
* Audit data for OWA Get Access Token For Resource events.
|
|
40010
|
+
*/
|
|
40011
|
+
@open
|
|
40012
|
+
@complex model owaGetAccessTokenForResourceAuditRecord extends auditData {
|
|
40013
|
+
}
|
|
40014
|
+
|
|
40015
|
+
/**
|
|
40016
|
+
* Audit data for P4AI Assessment Category events.
|
|
40017
|
+
*/
|
|
40018
|
+
@open
|
|
40019
|
+
@complex model p4aiAssessmentCategoryRecord extends auditData {
|
|
40020
|
+
}
|
|
40021
|
+
|
|
40022
|
+
/**
|
|
40023
|
+
* Audit data for P4AI Assessment Fabric Scanner events.
|
|
40024
|
+
*/
|
|
40025
|
+
@open
|
|
40026
|
+
@complex model p4aiAssessmentFabricScannerRecord extends auditData {
|
|
40027
|
+
}
|
|
40028
|
+
|
|
40029
|
+
/**
|
|
40030
|
+
* Audit data for P4AI Assessment Location Result events.
|
|
40031
|
+
*/
|
|
40032
|
+
@open
|
|
40033
|
+
@complex model p4aiAssessmentLocationResultRecord extends auditData {
|
|
40034
|
+
}
|
|
40035
|
+
|
|
40036
|
+
/**
|
|
40037
|
+
* Audit data for P4AI Assessment events.
|
|
40038
|
+
*/
|
|
40039
|
+
@open
|
|
40040
|
+
@complex model p4aiAssessmentRecord extends auditData {
|
|
40041
|
+
}
|
|
40042
|
+
|
|
40043
|
+
/**
|
|
40044
|
+
* Audit data for P4 AI Risk Score events.
|
|
40045
|
+
*/
|
|
40046
|
+
@open
|
|
40047
|
+
@complex model p4AIRiskScoreRecord extends auditData {
|
|
40048
|
+
}
|
|
40049
|
+
|
|
40050
|
+
/**
|
|
40051
|
+
* Audit data for People Admin Settings events.
|
|
40052
|
+
*/
|
|
40053
|
+
@open
|
|
40054
|
+
@complex model peopleAdminSettingsAuditRecord extends auditData {
|
|
40055
|
+
}
|
|
40056
|
+
|
|
40057
|
+
/**
|
|
40058
|
+
* Audit data for Physical Badging Signal events.
|
|
40059
|
+
*/
|
|
40060
|
+
@open
|
|
40061
|
+
@complex model physicalBadgingSignalAuditRecord extends auditData {
|
|
40062
|
+
}
|
|
40063
|
+
|
|
40064
|
+
/**
|
|
40065
|
+
* Audit data for Places Directory events.
|
|
40066
|
+
*/
|
|
40067
|
+
@open
|
|
40068
|
+
@complex model placesDirectoryAuditRecord extends auditData {
|
|
40069
|
+
}
|
|
40070
|
+
|
|
40071
|
+
/**
|
|
40072
|
+
* Audit data for Planner Chat Message events.
|
|
40073
|
+
*/
|
|
40074
|
+
@open
|
|
40075
|
+
@complex model plannerChatMessageAuditRecord extends auditData {
|
|
40076
|
+
}
|
|
40077
|
+
|
|
40078
|
+
/**
|
|
40079
|
+
* Audit data for Planner Chat Message List events.
|
|
40080
|
+
*/
|
|
40081
|
+
@open
|
|
40082
|
+
@complex model plannerChatMessageListAuditRecord extends auditData {
|
|
40083
|
+
}
|
|
40084
|
+
|
|
40085
|
+
/**
|
|
40086
|
+
* Audit data for Planner Copy Plan events.
|
|
40087
|
+
*/
|
|
40088
|
+
@open
|
|
40089
|
+
@complex model plannerCopyPlanAuditRecord extends auditData {
|
|
40090
|
+
}
|
|
40091
|
+
|
|
40092
|
+
/**
|
|
40093
|
+
* Audit data for Planner Goal events.
|
|
40094
|
+
*/
|
|
40095
|
+
@open
|
|
40096
|
+
@complex model plannerGoalAuditRecord extends auditData {
|
|
40097
|
+
}
|
|
40098
|
+
|
|
40099
|
+
/**
|
|
40100
|
+
* Audit data for Planner Goal List events.
|
|
40101
|
+
*/
|
|
40102
|
+
@open
|
|
40103
|
+
@complex model plannerGoalListAuditRecord extends auditData {
|
|
40104
|
+
}
|
|
40105
|
+
|
|
40106
|
+
/**
|
|
40107
|
+
* Audit data for Planner Plan events.
|
|
40108
|
+
*/
|
|
40109
|
+
@open
|
|
40110
|
+
@complex model plannerPlanAuditRecord extends auditData {
|
|
40111
|
+
}
|
|
40112
|
+
|
|
40113
|
+
/**
|
|
40114
|
+
* Audit data for Planner Plan List events.
|
|
40115
|
+
*/
|
|
40116
|
+
@open
|
|
40117
|
+
@complex model plannerPlanListAuditRecord extends auditData {
|
|
40118
|
+
}
|
|
40119
|
+
|
|
40120
|
+
/**
|
|
40121
|
+
* Audit data for Planner Plan Sensitivity Label events.
|
|
40122
|
+
*/
|
|
40123
|
+
@open
|
|
40124
|
+
@complex model plannerPlanSensitivityLabelAuditRecord extends auditData {
|
|
40125
|
+
}
|
|
40126
|
+
|
|
40127
|
+
/**
|
|
40128
|
+
* Audit data for Planner Roster events.
|
|
40129
|
+
*/
|
|
40130
|
+
@open
|
|
40131
|
+
@complex model plannerRosterAuditRecord extends auditData {
|
|
40132
|
+
}
|
|
40133
|
+
|
|
40134
|
+
/**
|
|
40135
|
+
* Audit data for Planner Roster Sensitivity Label events.
|
|
40136
|
+
*/
|
|
40137
|
+
@open
|
|
40138
|
+
@complex model plannerRosterSensitivityLabelAuditRecord extends auditData {
|
|
40139
|
+
}
|
|
40140
|
+
|
|
40141
|
+
/**
|
|
40142
|
+
* Audit data for Planner Task events.
|
|
40143
|
+
*/
|
|
40144
|
+
@open
|
|
40145
|
+
@complex model plannerTaskAuditRecord extends auditData {
|
|
40146
|
+
}
|
|
40147
|
+
|
|
40148
|
+
/**
|
|
40149
|
+
* Audit data for Planner Task List events.
|
|
40150
|
+
*/
|
|
40151
|
+
@open
|
|
40152
|
+
@complex model plannerTaskListAuditRecord extends auditData {
|
|
40153
|
+
}
|
|
40154
|
+
|
|
40155
|
+
/**
|
|
40156
|
+
* Audit data for Planner Tenant Settings events.
|
|
40157
|
+
*/
|
|
40158
|
+
@open
|
|
40159
|
+
@complex model plannerTenantSettingsAuditRecord extends auditData {
|
|
40160
|
+
}
|
|
40161
|
+
|
|
40162
|
+
/**
|
|
40163
|
+
* Audit data for Policy Config Change events.
|
|
40164
|
+
*/
|
|
40165
|
+
@open
|
|
40166
|
+
@complex model policyConfigChangeAuditRecord extends auditData {
|
|
40167
|
+
}
|
|
40168
|
+
|
|
40169
|
+
/**
|
|
40170
|
+
* Audit data for PowerApps Audit App events.
|
|
40171
|
+
*/
|
|
40172
|
+
@open
|
|
40173
|
+
@complex model powerAppsAuditAppRecord extends auditData {
|
|
40174
|
+
}
|
|
40175
|
+
|
|
40176
|
+
/**
|
|
40177
|
+
* Audit data for PowerApps Audit Plan events.
|
|
40178
|
+
*/
|
|
40179
|
+
@open
|
|
40180
|
+
@complex model powerAppsAuditPlanRecord extends auditData {
|
|
40181
|
+
}
|
|
40182
|
+
|
|
40183
|
+
/**
|
|
40184
|
+
* Audit data for PowerApps Audit Resource events.
|
|
40185
|
+
*/
|
|
40186
|
+
@open
|
|
40187
|
+
@complex model powerAppsAuditResourceRecord extends auditData {
|
|
40188
|
+
}
|
|
40189
|
+
|
|
40190
|
+
/**
|
|
40191
|
+
* Audit data for Power BI events.
|
|
40192
|
+
*/
|
|
40193
|
+
@open
|
|
40194
|
+
@complex model powerBIAuditRecord extends auditData {
|
|
40195
|
+
}
|
|
40196
|
+
|
|
40197
|
+
/**
|
|
40198
|
+
* Audit data for Power BI DLP events.
|
|
40199
|
+
*/
|
|
40200
|
+
@open
|
|
40201
|
+
@complex model powerBIDlpAuditRecord extends auditData {
|
|
40202
|
+
}
|
|
40203
|
+
|
|
40204
|
+
/**
|
|
40205
|
+
* Audit data for Power Pages Site events.
|
|
40206
|
+
*/
|
|
40207
|
+
@open
|
|
40208
|
+
@complex model powerPagesSiteAuditRecord extends auditData {
|
|
40209
|
+
}
|
|
40210
|
+
|
|
40211
|
+
/**
|
|
40212
|
+
* Audit data for Power Platform Admin DLP events.
|
|
40213
|
+
*/
|
|
40214
|
+
@open
|
|
40215
|
+
@complex model powerPlatformAdminDlpAuditRecord extends auditData {
|
|
40216
|
+
}
|
|
40217
|
+
|
|
40218
|
+
/**
|
|
40219
|
+
* Audit data for Power Platform Admin Environment events.
|
|
40220
|
+
*/
|
|
40221
|
+
@open
|
|
40222
|
+
@complex model powerPlatformAdminEnvironmentAuditRecord extends auditData {
|
|
40223
|
+
}
|
|
40224
|
+
|
|
40225
|
+
/**
|
|
40226
|
+
* Audit data for Power Platform Administrator Activity events.
|
|
40227
|
+
*/
|
|
40228
|
+
@open
|
|
40229
|
+
@complex model powerPlatformAdministratorActivityRecord extends auditData {
|
|
40230
|
+
}
|
|
40231
|
+
|
|
40232
|
+
/**
|
|
40233
|
+
* Audit data for Power Platform Lockbox Resource Access Request events.
|
|
40234
|
+
*/
|
|
40235
|
+
@open
|
|
40236
|
+
@complex model powerPlatformLockboxResourceAccessRequestAuditRecord extends auditData {
|
|
40237
|
+
}
|
|
40238
|
+
|
|
40239
|
+
/**
|
|
40240
|
+
* Audit data for Power Platform Lockbox Resource Command events.
|
|
40241
|
+
*/
|
|
40242
|
+
@open
|
|
40243
|
+
@complex model powerPlatformLockboxResourceCommandAuditRecord extends auditData {
|
|
40244
|
+
}
|
|
40245
|
+
|
|
40246
|
+
/**
|
|
40247
|
+
* Audit data for Power Platform Service Activity events.
|
|
40248
|
+
*/
|
|
40249
|
+
@open
|
|
40250
|
+
@complex model powerPlatformServiceActivityAuditRecord extends auditData {
|
|
40251
|
+
}
|
|
40252
|
+
|
|
40253
|
+
/**
|
|
40254
|
+
* Audit data for Power Platform Tenant Isolation events.
|
|
40255
|
+
*/
|
|
40256
|
+
@open
|
|
40257
|
+
@complex model powerPlatformTenantIsolationRecord extends auditData {
|
|
40258
|
+
}
|
|
40259
|
+
|
|
40260
|
+
/**
|
|
40261
|
+
* Audit data for Privacy Data Match events.
|
|
40262
|
+
*/
|
|
40263
|
+
@open
|
|
40264
|
+
@complex model privacyDataMatchAuditRecord extends auditData {
|
|
40265
|
+
}
|
|
40266
|
+
|
|
40267
|
+
/**
|
|
40268
|
+
* Audit data for Privacy Data Minimization events.
|
|
40269
|
+
*/
|
|
40270
|
+
@open
|
|
40271
|
+
@complex model privacyDataMinimizationRecord extends auditData {
|
|
40272
|
+
}
|
|
40273
|
+
|
|
40274
|
+
/**
|
|
40275
|
+
* Audit data for Privacy Digest Email events.
|
|
40276
|
+
*/
|
|
40277
|
+
@open
|
|
40278
|
+
@complex model privacyDigestEmailRecord extends auditData {
|
|
40279
|
+
}
|
|
40280
|
+
|
|
40281
|
+
/**
|
|
40282
|
+
* Audit data for Privacy Open Access events.
|
|
40283
|
+
*/
|
|
40284
|
+
@open
|
|
40285
|
+
@complex model privacyOpenAccessAuditRecord extends auditData {
|
|
40286
|
+
}
|
|
40287
|
+
|
|
40288
|
+
/**
|
|
40289
|
+
* Audit data for Privacy Portal events.
|
|
40290
|
+
*/
|
|
40291
|
+
@open
|
|
40292
|
+
@complex model privacyPortalAuditRecord extends auditData {
|
|
40293
|
+
}
|
|
40294
|
+
|
|
40295
|
+
/**
|
|
40296
|
+
* Audit data for Privacy Remediation Action events.
|
|
40297
|
+
*/
|
|
40298
|
+
@open
|
|
40299
|
+
@complex model privacyRemediationActionRecord extends auditData {
|
|
40300
|
+
}
|
|
40301
|
+
|
|
40302
|
+
/**
|
|
40303
|
+
* Audit data for Privacy Remediation events.
|
|
40304
|
+
*/
|
|
40305
|
+
@open
|
|
40306
|
+
@complex model privacyRemediationRecord extends auditData {
|
|
40307
|
+
}
|
|
40308
|
+
|
|
40309
|
+
/**
|
|
40310
|
+
* Audit data for Priva Privacy Assessment Operation events.
|
|
40311
|
+
*/
|
|
40312
|
+
@open
|
|
40313
|
+
@complex model privaPrivacyAssessmentOperationRecord extends auditData {
|
|
40314
|
+
}
|
|
40315
|
+
|
|
40316
|
+
/**
|
|
40317
|
+
* Audit data for Priva Privacy Consent Operation events.
|
|
40318
|
+
*/
|
|
40319
|
+
@open
|
|
40320
|
+
@complex model privaPrivacyConsentOperationRecord extends auditData {
|
|
40321
|
+
}
|
|
40322
|
+
|
|
40323
|
+
@complex model processEvidence extends alertEvidence {
|
|
40324
|
+
detectionStatus: detectionStatus | null;
|
|
40325
|
+
imageFile: fileDetails | null;
|
|
40326
|
+
mdeDeviceId: string | null;
|
|
40327
|
+
parentProcessCreationDateTime: offsetDateTime | null;
|
|
40328
|
+
parentProcessId: int64 | null;
|
|
40329
|
+
parentProcessImageFile: fileDetails | null;
|
|
40330
|
+
processCommandLine: string | null;
|
|
40331
|
+
processCreationDateTime: offsetDateTime | null;
|
|
40332
|
+
processId: int64 | null;
|
|
40333
|
+
userAccount: userAccount | null;
|
|
40334
|
+
}
|
|
40335
|
+
|
|
40336
|
+
/**
|
|
40337
|
+
* Audit data for Microsoft Project events.
|
|
40338
|
+
*/
|
|
40339
|
+
@open
|
|
40340
|
+
@complex model projectAuditRecord extends auditData {
|
|
40341
|
+
}
|
|
40342
|
+
|
|
40343
|
+
/**
|
|
40344
|
+
* Audit data for Project for the Web Assigned To Me Settings events.
|
|
40345
|
+
*/
|
|
40346
|
+
@open
|
|
40347
|
+
@complex model projectForTheWebAssignedToMeSettingsAuditRecord extends auditData {
|
|
40348
|
+
}
|
|
40349
|
+
|
|
40350
|
+
/**
|
|
40351
|
+
* Audit data for Project for the Web Project events.
|
|
40352
|
+
*/
|
|
40353
|
+
@open
|
|
40354
|
+
@complex model projectForTheWebProjectAuditRecord extends auditData {
|
|
40355
|
+
}
|
|
40356
|
+
|
|
40357
|
+
/**
|
|
40358
|
+
* Audit data for Project for the Web Project Settings events.
|
|
40359
|
+
*/
|
|
40360
|
+
@open
|
|
40361
|
+
@complex model projectForTheWebProjectSettingsAuditRecord extends auditData {
|
|
40362
|
+
}
|
|
40363
|
+
|
|
40364
|
+
/**
|
|
40365
|
+
* Audit data for Project for the Web Roadmap events.
|
|
40366
|
+
*/
|
|
40367
|
+
@open
|
|
40368
|
+
@complex model projectForTheWebRoadmapAuditRecord extends auditData {
|
|
40369
|
+
}
|
|
40370
|
+
|
|
40371
|
+
/**
|
|
40372
|
+
* Audit data for Project for the Web Roadmap Item events.
|
|
40373
|
+
*/
|
|
40374
|
+
@open
|
|
40375
|
+
@complex model projectForTheWebRoadmapItemAuditRecord extends auditData {
|
|
40376
|
+
}
|
|
40377
|
+
|
|
40378
|
+
/**
|
|
40379
|
+
* Audit data for Project for the Web Roadmap Settings events.
|
|
40380
|
+
*/
|
|
40381
|
+
@open
|
|
40382
|
+
@complex model projectForTheWebRoadmapSettingsAuditRecord extends auditData {
|
|
40383
|
+
}
|
|
40384
|
+
|
|
40385
|
+
/**
|
|
40386
|
+
* Audit data for Project for the Web Task events.
|
|
40387
|
+
*/
|
|
40388
|
+
@open
|
|
40389
|
+
@complex model projectForTheWebTaskAuditRecord extends auditData {
|
|
40390
|
+
}
|
|
40391
|
+
|
|
40392
|
+
/**
|
|
40393
|
+
* Audit data for Exchange public folder events.
|
|
40394
|
+
*/
|
|
40395
|
+
@open
|
|
40396
|
+
@complex model publicFolderAuditRecord extends auditData {
|
|
40397
|
+
}
|
|
40398
|
+
|
|
40399
|
+
/**
|
|
40400
|
+
* Audit data for Purview Insider Risk Alerts events.
|
|
40401
|
+
*/
|
|
40402
|
+
@open
|
|
40403
|
+
@complex model purviewInsiderRiskAlertsRecord extends auditData {
|
|
40404
|
+
}
|
|
40405
|
+
|
|
40406
|
+
/**
|
|
40407
|
+
* Audit data for Purview Insider Risk Cases events.
|
|
40408
|
+
*/
|
|
40409
|
+
@open
|
|
40410
|
+
@complex model purviewInsiderRiskCasesRecord extends auditData {
|
|
40411
|
+
}
|
|
40412
|
+
|
|
40413
|
+
/**
|
|
40414
|
+
* Audit data for Purview MC Recommendation events.
|
|
40415
|
+
*/
|
|
40416
|
+
@open
|
|
40417
|
+
@complex model purviewMCRecommendationRecord extends auditData {
|
|
40418
|
+
}
|
|
40419
|
+
|
|
40420
|
+
/**
|
|
40421
|
+
* Audit data for Purview Posture Agent events.
|
|
40422
|
+
*/
|
|
40423
|
+
@open
|
|
40424
|
+
@complex model purviewPostureAgentAuditRecord extends auditData {
|
|
40425
|
+
}
|
|
40426
|
+
|
|
40427
|
+
/**
|
|
40428
|
+
* Audit data for quarantine events.
|
|
40429
|
+
*/
|
|
40430
|
+
@open
|
|
40431
|
+
@complex model quarantineAuditRecord extends auditData {
|
|
40432
|
+
}
|
|
40433
|
+
|
|
40434
|
+
/**
|
|
40435
|
+
* Audit data for Records Management events.
|
|
40436
|
+
*/
|
|
40437
|
+
@open
|
|
40438
|
+
@complex model recordsManagementAuditRecord extends auditData {
|
|
40439
|
+
}
|
|
40440
|
+
|
|
40441
|
+
@complex model redundancyDetectionSettings {
|
|
40442
|
+
isEnabled: boolean | null;
|
|
40443
|
+
maxWords: int32 | null;
|
|
40444
|
+
minWords: int32 | null;
|
|
40445
|
+
similarityThreshold: int32 | null;
|
|
40446
|
+
}
|
|
40447
|
+
|
|
40448
|
+
@complex model registryKeyEvidence extends alertEvidence {
|
|
40449
|
+
registryHive: string | null;
|
|
40450
|
+
registryKey: string | null;
|
|
40451
|
+
}
|
|
40452
|
+
|
|
40453
|
+
@complex model registryValueEvidence extends alertEvidence {
|
|
40454
|
+
mdeDeviceId: string | null;
|
|
40455
|
+
registryHive: string | null;
|
|
40456
|
+
registryKey: string | null;
|
|
40457
|
+
registryValue: string | null;
|
|
40458
|
+
registryValueName: string | null;
|
|
40459
|
+
registryValueType: string | null;
|
|
40460
|
+
}
|
|
40461
|
+
|
|
40462
|
+
@complex model reportFileMetadata {
|
|
40463
|
+
downloadUrl: string | null;
|
|
40464
|
+
fileName: string | null;
|
|
40465
|
+
size: int64 | null;
|
|
40466
|
+
}
|
|
40467
|
+
|
|
40468
|
+
/**
|
|
40469
|
+
* Audit data for Report Submission events.
|
|
40470
|
+
*/
|
|
40471
|
+
@open
|
|
40472
|
+
@complex model reportSubmission extends auditData {
|
|
40473
|
+
}
|
|
40474
|
+
|
|
40475
|
+
/**
|
|
40476
|
+
* Audit data for Report Submission Result Detail events.
|
|
40477
|
+
*/
|
|
40478
|
+
@open
|
|
40479
|
+
@complex model reportSubmissionResultDetail extends auditData {
|
|
40480
|
+
}
|
|
40481
|
+
|
|
40482
|
+
@complex model resourceAccessEvent {
|
|
40483
|
+
accessDateTime: offsetDateTime | null;
|
|
40484
|
+
accountId: string | null;
|
|
40485
|
+
ipAddress: string | null;
|
|
40486
|
+
resourceIdentifier: string | null;
|
|
40487
|
+
}
|
|
40488
|
+
|
|
40489
|
+
/**
|
|
40490
|
+
* Audit data for Restricted Mode events.
|
|
40491
|
+
*/
|
|
40492
|
+
@open
|
|
40493
|
+
@complex model restrictedModeAuditRecord extends auditData {
|
|
40494
|
+
}
|
|
40495
|
+
|
|
40496
|
+
@abstract
|
|
40497
|
+
@complex model retentionDuration {
|
|
40498
|
+
}
|
|
40499
|
+
|
|
40500
|
+
@complex model retentionDurationForever extends retentionDuration {
|
|
40501
|
+
}
|
|
40502
|
+
|
|
40503
|
+
@complex model retentionDurationInDays extends retentionDuration {
|
|
40504
|
+
days: int32 | null;
|
|
40505
|
+
}
|
|
40506
|
+
|
|
40507
|
+
@complex model retentionEventStatus {
|
|
40508
|
+
error: reference.`microsoft.graph`.publicError | null;
|
|
40509
|
+
status: eventStatusType | null;
|
|
40510
|
+
}
|
|
40511
|
+
|
|
40512
|
+
/**
|
|
40513
|
+
* Audit data for Retention Policy events.
|
|
40514
|
+
*/
|
|
40515
|
+
@open
|
|
40516
|
+
@complex model retentionPolicyAuditRecord extends auditData {
|
|
40517
|
+
}
|
|
40518
|
+
|
|
40519
|
+
/**
|
|
40520
|
+
* Audit data for RTI Operations Agent events.
|
|
40521
|
+
*/
|
|
40522
|
+
@open
|
|
40523
|
+
@complex model rtiOperationsAgentAuditRecord extends auditData {
|
|
40524
|
+
}
|
|
40525
|
+
|
|
40526
|
+
@complex model sasTokenEvidence extends alertEvidence {
|
|
40527
|
+
allowedIpAddresses: string | null;
|
|
40528
|
+
allowedResourceTypes: string[] | null;
|
|
40529
|
+
allowedServices: string[] | null;
|
|
40530
|
+
expiryDateTime: offsetDateTime | null;
|
|
40531
|
+
permissions: string[] | null;
|
|
40532
|
+
protocol: string | null;
|
|
40533
|
+
signatureHash: string | null;
|
|
40534
|
+
signedWith: string | null;
|
|
40535
|
+
startDateTime: offsetDateTime | null;
|
|
40536
|
+
storageResource: azureResourceEvidence | null;
|
|
40537
|
+
}
|
|
40538
|
+
|
|
40539
|
+
/**
|
|
40540
|
+
* Audit data for SBP Configuration Event events.
|
|
40541
|
+
*/
|
|
40542
|
+
@open
|
|
40543
|
+
@complex model sbpConfigurationEventRecord extends auditData {
|
|
40544
|
+
}
|
|
40545
|
+
|
|
40546
|
+
/**
|
|
40547
|
+
* Audit data for SBP Usage Event events.
|
|
40548
|
+
*/
|
|
40549
|
+
@open
|
|
40550
|
+
@complex model sbpUsageEventRecord extends auditData {
|
|
40551
|
+
}
|
|
40552
|
+
|
|
40553
|
+
/**
|
|
40554
|
+
* Audit data for Secure Score evidence events.
|
|
40555
|
+
*/
|
|
40556
|
+
@open
|
|
40557
|
+
@complex model scoreEvidence extends auditData {
|
|
40558
|
+
}
|
|
40559
|
+
|
|
40560
|
+
/**
|
|
40561
|
+
* Audit data for Score Platform Generic events.
|
|
40562
|
+
*/
|
|
40563
|
+
@open
|
|
40564
|
+
@complex model scorePlatformGenericAuditRecord extends auditData {
|
|
40565
|
+
}
|
|
40566
|
+
|
|
40567
|
+
/**
|
|
40568
|
+
* Audit data for Script Run events.
|
|
40569
|
+
*/
|
|
40570
|
+
@open
|
|
40571
|
+
@complex model scriptRunAuditRecord extends auditData {
|
|
40572
|
+
}
|
|
40573
|
+
|
|
40574
|
+
/**
|
|
40575
|
+
* Audit data for search events.
|
|
40576
|
+
*/
|
|
40577
|
+
@open
|
|
40578
|
+
@complex model searchAuditRecord extends auditData {
|
|
40579
|
+
}
|
|
40580
|
+
|
|
40581
|
+
/**
|
|
40582
|
+
* Audit data for Security Compliance Alert events.
|
|
40583
|
+
*/
|
|
40584
|
+
@open
|
|
40585
|
+
@complex model securityComplianceAlertRecord extends auditData {
|
|
40586
|
+
}
|
|
40587
|
+
|
|
40588
|
+
/**
|
|
40589
|
+
* Audit data for Security Compliance Center EOP cmdlet events.
|
|
40590
|
+
*/
|
|
40591
|
+
@open
|
|
40592
|
+
@complex model securityComplianceCenterEOPCmdletAuditRecord extends auditData {
|
|
40593
|
+
}
|
|
40594
|
+
|
|
40595
|
+
/**
|
|
40596
|
+
* Audit data for Security Compliance Insights events.
|
|
40597
|
+
*/
|
|
40598
|
+
@open
|
|
40599
|
+
@complex model securityComplianceInsightsAuditRecord extends auditData {
|
|
40600
|
+
}
|
|
40601
|
+
|
|
40602
|
+
/**
|
|
40603
|
+
* Audit data for Security Compliance RBAC events.
|
|
40604
|
+
*/
|
|
40605
|
+
@open
|
|
40606
|
+
@complex model securityComplianceRBACAuditRecord extends auditData {
|
|
40607
|
+
}
|
|
40608
|
+
|
|
40609
|
+
/**
|
|
40610
|
+
* Audit data for Security Compliance User Change events.
|
|
40611
|
+
*/
|
|
40612
|
+
@open
|
|
40613
|
+
@complex model securityComplianceUserChangeAuditRecord extends auditData {
|
|
40614
|
+
}
|
|
40615
|
+
|
|
40616
|
+
/**
|
|
40617
|
+
* Audit data for Security Copilot Identity Management events.
|
|
40618
|
+
*/
|
|
40619
|
+
@open
|
|
40620
|
+
@complex model securityCopilotIdentityManagementAuditRecord extends auditData {
|
|
40621
|
+
}
|
|
40622
|
+
|
|
40623
|
+
/**
|
|
40624
|
+
* Audit data for Security Development Lifecycle AI Log events.
|
|
40625
|
+
*/
|
|
40626
|
+
@open
|
|
40627
|
+
@complex model securityDevelopmentLifecycleAILogAuditRecord extends auditData {
|
|
40628
|
+
}
|
|
40629
|
+
|
|
40630
|
+
@complex model securityGroupEvidence extends alertEvidence {
|
|
40631
|
+
activeDirectoryObjectGuid: guid | null;
|
|
40632
|
+
displayName: string | null;
|
|
40633
|
+
distinguishedName: string | null;
|
|
40634
|
+
friendlyName: string | null;
|
|
40635
|
+
securityGroupId: string | null;
|
|
40636
|
+
sid: string | null;
|
|
40637
|
+
}
|
|
40638
|
+
|
|
40639
|
+
/**
|
|
40640
|
+
* Audit data for Sensitive Info Remediation Agent events.
|
|
40641
|
+
*/
|
|
40642
|
+
@open
|
|
40643
|
+
@complex model sensitiveInfoRemediationAgentDataRecord extends auditData {
|
|
40644
|
+
}
|
|
40645
|
+
|
|
40646
|
+
/**
|
|
40647
|
+
* Audit data for Sensitivity Label Action events.
|
|
40648
|
+
*/
|
|
40649
|
+
@open
|
|
40650
|
+
@complex model sensitivityLabelActionAuditRecord extends auditData {
|
|
40651
|
+
}
|
|
40652
|
+
|
|
40653
|
+
/**
|
|
40654
|
+
* Audit data for Sensitivity Labeled File Action events.
|
|
40655
|
+
*/
|
|
40656
|
+
@open
|
|
40657
|
+
@complex model sensitivityLabeledFileActionAuditRecord extends auditData {
|
|
40658
|
+
}
|
|
40659
|
+
|
|
40660
|
+
/**
|
|
40661
|
+
* Audit data for Sensitivity Label Policy Match events.
|
|
40662
|
+
*/
|
|
40663
|
+
@open
|
|
40664
|
+
@complex model sensitivityLabelPolicyMatchAuditRecord extends auditData {
|
|
40665
|
+
}
|
|
40666
|
+
|
|
40667
|
+
@complex model sensorDeploymentPackage {
|
|
40668
|
+
downloadUrl: string;
|
|
40669
|
+
version: string;
|
|
40670
|
+
}
|
|
40671
|
+
|
|
40672
|
+
@complex model sensorSettings {
|
|
40673
|
+
description: string;
|
|
40674
|
+
domainControllerDnsNames: string[] | null;
|
|
40675
|
+
isDelayedDeploymentEnabled: boolean | null;
|
|
40676
|
+
@contains networkAdapters: networkAdapter[];
|
|
40677
|
+
}
|
|
40678
|
+
|
|
40679
|
+
/**
|
|
40680
|
+
* Audit data for Sentinel AI Tool events.
|
|
40681
|
+
*/
|
|
40682
|
+
@open
|
|
40683
|
+
@complex model sentinelAIToolAuditRecord extends auditData {
|
|
40684
|
+
}
|
|
40685
|
+
|
|
40686
|
+
/**
|
|
40687
|
+
* Audit data for Sentinel Graph events.
|
|
40688
|
+
*/
|
|
40689
|
+
@open
|
|
40690
|
+
@complex model sentinelGraphAuditRecord extends auditData {
|
|
40691
|
+
}
|
|
40692
|
+
|
|
40693
|
+
/**
|
|
40694
|
+
* Audit data for Sentinel Job events.
|
|
40695
|
+
*/
|
|
40696
|
+
@open
|
|
40697
|
+
@complex model sentinelJobAuditRecord extends auditData {
|
|
40698
|
+
}
|
|
40699
|
+
|
|
40700
|
+
/**
|
|
40701
|
+
* Audit data for Sentinel KQL On Lake events.
|
|
40702
|
+
*/
|
|
40703
|
+
@open
|
|
40704
|
+
@complex model sentinelKQLOnLakeAuditRecord extends auditData {
|
|
40705
|
+
}
|
|
40706
|
+
|
|
40707
|
+
/**
|
|
40708
|
+
* Audit data for Sentinel Lake Data Onboarding events.
|
|
40709
|
+
*/
|
|
40710
|
+
@open
|
|
40711
|
+
@complex model sentinelLakeDataOnboardingAuditRecord extends auditData {
|
|
40712
|
+
}
|
|
40713
|
+
|
|
40714
|
+
/**
|
|
40715
|
+
* Audit data for Sentinel Lake Encryption events.
|
|
40716
|
+
*/
|
|
40717
|
+
@open
|
|
40718
|
+
@complex model sentinelLakeEncryptionAuditRecord extends auditData {
|
|
40719
|
+
}
|
|
40720
|
+
|
|
40721
|
+
/**
|
|
40722
|
+
* Audit data for Sentinel Lake Onboarding events.
|
|
40723
|
+
*/
|
|
40724
|
+
@open
|
|
40725
|
+
@complex model sentinelLakeOnboardingAuditRecord extends auditData {
|
|
40726
|
+
}
|
|
40727
|
+
|
|
40728
|
+
/**
|
|
40729
|
+
* Audit data for Sentinel Notebook On Lake events.
|
|
40730
|
+
*/
|
|
40731
|
+
@open
|
|
40732
|
+
@complex model sentinelNotebookOnLakeAuditRecord extends auditData {
|
|
40733
|
+
}
|
|
40734
|
+
|
|
40735
|
+
/**
|
|
40736
|
+
* Audit data for Sentinel Package events.
|
|
40737
|
+
*/
|
|
40738
|
+
@open
|
|
40739
|
+
@complex model sentinelPackageAuditRecord extends auditData {
|
|
40740
|
+
}
|
|
40741
|
+
|
|
40742
|
+
@complex model servicePrincipalEvidence extends alertEvidence {
|
|
40743
|
+
appId: string | null;
|
|
40744
|
+
appOwnerTenantId: string | null;
|
|
40745
|
+
servicePrincipalName: string | null;
|
|
40746
|
+
servicePrincipalObjectId: string | null;
|
|
40747
|
+
servicePrincipalType: servicePrincipalType | null;
|
|
40748
|
+
tenantId: string | null;
|
|
40749
|
+
}
|
|
40750
|
+
|
|
40751
|
+
/**
|
|
40752
|
+
* Audit data for SharePoint App Permission Operation events.
|
|
40753
|
+
*/
|
|
40754
|
+
@open
|
|
40755
|
+
@complex model sharePointAppPermissionOperationAuditRecord extends auditData {
|
|
40756
|
+
}
|
|
40757
|
+
|
|
40758
|
+
/**
|
|
40759
|
+
* Audit data for SharePoint events.
|
|
40760
|
+
*/
|
|
40761
|
+
@open
|
|
40762
|
+
@complex model sharePointAuditRecord extends auditData {
|
|
40763
|
+
}
|
|
40764
|
+
|
|
40765
|
+
/**
|
|
40766
|
+
* Audit data for SharePoint Comment Operation events.
|
|
40767
|
+
*/
|
|
40768
|
+
@open
|
|
40769
|
+
@complex model sharePointCommentOperationAuditRecord extends auditData {
|
|
40770
|
+
}
|
|
40771
|
+
|
|
40772
|
+
/**
|
|
40773
|
+
* Audit data for SharePoint Content Security Policy events.
|
|
40774
|
+
*/
|
|
40775
|
+
@open
|
|
40776
|
+
@complex model sharePointContentSecurityPolicyAuditRecord extends auditData {
|
|
40777
|
+
}
|
|
40778
|
+
|
|
40779
|
+
/**
|
|
40780
|
+
* Audit data for SharePoint Content Type Operation events.
|
|
40781
|
+
*/
|
|
40782
|
+
@open
|
|
40783
|
+
@complex model sharePointContentTypeOperationAuditRecord extends auditData {
|
|
40784
|
+
}
|
|
40785
|
+
|
|
40786
|
+
/**
|
|
40787
|
+
* Audit data for SharePoint E Signature events.
|
|
40788
|
+
*/
|
|
40789
|
+
@open
|
|
40790
|
+
@complex model sharePointESignatureAuditRecord extends auditData {
|
|
40791
|
+
}
|
|
40792
|
+
|
|
40793
|
+
/**
|
|
40794
|
+
* Audit data for SharePoint Field Operation events.
|
|
40795
|
+
*/
|
|
40796
|
+
@open
|
|
40797
|
+
@complex model sharePointFieldOperationAuditRecord extends auditData {
|
|
40798
|
+
}
|
|
40799
|
+
|
|
40800
|
+
/**
|
|
40801
|
+
* Audit data for SharePoint File Operation events.
|
|
40802
|
+
*/
|
|
40803
|
+
@open
|
|
40804
|
+
@complex model sharePointFileOperationAuditRecord extends auditData {
|
|
40805
|
+
}
|
|
40806
|
+
|
|
40807
|
+
/**
|
|
40808
|
+
* Audit data for SharePoint List Item Operation events.
|
|
40809
|
+
*/
|
|
40810
|
+
@open
|
|
40811
|
+
@complex model sharePointListItemOperationAuditRecord extends auditData {
|
|
40812
|
+
}
|
|
40813
|
+
|
|
40814
|
+
/**
|
|
40815
|
+
* Audit data for SharePoint List Operation events.
|
|
40816
|
+
*/
|
|
40817
|
+
@open
|
|
40818
|
+
@complex model sharePointListOperationAuditRecord extends auditData {
|
|
40819
|
+
}
|
|
40820
|
+
|
|
40821
|
+
/**
|
|
40822
|
+
* Audit data for SharePoint Sharing Operation events.
|
|
40823
|
+
*/
|
|
40824
|
+
@open
|
|
40825
|
+
@complex model sharePointSharingOperationAuditRecord extends auditData {
|
|
40826
|
+
}
|
|
40827
|
+
|
|
40828
|
+
@complex model singlePropertySchema {
|
|
40829
|
+
name: string | null;
|
|
40830
|
+
type: string | null;
|
|
40831
|
+
}
|
|
40832
|
+
|
|
40833
|
+
/**
|
|
40834
|
+
* Audit data for Skype for Business cmdlets events.
|
|
40835
|
+
*/
|
|
40836
|
+
@open
|
|
40837
|
+
@complex model skypeForBusinessCmdletsAuditRecord extends auditData {
|
|
40838
|
+
}
|
|
40839
|
+
|
|
40840
|
+
/**
|
|
40841
|
+
* Audit data for Skype for Business PSTN Usage events.
|
|
40842
|
+
*/
|
|
40843
|
+
@open
|
|
40844
|
+
@complex model skypeForBusinessPSTNUsageAuditRecord extends auditData {
|
|
40845
|
+
}
|
|
40846
|
+
|
|
40847
|
+
/**
|
|
40848
|
+
* Audit data for Skype for Business Users Blocked events.
|
|
40849
|
+
*/
|
|
40850
|
+
@open
|
|
40851
|
+
@complex model skypeForBusinessUsersBlockedAuditRecord extends auditData {
|
|
40852
|
+
}
|
|
40853
|
+
|
|
40854
|
+
/**
|
|
40855
|
+
* Audit data for Sonar Detonation Content Meta events.
|
|
40856
|
+
*/
|
|
40857
|
+
@open
|
|
40858
|
+
@complex model sonarDetonationContentMetadata extends auditData {
|
|
40859
|
+
}
|
|
40860
|
+
|
|
40861
|
+
/**
|
|
40862
|
+
* Audit data for Sonar Detonation Entity events.
|
|
40863
|
+
*/
|
|
40864
|
+
@open
|
|
40865
|
+
@complex model sonarDetonationEntityAuditRecord extends auditData {
|
|
40866
|
+
}
|
|
40867
|
+
|
|
40868
|
+
/**
|
|
40869
|
+
* Audit data for Sonar File Detonation Entity events.
|
|
40870
|
+
*/
|
|
40871
|
+
@open
|
|
40872
|
+
@complex model sonarFileDetonationEntityAuditRecord extends auditData {
|
|
40873
|
+
}
|
|
40874
|
+
|
|
40875
|
+
/**
|
|
40876
|
+
* Audit data for Sonar Submission Entity events.
|
|
40877
|
+
*/
|
|
40878
|
+
@open
|
|
40879
|
+
@complex model sonarSubmissionEntityAuditRecord extends auditData {
|
|
40880
|
+
}
|
|
40881
|
+
|
|
40882
|
+
/**
|
|
40883
|
+
* Audit data for Sonar URL Detonation Entity events.
|
|
40884
|
+
*/
|
|
40885
|
+
@open
|
|
40886
|
+
@complex model sonarUrlDetonationEntityAuditRecord extends auditData {
|
|
40887
|
+
}
|
|
40888
|
+
|
|
40889
|
+
/**
|
|
40890
|
+
* Audit data for Spark Core Custom Live Pool events.
|
|
40891
|
+
*/
|
|
40892
|
+
@open
|
|
40893
|
+
@complex model sparkCoreCustomLivePoolRecord extends auditData {
|
|
40894
|
+
}
|
|
40895
|
+
|
|
40896
|
+
@complex model sslCertificateEntity {
|
|
40897
|
+
address: reference.`microsoft.graph`.physicalAddress | null;
|
|
40898
|
+
alternateNames: string[] | null;
|
|
40899
|
+
commonName: string | null;
|
|
40900
|
+
email: string | null;
|
|
40901
|
+
givenName: string | null;
|
|
40902
|
+
organizationName: string | null;
|
|
40903
|
+
organizationUnitName: string | null;
|
|
40904
|
+
serialNumber: string | null;
|
|
40905
|
+
surname: string | null;
|
|
40906
|
+
}
|
|
40907
|
+
|
|
40908
|
+
@complex model stream {
|
|
40909
|
+
name: string | null;
|
|
40910
|
+
}
|
|
40911
|
+
|
|
40912
|
+
@open
|
|
40913
|
+
@complex model stringValueDictionary {
|
|
40914
|
+
}
|
|
40915
|
+
|
|
40916
|
+
/**
|
|
40917
|
+
* Audit data for Submission Entity events.
|
|
40918
|
+
*/
|
|
40919
|
+
@open
|
|
40920
|
+
@complex model submissionEntityAuditRecord extends auditData {
|
|
40921
|
+
}
|
|
40922
|
+
|
|
40923
|
+
@complex model submissionMailEvidence extends alertEvidence {
|
|
40924
|
+
networkMessageId: string | null;
|
|
40925
|
+
recipient: string | null;
|
|
40926
|
+
reportType: string | null;
|
|
40927
|
+
sender: string | null;
|
|
40928
|
+
senderIp: string | null;
|
|
40929
|
+
subject: string | null;
|
|
40930
|
+
submissionDateTime: offsetDateTime | null;
|
|
40931
|
+
submissionId: string | null;
|
|
40932
|
+
submitter: string | null;
|
|
40933
|
+
}
|
|
40934
|
+
|
|
40935
|
+
/**
|
|
40936
|
+
* Audit data for Supervisory Review Day X Insights events.
|
|
40937
|
+
*/
|
|
40938
|
+
@open
|
|
40939
|
+
@complex model supervisoryReviewDayXInsightsAuditRecord extends auditData {
|
|
40940
|
+
}
|
|
40941
|
+
|
|
40942
|
+
/**
|
|
40943
|
+
* Audit data for Synthetic Probe events.
|
|
40944
|
+
*/
|
|
40945
|
+
@open
|
|
40946
|
+
@complex model syntheticProbeAuditRecord extends auditData {
|
|
40947
|
+
}
|
|
40948
|
+
|
|
40949
|
+
/**
|
|
40950
|
+
* Audit data for Team Copilot Interaction events.
|
|
40951
|
+
*/
|
|
40952
|
+
@open
|
|
40953
|
+
@complex model teamCopilotInteractionAuditRecord extends auditData {
|
|
40954
|
+
}
|
|
40955
|
+
|
|
40956
|
+
/**
|
|
40957
|
+
* Audit data for Teams Easy Approvals events.
|
|
40958
|
+
*/
|
|
40959
|
+
@open
|
|
40960
|
+
@complex model teamsEasyApprovalsAuditRecord extends auditData {
|
|
40961
|
+
}
|
|
40962
|
+
|
|
40963
|
+
/**
|
|
40964
|
+
* Audit data for Teams Eval Data Hub Admin Operation events.
|
|
40965
|
+
*/
|
|
40966
|
+
@open
|
|
40967
|
+
@complex model teamsEvalDataHubAdminOperationAuditRecord extends auditData {
|
|
40968
|
+
}
|
|
40969
|
+
|
|
40970
|
+
/**
|
|
40971
|
+
* Audit data for Teams Eval Data Hub Data Access events.
|
|
40972
|
+
*/
|
|
40973
|
+
@open
|
|
40974
|
+
@complex model teamsEvalDataHubDataAccessAuditRecord extends auditData {
|
|
40975
|
+
}
|
|
40976
|
+
|
|
40977
|
+
/**
|
|
40978
|
+
* Audit data for Teams Eval Data Hub Permission Change events.
|
|
40979
|
+
*/
|
|
40980
|
+
@open
|
|
40981
|
+
@complex model teamsEvalDataHubPermissionChangeAuditRecord extends auditData {
|
|
40982
|
+
}
|
|
40983
|
+
|
|
40984
|
+
/**
|
|
40985
|
+
* Audit data for Teams Healthcare events.
|
|
40986
|
+
*/
|
|
40987
|
+
@open
|
|
40988
|
+
@complex model teamsHealthcareAuditRecord extends auditData {
|
|
40989
|
+
}
|
|
40990
|
+
|
|
40991
|
+
@complex model teamsMessageEvidence extends alertEvidence {
|
|
40992
|
+
campaignId: string | null;
|
|
40993
|
+
channelId: string | null;
|
|
40994
|
+
deliveryAction: teamsMessageDeliveryAction | null;
|
|
40995
|
+
deliveryLocation: teamsDeliveryLocation | null;
|
|
40996
|
+
files: fileEvidence[] | null;
|
|
40997
|
+
groupId: string | null;
|
|
40998
|
+
isExternal: boolean | null;
|
|
40999
|
+
isOwned: boolean | null;
|
|
41000
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
41001
|
+
messageDirection: antispamTeamsDirection | null;
|
|
41002
|
+
messageId: string | null;
|
|
41003
|
+
owningTenantId: guid | null;
|
|
41004
|
+
parentMessageId: string | null;
|
|
41005
|
+
receivedDateTime: offsetDateTime | null;
|
|
41006
|
+
recipients: string[] | null;
|
|
41007
|
+
senderFromAddress: string | null;
|
|
41008
|
+
senderIP: string | null;
|
|
41009
|
+
sourceAppName: string | null;
|
|
41010
|
+
sourceId: string | null;
|
|
41011
|
+
subject: string | null;
|
|
41012
|
+
suspiciousRecipients: string[] | null;
|
|
41013
|
+
threadId: string | null;
|
|
41014
|
+
threadType: string | null;
|
|
41015
|
+
urls: urlEvidence[] | null;
|
|
41016
|
+
}
|
|
41017
|
+
|
|
41018
|
+
/**
|
|
41019
|
+
* Audit data for Teams Updates events.
|
|
41020
|
+
*/
|
|
41021
|
+
@open
|
|
41022
|
+
@complex model teamsUpdatesAuditRecord extends auditData {
|
|
41023
|
+
}
|
|
41024
|
+
|
|
41025
|
+
/**
|
|
41026
|
+
* Audit data for Tenant Allow Block List events.
|
|
41027
|
+
*/
|
|
41028
|
+
@open
|
|
41029
|
+
@complex model tenantAllowBlockListAuditRecord extends auditData {
|
|
41030
|
+
}
|
|
41031
|
+
|
|
41032
|
+
@complex model threatDetectionDetail {
|
|
41033
|
+
confidenceLevel: string | null;
|
|
41034
|
+
priorityAccountProtection: string | null;
|
|
41035
|
+
threats: string | null;
|
|
41036
|
+
}
|
|
41037
|
+
|
|
41038
|
+
/**
|
|
41039
|
+
* Audit data for Threat Finder events.
|
|
41040
|
+
*/
|
|
41041
|
+
@open
|
|
41042
|
+
@complex model threatFinderAuditRecord extends auditData {
|
|
41043
|
+
}
|
|
41044
|
+
|
|
41045
|
+
/**
|
|
41046
|
+
* Audit data for Threat Intelligence Atp Content events.
|
|
41047
|
+
*/
|
|
41048
|
+
@open
|
|
41049
|
+
@complex model threatIntelligenceAtpContentData extends auditData {
|
|
41050
|
+
}
|
|
41051
|
+
|
|
41052
|
+
/**
|
|
41053
|
+
* Audit data for Threat Intelligence Export events.
|
|
41054
|
+
*/
|
|
41055
|
+
@open
|
|
41056
|
+
@complex model threatIntelligenceExportAuditRecord extends auditData {
|
|
41057
|
+
}
|
|
41058
|
+
|
|
41059
|
+
/**
|
|
41060
|
+
* Audit data for Threat Intelligence Mail events.
|
|
41061
|
+
*/
|
|
41062
|
+
@open
|
|
41063
|
+
@complex model threatIntelligenceMailData extends auditData {
|
|
41064
|
+
}
|
|
41065
|
+
|
|
41066
|
+
/**
|
|
41067
|
+
* Audit data for Threat Intelligence Object events.
|
|
41068
|
+
*/
|
|
41069
|
+
@open
|
|
41070
|
+
@complex model threatIntelligenceObjectAuditRecord extends auditData {
|
|
41071
|
+
}
|
|
41072
|
+
|
|
41073
|
+
/**
|
|
41074
|
+
* Audit data for Threat Intelligence Url Click events.
|
|
41075
|
+
*/
|
|
41076
|
+
@open
|
|
41077
|
+
@complex model threatIntelligenceUrlClickData extends auditData {
|
|
41078
|
+
}
|
|
41079
|
+
|
|
41080
|
+
@complex model timelineEvent {
|
|
41081
|
+
eventDateTime: offsetDateTime | null;
|
|
41082
|
+
eventDetails: string | null;
|
|
41083
|
+
eventResult: string | null;
|
|
41084
|
+
eventSource: eventSource | null;
|
|
41085
|
+
eventThreats: string[] | null;
|
|
41086
|
+
eventType: timelineEventType | null;
|
|
41087
|
+
}
|
|
41088
|
+
|
|
41089
|
+
/**
|
|
41090
|
+
* Audit data for Microsoft To Do events.
|
|
41091
|
+
*/
|
|
41092
|
+
@open
|
|
41093
|
+
@complex model todoAuditRecord extends auditData {
|
|
41094
|
+
}
|
|
41095
|
+
|
|
41096
|
+
@complex model topicModelingSettings {
|
|
41097
|
+
dynamicallyAdjustTopicCount: boolean | null;
|
|
41098
|
+
ignoreNumbers: boolean | null;
|
|
41099
|
+
isEnabled: boolean | null;
|
|
41100
|
+
topicCount: int32 | null;
|
|
41101
|
+
}
|
|
41102
|
+
|
|
41103
|
+
/**
|
|
41104
|
+
* Audit data for Trainable Classifier events.
|
|
41105
|
+
*/
|
|
41106
|
+
@open
|
|
41107
|
+
@complex model trainableClassifierAuditRecord extends auditData {
|
|
41108
|
+
}
|
|
41109
|
+
|
|
41110
|
+
/**
|
|
41111
|
+
* Audit data for UAM Operation events.
|
|
41112
|
+
*/
|
|
41113
|
+
@open
|
|
41114
|
+
@complex model uamOperationAuditRecord extends auditData {
|
|
41115
|
+
}
|
|
41116
|
+
|
|
41117
|
+
/**
|
|
41118
|
+
* Audit data for Unified Group events.
|
|
41119
|
+
*/
|
|
41120
|
+
@open
|
|
41121
|
+
@complex model unifiedGroupAuditRecord extends auditData {
|
|
41122
|
+
}
|
|
41123
|
+
|
|
41124
|
+
/**
|
|
41125
|
+
* Audit data for Unified Simulation Matched Item events.
|
|
41126
|
+
*/
|
|
41127
|
+
@open
|
|
41128
|
+
@complex model unifiedSimulationMatchedItemAuditRecord extends auditData {
|
|
41129
|
+
}
|
|
41130
|
+
|
|
41131
|
+
/**
|
|
41132
|
+
* Audit data for Unified Simulation Summary events.
|
|
41133
|
+
*/
|
|
41134
|
+
@open
|
|
41135
|
+
@complex model unifiedSimulationSummaryAuditRecord extends auditData {
|
|
41136
|
+
}
|
|
41137
|
+
|
|
41138
|
+
/**
|
|
41139
|
+
* Audit data for Universal Print Management events.
|
|
41140
|
+
*/
|
|
41141
|
+
@open
|
|
41142
|
+
@complex model universalPrintManagementAuditRecord extends auditData {
|
|
41143
|
+
}
|
|
41144
|
+
|
|
41145
|
+
/**
|
|
41146
|
+
* Audit data for Universal Print Print Job events.
|
|
41147
|
+
*/
|
|
41148
|
+
@open
|
|
41149
|
+
@complex model universalPrintPrintJobAuditRecord extends auditData {
|
|
41150
|
+
}
|
|
41151
|
+
|
|
41152
|
+
/**
|
|
41153
|
+
* Audit data for URBAC Assignment events.
|
|
41154
|
+
*/
|
|
41155
|
+
@open
|
|
41156
|
+
@complex model urbacAssignmentAuditRecord extends auditData {
|
|
41157
|
+
}
|
|
41158
|
+
|
|
41159
|
+
/**
|
|
41160
|
+
* Audit data for URBAC Enable State events.
|
|
41161
|
+
*/
|
|
41162
|
+
@open
|
|
41163
|
+
@complex model urbacEnableStateAuditRecord extends auditData {
|
|
41164
|
+
}
|
|
41165
|
+
|
|
41166
|
+
/**
|
|
41167
|
+
* Audit data for URBAC Role events.
|
|
41168
|
+
*/
|
|
41169
|
+
@open
|
|
41170
|
+
@complex model urbacRoleAuditRecord extends auditData {
|
|
41171
|
+
}
|
|
41172
|
+
|
|
41173
|
+
@complex model urlEvidence extends alertEvidence {
|
|
41174
|
+
url: string | null;
|
|
41175
|
+
}
|
|
41176
|
+
|
|
41177
|
+
@complex model userAccount {
|
|
41178
|
+
accountName: string | null;
|
|
41179
|
+
activeDirectoryObjectGuid: guid | null;
|
|
41180
|
+
azureAdUserId: string | null;
|
|
41181
|
+
displayName: string | null;
|
|
41182
|
+
domainName: string | null;
|
|
41183
|
+
resourceAccessEvents: resourceAccessEvent[] | null;
|
|
41184
|
+
tenantId: string | null;
|
|
41185
|
+
userPrincipalName: string | null;
|
|
41186
|
+
userSid: string | null;
|
|
41187
|
+
}
|
|
41188
|
+
|
|
41189
|
+
@complex model userEvidence extends alertEvidence {
|
|
41190
|
+
stream: stream | null;
|
|
41191
|
+
userAccount: userAccount | null;
|
|
41192
|
+
}
|
|
41193
|
+
|
|
41194
|
+
/**
|
|
41195
|
+
* Audit data for User Training events.
|
|
41196
|
+
*/
|
|
41197
|
+
@open
|
|
41198
|
+
@complex model userTrainingAuditRecord extends auditData {
|
|
41199
|
+
}
|
|
41200
|
+
|
|
41201
|
+
/**
|
|
41202
|
+
* Audit data for USX Workspace Onboarding events.
|
|
41203
|
+
*/
|
|
41204
|
+
@open
|
|
41205
|
+
@complex model usxWorkspaceOnboardingAuditRecord extends auditData {
|
|
41206
|
+
}
|
|
41207
|
+
|
|
41208
|
+
/**
|
|
41209
|
+
* Audit data for VFAM Create Policy events.
|
|
41210
|
+
*/
|
|
41211
|
+
@open
|
|
41212
|
+
@complex model vfamCreatePolicyAuditRecord extends auditData {
|
|
41213
|
+
}
|
|
41214
|
+
|
|
41215
|
+
/**
|
|
41216
|
+
* Audit data for VFAM Delete Policy events.
|
|
41217
|
+
*/
|
|
41218
|
+
@open
|
|
41219
|
+
@complex model vfamDeletePolicyAuditRecord extends auditData {
|
|
41220
|
+
}
|
|
41221
|
+
|
|
41222
|
+
/**
|
|
41223
|
+
* Audit data for VFAM Update Policy events.
|
|
41224
|
+
*/
|
|
41225
|
+
@open
|
|
41226
|
+
@complex model vfamUpdatePolicyAuditRecord extends auditData {
|
|
41227
|
+
}
|
|
41228
|
+
|
|
41229
|
+
/**
|
|
41230
|
+
* Audit data for Viva Amplify events.
|
|
41231
|
+
*/
|
|
41232
|
+
@open
|
|
41233
|
+
@complex model vivaAmplifyAuditRecord extends auditData {
|
|
41234
|
+
}
|
|
41235
|
+
|
|
41236
|
+
/**
|
|
41237
|
+
* Audit data for Viva Engage Events events.
|
|
41238
|
+
*/
|
|
41239
|
+
@open
|
|
41240
|
+
@complex model vivaEngageEventsAuditRecord extends auditData {
|
|
41241
|
+
}
|
|
41242
|
+
|
|
41243
|
+
/**
|
|
41244
|
+
* Audit data for Viva Engage Network Association events.
|
|
41245
|
+
*/
|
|
41246
|
+
@open
|
|
41247
|
+
@complex model vivaEngageNetworkAssociationAuditRecord extends auditData {
|
|
38297
41248
|
}
|
|
38298
41249
|
|
|
38299
|
-
|
|
38300
|
-
|
|
41250
|
+
/**
|
|
41251
|
+
* Audit data for Viva Engage Segment events.
|
|
41252
|
+
*/
|
|
41253
|
+
@open
|
|
41254
|
+
@complex model vivaEngageSegmentAuditRecord extends auditData {
|
|
38301
41255
|
}
|
|
38302
41256
|
|
|
38303
|
-
|
|
41257
|
+
/**
|
|
41258
|
+
* Audit data for Viva Glint Advanced Configuration events.
|
|
41259
|
+
*/
|
|
41260
|
+
@open
|
|
41261
|
+
@complex model vivaGlintAdvancedConfigurationAuditRecord extends auditData {
|
|
38304
41262
|
}
|
|
38305
41263
|
|
|
38306
|
-
|
|
38307
|
-
|
|
41264
|
+
/**
|
|
41265
|
+
* Audit data for Viva Glint Agentic Campaign events.
|
|
41266
|
+
*/
|
|
41267
|
+
@open
|
|
41268
|
+
@complex model vivaGlintAgenticCampaignAuditRecord extends auditData {
|
|
38308
41269
|
}
|
|
38309
41270
|
|
|
38310
|
-
|
|
38311
|
-
|
|
38312
|
-
|
|
41271
|
+
/**
|
|
41272
|
+
* Audit data for Viva Glint Feedback Program events.
|
|
41273
|
+
*/
|
|
41274
|
+
@open
|
|
41275
|
+
@complex model vivaGlintFeedbackProgramAuditRecord extends auditData {
|
|
38313
41276
|
}
|
|
38314
41277
|
|
|
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;
|
|
41278
|
+
/**
|
|
41279
|
+
* Audit data for Viva Glint Organizational events.
|
|
41280
|
+
*/
|
|
41281
|
+
@open
|
|
41282
|
+
@complex model vivaGlintOrganizationalDataAuditRecord extends auditData {
|
|
38326
41283
|
}
|
|
38327
41284
|
|
|
38328
|
-
|
|
38329
|
-
|
|
38330
|
-
|
|
38331
|
-
|
|
38332
|
-
|
|
38333
|
-
securityGroupId: string | null;
|
|
38334
|
-
sid: string | null;
|
|
41285
|
+
/**
|
|
41286
|
+
* Audit data for Viva Glint Pulse Program events.
|
|
41287
|
+
*/
|
|
41288
|
+
@open
|
|
41289
|
+
@complex model vivaGlintPulseProgramAuditRecord extends auditData {
|
|
38335
41290
|
}
|
|
38336
41291
|
|
|
38337
|
-
|
|
38338
|
-
|
|
38339
|
-
|
|
41292
|
+
/**
|
|
41293
|
+
* Audit data for Viva Glint Pulse Program Respondent Rate events.
|
|
41294
|
+
*/
|
|
41295
|
+
@open
|
|
41296
|
+
@complex model vivaGlintPulseProgramRespondentRateAuditRecord extends auditData {
|
|
38340
41297
|
}
|
|
38341
41298
|
|
|
38342
|
-
|
|
38343
|
-
|
|
38344
|
-
|
|
38345
|
-
|
|
38346
|
-
|
|
41299
|
+
/**
|
|
41300
|
+
* Audit data for Viva Glint Question events.
|
|
41301
|
+
*/
|
|
41302
|
+
@open
|
|
41303
|
+
@complex model vivaGlintQuestionAuditRecord extends auditData {
|
|
38347
41304
|
}
|
|
38348
41305
|
|
|
38349
|
-
|
|
38350
|
-
|
|
38351
|
-
|
|
38352
|
-
|
|
38353
|
-
|
|
38354
|
-
servicePrincipalType: servicePrincipalType | null;
|
|
38355
|
-
tenantId: string | null;
|
|
41306
|
+
/**
|
|
41307
|
+
* Audit data for Viva Glint Role events.
|
|
41308
|
+
*/
|
|
41309
|
+
@open
|
|
41310
|
+
@complex model vivaGlintRoleAuditRecord extends auditData {
|
|
38356
41311
|
}
|
|
38357
41312
|
|
|
38358
|
-
|
|
38359
|
-
|
|
38360
|
-
|
|
41313
|
+
/**
|
|
41314
|
+
* Audit data for Viva Glint Rubicon events.
|
|
41315
|
+
*/
|
|
41316
|
+
@open
|
|
41317
|
+
@complex model vivaGlintRubiconAuditRecord extends auditData {
|
|
38361
41318
|
}
|
|
38362
41319
|
|
|
38363
|
-
|
|
38364
|
-
|
|
38365
|
-
|
|
38366
|
-
|
|
38367
|
-
|
|
38368
|
-
givenName: string | null;
|
|
38369
|
-
organizationName: string | null;
|
|
38370
|
-
organizationUnitName: string | null;
|
|
38371
|
-
serialNumber: string | null;
|
|
38372
|
-
surname: string | null;
|
|
41320
|
+
/**
|
|
41321
|
+
* Audit data for Viva Glint Support Access events.
|
|
41322
|
+
*/
|
|
41323
|
+
@open
|
|
41324
|
+
@complex model vivaGlintSupportAccessAuditRecord extends auditData {
|
|
38373
41325
|
}
|
|
38374
41326
|
|
|
38375
|
-
|
|
38376
|
-
|
|
41327
|
+
/**
|
|
41328
|
+
* Audit data for Viva Glint System events.
|
|
41329
|
+
*/
|
|
41330
|
+
@open
|
|
41331
|
+
@complex model vivaGlintSystemAuditRecord extends auditData {
|
|
38377
41332
|
}
|
|
38378
41333
|
|
|
41334
|
+
/**
|
|
41335
|
+
* Audit data for Viva Glint User events.
|
|
41336
|
+
*/
|
|
38379
41337
|
@open
|
|
38380
|
-
@complex model
|
|
41338
|
+
@complex model vivaGlintUserAuditRecord extends auditData {
|
|
38381
41339
|
}
|
|
38382
41340
|
|
|
38383
|
-
|
|
38384
|
-
|
|
38385
|
-
|
|
38386
|
-
|
|
38387
|
-
|
|
38388
|
-
senderIp: string | null;
|
|
38389
|
-
subject: string | null;
|
|
38390
|
-
submissionDateTime: offsetDateTime | null;
|
|
38391
|
-
submissionId: string | null;
|
|
38392
|
-
submitter: string | null;
|
|
41341
|
+
/**
|
|
41342
|
+
* Audit data for Viva Glint User Group events.
|
|
41343
|
+
*/
|
|
41344
|
+
@open
|
|
41345
|
+
@complex model vivaGlintUserGroupAuditRecord extends auditData {
|
|
38393
41346
|
}
|
|
38394
41347
|
|
|
38395
|
-
|
|
38396
|
-
|
|
38397
|
-
|
|
38398
|
-
|
|
38399
|
-
|
|
38400
|
-
files: fileEvidence[] | null;
|
|
38401
|
-
groupId: string | null;
|
|
38402
|
-
isExternal: boolean | null;
|
|
38403
|
-
isOwned: boolean | null;
|
|
38404
|
-
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
38405
|
-
messageDirection: antispamTeamsDirection | null;
|
|
38406
|
-
messageId: string | null;
|
|
38407
|
-
owningTenantId: guid | null;
|
|
38408
|
-
parentMessageId: string | null;
|
|
38409
|
-
receivedDateTime: offsetDateTime | null;
|
|
38410
|
-
recipients: string[] | null;
|
|
38411
|
-
senderFromAddress: string | null;
|
|
38412
|
-
senderIP: string | null;
|
|
38413
|
-
sourceAppName: string | null;
|
|
38414
|
-
sourceId: string | null;
|
|
38415
|
-
subject: string | null;
|
|
38416
|
-
suspiciousRecipients: string[] | null;
|
|
38417
|
-
threadId: string | null;
|
|
38418
|
-
threadType: string | null;
|
|
38419
|
-
urls: urlEvidence[] | null;
|
|
41348
|
+
/**
|
|
41349
|
+
* Audit data for Viva Goals events.
|
|
41350
|
+
*/
|
|
41351
|
+
@open
|
|
41352
|
+
@complex model vivaGoalsAuditRecord extends auditData {
|
|
38420
41353
|
}
|
|
38421
41354
|
|
|
38422
|
-
|
|
38423
|
-
|
|
38424
|
-
|
|
38425
|
-
|
|
41355
|
+
/**
|
|
41356
|
+
* Audit data for Viva Learning Admin events.
|
|
41357
|
+
*/
|
|
41358
|
+
@open
|
|
41359
|
+
@complex model vivaLearningAdminAuditRecord extends auditData {
|
|
38426
41360
|
}
|
|
38427
41361
|
|
|
38428
|
-
|
|
38429
|
-
|
|
38430
|
-
|
|
38431
|
-
|
|
38432
|
-
|
|
38433
|
-
eventThreats: string[] | null;
|
|
38434
|
-
eventType: timelineEventType | null;
|
|
41362
|
+
/**
|
|
41363
|
+
* Audit data for Viva Learning events.
|
|
41364
|
+
*/
|
|
41365
|
+
@open
|
|
41366
|
+
@complex model vivaLearningAuditRecord extends auditData {
|
|
38435
41367
|
}
|
|
38436
41368
|
|
|
38437
|
-
|
|
38438
|
-
|
|
38439
|
-
|
|
38440
|
-
|
|
38441
|
-
|
|
41369
|
+
/**
|
|
41370
|
+
* Audit data for Viva Pulse Admin events.
|
|
41371
|
+
*/
|
|
41372
|
+
@open
|
|
41373
|
+
@complex model vivaPulseAdminAuditRecord extends auditData {
|
|
38442
41374
|
}
|
|
38443
41375
|
|
|
38444
|
-
|
|
38445
|
-
|
|
41376
|
+
/**
|
|
41377
|
+
* Audit data for Viva Pulse Organizer events.
|
|
41378
|
+
*/
|
|
41379
|
+
@open
|
|
41380
|
+
@complex model vivaPulseOrganizerAuditRecord extends auditData {
|
|
38446
41381
|
}
|
|
38447
41382
|
|
|
38448
|
-
|
|
38449
|
-
|
|
38450
|
-
|
|
38451
|
-
|
|
38452
|
-
|
|
38453
|
-
domainName: string | null;
|
|
38454
|
-
resourceAccessEvents: resourceAccessEvent[] | null;
|
|
38455
|
-
tenantId: string | null;
|
|
38456
|
-
userPrincipalName: string | null;
|
|
38457
|
-
userSid: string | null;
|
|
41383
|
+
/**
|
|
41384
|
+
* Audit data for Viva Pulse Report events.
|
|
41385
|
+
*/
|
|
41386
|
+
@open
|
|
41387
|
+
@complex model vivaPulseReportAuditRecord extends auditData {
|
|
38458
41388
|
}
|
|
38459
41389
|
|
|
38460
|
-
|
|
38461
|
-
|
|
38462
|
-
|
|
41390
|
+
/**
|
|
41391
|
+
* Audit data for Viva Pulse Response events.
|
|
41392
|
+
*/
|
|
41393
|
+
@open
|
|
41394
|
+
@complex model vivaPulseResponseAuditRecord extends auditData {
|
|
38463
41395
|
}
|
|
38464
41396
|
|
|
38465
41397
|
@complex model vmMetadata {
|
|
@@ -38469,6 +41401,20 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38469
41401
|
vmId: string | null;
|
|
38470
41402
|
}
|
|
38471
41403
|
|
|
41404
|
+
/**
|
|
41405
|
+
* Audit data for WDATP Alerts events.
|
|
41406
|
+
*/
|
|
41407
|
+
@open
|
|
41408
|
+
@complex model wdatpAlertsAuditRecord extends auditData {
|
|
41409
|
+
}
|
|
41410
|
+
|
|
41411
|
+
/**
|
|
41412
|
+
* Audit data for Web Content Filtering events.
|
|
41413
|
+
*/
|
|
41414
|
+
@open
|
|
41415
|
+
@complex model webContentFilteringAuditRecord extends auditData {
|
|
41416
|
+
}
|
|
41417
|
+
|
|
38472
41418
|
@complex model whoisContact {
|
|
38473
41419
|
address: reference.`microsoft.graph`.physicalAddress | null;
|
|
38474
41420
|
email: string | null;
|
|
@@ -38484,6 +41430,34 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38484
41430
|
@references host: host;
|
|
38485
41431
|
}
|
|
38486
41432
|
|
|
41433
|
+
/**
|
|
41434
|
+
* Audit data for Windows365 Customer Lockbox events.
|
|
41435
|
+
*/
|
|
41436
|
+
@open
|
|
41437
|
+
@complex model windows365CustomerLockboxAuditRecord extends auditData {
|
|
41438
|
+
}
|
|
41439
|
+
|
|
41440
|
+
/**
|
|
41441
|
+
* Audit data for Workplace Analytics events.
|
|
41442
|
+
*/
|
|
41443
|
+
@open
|
|
41444
|
+
@complex model workplaceAnalyticsAuditRecord extends auditData {
|
|
41445
|
+
}
|
|
41446
|
+
|
|
41447
|
+
/**
|
|
41448
|
+
* Audit data for Yammer events.
|
|
41449
|
+
*/
|
|
41450
|
+
@open
|
|
41451
|
+
@complex model yammerAuditRecord extends auditData {
|
|
41452
|
+
}
|
|
41453
|
+
|
|
41454
|
+
/**
|
|
41455
|
+
* Audit data for Yammer User Hiding events.
|
|
41456
|
+
*/
|
|
41457
|
+
@open
|
|
41458
|
+
@complex model yammerUserHidingAuditRecord extends auditData {
|
|
41459
|
+
}
|
|
41460
|
+
|
|
38487
41461
|
@entity model alert extends reference.`microsoft.graph`.entity {
|
|
38488
41462
|
actorDisplayName: string | null;
|
|
38489
41463
|
additionalData: dictionary | null;
|
|
@@ -38583,6 +41557,50 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38583
41557
|
@entity model artifact extends reference.`microsoft.graph`.entity {
|
|
38584
41558
|
}
|
|
38585
41559
|
|
|
41560
|
+
/**
|
|
41561
|
+
* Root entity for the audit log API.
|
|
41562
|
+
*/
|
|
41563
|
+
@entity model auditCoreRoot extends reference.`microsoft.graph`.entity {
|
|
41564
|
+
@contains queries: auditLogQuery[];
|
|
41565
|
+
}
|
|
41566
|
+
|
|
41567
|
+
/**
|
|
41568
|
+
* Represents a query against the unified audit log.
|
|
41569
|
+
*/
|
|
41570
|
+
@entity model auditLogQuery extends reference.`microsoft.graph`.entity {
|
|
41571
|
+
administrativeUnitIdFilters: string[] | null;
|
|
41572
|
+
displayName: string | null;
|
|
41573
|
+
filterEndDateTime: offsetDateTime | null;
|
|
41574
|
+
filterStartDateTime: offsetDateTime | null;
|
|
41575
|
+
ipAddressFilters: string[] | null;
|
|
41576
|
+
keywordFilter: string | null;
|
|
41577
|
+
objectIdFilters: string[] | null;
|
|
41578
|
+
operationFilters: string[] | null;
|
|
41579
|
+
recordTypeFilters: auditLogRecordType[] | null;
|
|
41580
|
+
serviceFilters: string[] | null;
|
|
41581
|
+
status: auditLogQueryStatus | null;
|
|
41582
|
+
userPrincipalNameFilters: string[] | null;
|
|
41583
|
+
@contains records: auditLogRecord[];
|
|
41584
|
+
}
|
|
41585
|
+
|
|
41586
|
+
/**
|
|
41587
|
+
* Represents an individual audit log record.
|
|
41588
|
+
*/
|
|
41589
|
+
@entity model auditLogRecord extends reference.`microsoft.graph`.entity {
|
|
41590
|
+
administrativeUnits: string[] | null;
|
|
41591
|
+
auditData: auditData | null;
|
|
41592
|
+
auditLogRecordType: auditLogRecordType | null;
|
|
41593
|
+
clientIp: string | null;
|
|
41594
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
41595
|
+
objectId: string | null;
|
|
41596
|
+
operation: string | null;
|
|
41597
|
+
organizationId: string | null;
|
|
41598
|
+
service: string | null;
|
|
41599
|
+
userId: string | null;
|
|
41600
|
+
userPrincipalName: string | null;
|
|
41601
|
+
userType: auditLogUserType | null;
|
|
41602
|
+
}
|
|
41603
|
+
|
|
38586
41604
|
@entity model authorityTemplate extends filePlanDescriptorTemplate {
|
|
38587
41605
|
}
|
|
38588
41606
|
|
|
@@ -39347,6 +42365,514 @@ namespace reference.`microsoft.graph.security` {
|
|
|
39347
42365
|
unknownFutureValue: 31,
|
|
39348
42366
|
}
|
|
39349
42367
|
|
|
42368
|
+
/**
|
|
42369
|
+
* Status of an audit log query.
|
|
42370
|
+
*/
|
|
42371
|
+
enum auditLogQueryStatus {
|
|
42372
|
+
notStarted: 0,
|
|
42373
|
+
running: 1,
|
|
42374
|
+
succeeded: 2,
|
|
42375
|
+
failed: 3,
|
|
42376
|
+
cancelled: 4,
|
|
42377
|
+
unknownFutureValue: 5,
|
|
42378
|
+
}
|
|
42379
|
+
|
|
42380
|
+
/**
|
|
42381
|
+
* Specifies the type of audit log record.
|
|
42382
|
+
*/
|
|
42383
|
+
enum auditLogRecordType {
|
|
42384
|
+
ExchangeAdmin: 1,
|
|
42385
|
+
ExchangeItem: 2,
|
|
42386
|
+
ExchangeItemGroup: 3,
|
|
42387
|
+
SharePoint: 4,
|
|
42388
|
+
SyntheticProbe: 5,
|
|
42389
|
+
SharePointFileOperation: 6,
|
|
42390
|
+
OneDrive: 7,
|
|
42391
|
+
AzureActiveDirectory: 8,
|
|
42392
|
+
AzureActiveDirectoryAccountLogon: 9,
|
|
42393
|
+
DataCenterSecurityCmdlet: 10,
|
|
42394
|
+
ComplianceDLPSharePoint: 11,
|
|
42395
|
+
Sway: 12,
|
|
42396
|
+
ComplianceDLPExchange: 13,
|
|
42397
|
+
SharePointSharingOperation: 14,
|
|
42398
|
+
AzureActiveDirectoryStsLogon: 15,
|
|
42399
|
+
SkypeForBusinessPSTNUsage: 16,
|
|
42400
|
+
SkypeForBusinessUsersBlocked: 17,
|
|
42401
|
+
SecurityComplianceCenterEOPCmdlet: 18,
|
|
42402
|
+
ExchangeAggregatedOperation: 19,
|
|
42403
|
+
PowerBIAudit: 20,
|
|
42404
|
+
CRM: 21,
|
|
42405
|
+
Yammer: 22,
|
|
42406
|
+
SkypeForBusinessCmdlets: 23,
|
|
42407
|
+
Discovery: 24,
|
|
42408
|
+
MicrosoftTeams: 25,
|
|
42409
|
+
ThreatIntelligence: 28,
|
|
42410
|
+
MailSubmission: 29,
|
|
42411
|
+
MicrosoftFlow: 30,
|
|
42412
|
+
AeD: 31,
|
|
42413
|
+
MicrosoftStream: 32,
|
|
42414
|
+
ComplianceDLPSharePointClassification: 33,
|
|
42415
|
+
ThreatFinder: 34,
|
|
42416
|
+
Project: 35,
|
|
42417
|
+
SharePointListOperation: 36,
|
|
42418
|
+
SharePointCommentOperation: 37,
|
|
42419
|
+
DataGovernance: 38,
|
|
42420
|
+
Kaizala: 39,
|
|
42421
|
+
SecurityComplianceAlerts: 40,
|
|
42422
|
+
ThreatIntelligenceUrl: 41,
|
|
42423
|
+
SecurityComplianceInsights: 42,
|
|
42424
|
+
MIPLabel: 43,
|
|
42425
|
+
WorkplaceAnalytics: 44,
|
|
42426
|
+
PowerAppsApp: 45,
|
|
42427
|
+
PowerAppsPlan: 46,
|
|
42428
|
+
ThreatIntelligenceAtpContent: 47,
|
|
42429
|
+
LabelContentExplorer: 48,
|
|
42430
|
+
TeamsHealthcare: 49,
|
|
42431
|
+
ExchangeItemAggregated: 50,
|
|
42432
|
+
HygieneEvent: 51,
|
|
42433
|
+
DataInsightsRestApiAudit: 52,
|
|
42434
|
+
InformationBarrierPolicyApplication: 53,
|
|
42435
|
+
SharePointListItemOperation: 54,
|
|
42436
|
+
SharePointContentTypeOperation: 55,
|
|
42437
|
+
SharePointFieldOperation: 56,
|
|
42438
|
+
MicrosoftTeamsAdmin: 57,
|
|
42439
|
+
HRSignal: 58,
|
|
42440
|
+
MicrosoftTeamsDevice: 59,
|
|
42441
|
+
MicrosoftTeamsAnalytics: 60,
|
|
42442
|
+
InformationWorkerProtection: 61,
|
|
42443
|
+
Campaign: 62,
|
|
42444
|
+
DLPEndpoint: 63,
|
|
42445
|
+
AirInvestigation: 64,
|
|
42446
|
+
Quarantine: 65,
|
|
42447
|
+
MicrosoftForms: 66,
|
|
42448
|
+
ApplicationAudit: 67,
|
|
42449
|
+
ComplianceSupervisionExchange: 68,
|
|
42450
|
+
CustomerKeyServiceEncryption: 69,
|
|
42451
|
+
OfficeNative: 70,
|
|
42452
|
+
MipAutoLabelSharePointItem: 71,
|
|
42453
|
+
MipAutoLabelSharePointPolicyLocation: 72,
|
|
42454
|
+
MicrosoftTeamsShifts: 73,
|
|
42455
|
+
SecureScore: 74,
|
|
42456
|
+
MipAutoLabelExchangeItem: 75,
|
|
42457
|
+
CortanaBriefing: 76,
|
|
42458
|
+
Search: 77,
|
|
42459
|
+
WDATPAlerts: 78,
|
|
42460
|
+
PowerPlatformAdminDlp: 79,
|
|
42461
|
+
PowerPlatformAdminEnvironment: 80,
|
|
42462
|
+
MDATPAudit: 81,
|
|
42463
|
+
SensitivityLabelPolicyMatch: 82,
|
|
42464
|
+
SensitivityLabelAction: 83,
|
|
42465
|
+
SensitivityLabeledFileAction: 84,
|
|
42466
|
+
AttackSim: 85,
|
|
42467
|
+
AirManualInvestigation: 86,
|
|
42468
|
+
SecurityComplianceRBAC: 87,
|
|
42469
|
+
UserTraining: 88,
|
|
42470
|
+
AirAdminActionInvestigation: 89,
|
|
42471
|
+
MSTIC: 90,
|
|
42472
|
+
PhysicalBadgingSignal: 91,
|
|
42473
|
+
TeamsEasyApprovals: 92,
|
|
42474
|
+
AipDiscover: 93,
|
|
42475
|
+
AipSensitivityLabelAction: 94,
|
|
42476
|
+
AipProtectionAction: 95,
|
|
42477
|
+
AipFileDeleted: 96,
|
|
42478
|
+
AipHeartBeat: 97,
|
|
42479
|
+
MCASAlerts: 98,
|
|
42480
|
+
OnPremisesFileShareScannerDlp: 99,
|
|
42481
|
+
OnPremisesSharePointScannerDlp: 100,
|
|
42482
|
+
ExchangeSearch: 101,
|
|
42483
|
+
SharePointSearch: 102,
|
|
42484
|
+
PrivacyDataMinimization: 103,
|
|
42485
|
+
LabelAnalyticsAggregate: 104,
|
|
42486
|
+
MyAnalyticsSettings: 105,
|
|
42487
|
+
SecurityComplianceUserChange: 106,
|
|
42488
|
+
ComplianceDLPExchangeClassification: 107,
|
|
42489
|
+
ComplianceDLPEndpoint: 108,
|
|
42490
|
+
MipExactDataMatch: 109,
|
|
42491
|
+
MSDEResponseActions: 110,
|
|
42492
|
+
MSDEGeneralSettings: 111,
|
|
42493
|
+
MSDEIndicatorsSettings: 112,
|
|
42494
|
+
MS365DCustomDetection: 113,
|
|
42495
|
+
MSDERolesSettings: 114,
|
|
42496
|
+
MAPGAlerts: 115,
|
|
42497
|
+
MAPGPolicy: 116,
|
|
42498
|
+
MAPGRemediation: 117,
|
|
42499
|
+
PrivacyRemediationAction: 118,
|
|
42500
|
+
PrivacyDigestEmail: 119,
|
|
42501
|
+
MipAutoLabelSimulationProgress: 120,
|
|
42502
|
+
MipAutoLabelSimulationCompletion: 121,
|
|
42503
|
+
MipAutoLabelProgressFeedback: 122,
|
|
42504
|
+
DlpSensitiveInformationType: 123,
|
|
42505
|
+
MipAutoLabelSimulationStatistics: 124,
|
|
42506
|
+
LargeContentMetadata: 125,
|
|
42507
|
+
Microsoft365Group: 126,
|
|
42508
|
+
CDPMlInferencingResult: 127,
|
|
42509
|
+
FilteringMailMetadata: 128,
|
|
42510
|
+
CDPClassificationMailItem: 129,
|
|
42511
|
+
CDPClassificationDocument: 130,
|
|
42512
|
+
OfficeScriptsRunAction: 131,
|
|
42513
|
+
FilteringPostMailDeliveryAction: 132,
|
|
42514
|
+
CDPUnifiedFeedback: 133,
|
|
42515
|
+
TenantAllowBlockList: 134,
|
|
42516
|
+
ConsumptionResource: 135,
|
|
42517
|
+
HealthcareSignal: 136,
|
|
42518
|
+
DlpImportResult: 138,
|
|
42519
|
+
CDPCompliancePolicyExecution: 139,
|
|
42520
|
+
MultiStageDisposition: 140,
|
|
42521
|
+
PrivacyDataMatch: 141,
|
|
42522
|
+
FilteringDocMetadata: 142,
|
|
42523
|
+
FilteringEmailFeatures: 143,
|
|
42524
|
+
PowerBIDlp: 144,
|
|
42525
|
+
FilteringUrlInfo: 145,
|
|
42526
|
+
FilteringAttachmentInfo: 146,
|
|
42527
|
+
CoreReportingSettings: 147,
|
|
42528
|
+
ComplianceConnector: 148,
|
|
42529
|
+
PowerPlatformLockboxResourceAccessRequest: 149,
|
|
42530
|
+
PowerPlatformLockboxResourceCommand: 150,
|
|
42531
|
+
CDPPredictiveCodingLabel: 151,
|
|
42532
|
+
CDPCompliancePolicyUserFeedback: 152,
|
|
42533
|
+
WebpageActivityEndpoint: 153,
|
|
42534
|
+
OMEPortal: 154,
|
|
42535
|
+
CMImprovementActionChange: 155,
|
|
42536
|
+
FilteringUrlClick: 156,
|
|
42537
|
+
MipLabelAnalyticsAuditRecord: 157,
|
|
42538
|
+
FilteringEntityEvent: 158,
|
|
42539
|
+
FilteringRuleHits: 159,
|
|
42540
|
+
FilteringMailSubmission: 160,
|
|
42541
|
+
LabelExplorer: 161,
|
|
42542
|
+
MicrosoftManagedServicePlatform: 162,
|
|
42543
|
+
PowerPlatformServiceActivity: 163,
|
|
42544
|
+
ScorePlatformGenericAuditRecord: 164,
|
|
42545
|
+
FilteringTimeTravelDocMetadata: 165,
|
|
42546
|
+
Alert: 166,
|
|
42547
|
+
AlertStatus: 167,
|
|
42548
|
+
AlertIncident: 168,
|
|
42549
|
+
IncidentStatus: 169,
|
|
42550
|
+
Case: 170,
|
|
42551
|
+
CaseInvestigation: 171,
|
|
42552
|
+
RecordsManagement: 172,
|
|
42553
|
+
PrivacyRemediation: 173,
|
|
42554
|
+
DataShareOperation: 174,
|
|
42555
|
+
CdpDlpSensitive: 175,
|
|
42556
|
+
EHRConnector: 176,
|
|
42557
|
+
FilteringMailGradingResult: 177,
|
|
42558
|
+
PublicFolder: 178,
|
|
42559
|
+
PrivacyTenantAuditHistoryRecord: 179,
|
|
42560
|
+
AipScannerDiscoverEvent: 180,
|
|
42561
|
+
EduDataLakeDownloadOperation: 181,
|
|
42562
|
+
M365ComplianceConnector: 182,
|
|
42563
|
+
MicrosoftGraphDataConnectOperation: 183,
|
|
42564
|
+
MicrosoftPurview: 184,
|
|
42565
|
+
FilteringEmailContentFeatures: 185,
|
|
42566
|
+
PowerPagesSite: 186,
|
|
42567
|
+
PowerAppsResource: 187,
|
|
42568
|
+
PlannerPlan: 188,
|
|
42569
|
+
PlannerCopyPlan: 189,
|
|
42570
|
+
PlannerTask: 190,
|
|
42571
|
+
PlannerRoster: 191,
|
|
42572
|
+
PlannerPlanList: 192,
|
|
42573
|
+
PlannerTaskList: 193,
|
|
42574
|
+
PlannerTenantSettings: 194,
|
|
42575
|
+
ProjectForTheWebProject: 195,
|
|
42576
|
+
ProjectForTheWebTask: 196,
|
|
42577
|
+
ProjectForTheWebRoadmap: 197,
|
|
42578
|
+
ProjectForTheWebRoadmapItem: 198,
|
|
42579
|
+
ProjectForTheWebProjectSettings: 199,
|
|
42580
|
+
ProjectForTheWebRoadmapSettings: 200,
|
|
42581
|
+
QuarantineMetadata: 201,
|
|
42582
|
+
MicrosoftTodoAudit: 202,
|
|
42583
|
+
TimeTravelFilteringDocMetadata: 203,
|
|
42584
|
+
TeamsQuarantineMetadata: 204,
|
|
42585
|
+
SharePointAppPermissionOperation: 205,
|
|
42586
|
+
MicrosoftTeamsSensitivityLabelAction: 206,
|
|
42587
|
+
FilteringTeamsMetadata: 207,
|
|
42588
|
+
FilteringTeamsUrlInfo: 208,
|
|
42589
|
+
FilteringTeamsPostDeliveryAction: 209,
|
|
42590
|
+
MDCAssessments: 210,
|
|
42591
|
+
MDCRegulatoryComplianceStandards: 211,
|
|
42592
|
+
MDCRegulatoryComplianceControls: 212,
|
|
42593
|
+
MDCRegulatoryComplianceAssessments: 213,
|
|
42594
|
+
MDCSecurityConnectors: 214,
|
|
42595
|
+
MDADataSecuritySignal: 215,
|
|
42596
|
+
VivaGoals: 216,
|
|
42597
|
+
FilteringRuntimeInfo: 217,
|
|
42598
|
+
AttackSimAdmin: 218,
|
|
42599
|
+
MicrosoftGraphDataConnectConsent: 219,
|
|
42600
|
+
FilteringAtpDetonationInfo: 220,
|
|
42601
|
+
PrivacyPortal: 221,
|
|
42602
|
+
ManagedTenants: 222,
|
|
42603
|
+
UnifiedSimulationMatchedItem: 223,
|
|
42604
|
+
UnifiedSimulationSummary: 224,
|
|
42605
|
+
UpdateQuarantineMetadata: 225,
|
|
42606
|
+
MS365DSuppressionRule: 226,
|
|
42607
|
+
PurviewDataMapOperation: 227,
|
|
42608
|
+
FilteringUrlPostClickAction: 228,
|
|
42609
|
+
IrmUserDefinedDetectionSignal: 229,
|
|
42610
|
+
TeamsUpdates: 230,
|
|
42611
|
+
PlannerRosterSensitivityLabel: 231,
|
|
42612
|
+
MS365DIncident: 232,
|
|
42613
|
+
FilteringDelistingMetadata: 233,
|
|
42614
|
+
ComplianceDLPSharePointClassificationExtended: 234,
|
|
42615
|
+
MicrosoftDefenderForIdentityAudit: 235,
|
|
42616
|
+
SupervisoryReviewDayXInsight: 236,
|
|
42617
|
+
DefenderExpertsforXDRAdmin: 237,
|
|
42618
|
+
CDPEdgeBlockedMessage: 238,
|
|
42619
|
+
HostedRpa: 239,
|
|
42620
|
+
CdpContentExplorerAggregateRecord: 240,
|
|
42621
|
+
CDPHygieneAttachmentInfo: 241,
|
|
42622
|
+
CDPHygieneSummary: 242,
|
|
42623
|
+
CDPPostMailDeliveryAction: 243,
|
|
42624
|
+
CDPEmailFeatures: 244,
|
|
42625
|
+
CDPHygieneUrlInfo: 245,
|
|
42626
|
+
CDPUrlClick: 246,
|
|
42627
|
+
CDPPackageManagerHygieneEvent: 247,
|
|
42628
|
+
FilteringDocScan: 248,
|
|
42629
|
+
TimeTravelFilteringDocScan: 249,
|
|
42630
|
+
MAPGOnboard: 250,
|
|
42631
|
+
VfamCreatePolicy: 251,
|
|
42632
|
+
VfamUpdatePolicy: 252,
|
|
42633
|
+
VfamDeletePolicy: 253,
|
|
42634
|
+
M365DAAD: 254,
|
|
42635
|
+
CdpColdCrawlStatus: 255,
|
|
42636
|
+
PowerPlatformAdministratorActivity: 256,
|
|
42637
|
+
Windows365CustomerLockbox: 257,
|
|
42638
|
+
CdpResourceScopeChangeEvent: 258,
|
|
42639
|
+
ComplianceCCExchangeExecutionResult: 259,
|
|
42640
|
+
CdpOcrCostEstimatorRecord: 260,
|
|
42641
|
+
CopilotInteraction: 261,
|
|
42642
|
+
CdpOcrBillingRecord: 262,
|
|
42643
|
+
ComplianceDLPApplications: 263,
|
|
42644
|
+
UAMOperation: 264,
|
|
42645
|
+
VivaLearning: 265,
|
|
42646
|
+
VivaLearningAdmin: 266,
|
|
42647
|
+
PurviewPolicyOperation: 267,
|
|
42648
|
+
PurviewMetadataPolicyOperation: 268,
|
|
42649
|
+
PeopleAdminSettings: 269,
|
|
42650
|
+
CdpComplianceDLPExchangeClassification: 270,
|
|
42651
|
+
CdpComplianceDLPSharePointClassification: 271,
|
|
42652
|
+
FilteringBulkSenderInsightData: 272,
|
|
42653
|
+
FilteringBulkThresholdInsightData: 273,
|
|
42654
|
+
PrivacyOpenAccess: 274,
|
|
42655
|
+
OWAAuth: 275,
|
|
42656
|
+
ComplianceDLPApplicationsClassification: 276,
|
|
42657
|
+
SharePointESignature: 277,
|
|
42658
|
+
Dynamics365BusinessCentral: 278,
|
|
42659
|
+
MeshWorlds: 279,
|
|
42660
|
+
VivaPulseResponse: 280,
|
|
42661
|
+
VivaPulseOrganizer: 281,
|
|
42662
|
+
VivaPulseAdmin: 282,
|
|
42663
|
+
VivaPulseReport: 283,
|
|
42664
|
+
AIAppInteraction: 284,
|
|
42665
|
+
ComplianceDLMExchange: 285,
|
|
42666
|
+
ComplianceDLMSharePoint: 286,
|
|
42667
|
+
ProjectForTheWebAssignedToMeSettings: 287,
|
|
42668
|
+
CPSOperation: 288,
|
|
42669
|
+
ComplianceDLPExchangeDiscovery: 289,
|
|
42670
|
+
PurviewMCRecommendation: 290,
|
|
42671
|
+
ComplianceDLPEndpointDiscovery: 291,
|
|
42672
|
+
InsiderRiskScopedUserInsights: 292,
|
|
42673
|
+
MicrosoftTeamsRetentionLabelAction: 293,
|
|
42674
|
+
AadRiskDetection: 294,
|
|
42675
|
+
AuditSearch: 295,
|
|
42676
|
+
AuditRetentionPolicy: 296,
|
|
42677
|
+
AuditConfig: 297,
|
|
42678
|
+
Microsoft365BackupBackupPolicy: 298,
|
|
42679
|
+
Microsoft365BackupRestoreTask: 299,
|
|
42680
|
+
Microsoft365BackupRestoreItem: 300,
|
|
42681
|
+
Microsoft365BackupBackupItem: 301,
|
|
42682
|
+
URBACAssignment: 302,
|
|
42683
|
+
URBACRole: 303,
|
|
42684
|
+
URBACEnableState: 304,
|
|
42685
|
+
IRMSecurityAlert: 305,
|
|
42686
|
+
PurviewInsiderRiskCases: 306,
|
|
42687
|
+
PurviewInsiderRiskAlerts: 307,
|
|
42688
|
+
InsiderRiskScopedUsers: 308,
|
|
42689
|
+
CdpConsumptionResource: 309,
|
|
42690
|
+
CreateCopilotPlugin: 310,
|
|
42691
|
+
UpdateCopilotPlugin: 311,
|
|
42692
|
+
DeleteCopilotPlugin: 312,
|
|
42693
|
+
EnableCopilotPlugin: 313,
|
|
42694
|
+
DisableCopilotPlugin: 314,
|
|
42695
|
+
CreateCopilotWorkspace: 315,
|
|
42696
|
+
UpdateCopilotWorkspace: 316,
|
|
42697
|
+
DeleteCopilotWorkspace: 317,
|
|
42698
|
+
EnableCopilotWorkspace: 318,
|
|
42699
|
+
DisableCopilotWorkspace: 319,
|
|
42700
|
+
CreateCopilotPromptBook: 320,
|
|
42701
|
+
UpdateCopilotPromptBook: 321,
|
|
42702
|
+
DeleteCopilotPromptBook: 322,
|
|
42703
|
+
EnableCopilotPromptBook: 323,
|
|
42704
|
+
DisableCopilotPromptBook: 324,
|
|
42705
|
+
UpdateCopilotSettings: 325,
|
|
42706
|
+
P4AIAssessmentRecord: 326,
|
|
42707
|
+
P4AIAssessmentLocationResultRecord: 327,
|
|
42708
|
+
ConnectedAIAppInteraction: 328,
|
|
42709
|
+
PrivaPrivacyConsentOperation: 329,
|
|
42710
|
+
PrivaPrivacyAssessmentOperation: 330,
|
|
42711
|
+
DataCatalogAccessRequests: 331,
|
|
42712
|
+
ComplianceSettingsChange: 332,
|
|
42713
|
+
DataSecurityInvestigation: 333,
|
|
42714
|
+
TeamCopilotInteraction: 334,
|
|
42715
|
+
IRMActivityAuditTrail: 335,
|
|
42716
|
+
SharePointContentSecurityPolicy: 336,
|
|
42717
|
+
CloudUpdateProfileConfig: 337,
|
|
42718
|
+
CloudUpdateTenantConfig: 338,
|
|
42719
|
+
CloudUpdateDeviceConfig: 339,
|
|
42720
|
+
DefenderPreviewFeatures: 340,
|
|
42721
|
+
DeviceDiscoverySettingsExclusion: 341,
|
|
42722
|
+
DeviceDiscoverySettingsAuthenticatedScans: 342,
|
|
42723
|
+
CriticalAssetManagementClassification: 343,
|
|
42724
|
+
DeviceDiscoverySettings: 344,
|
|
42725
|
+
USXWorkspaceOnboarding: 345,
|
|
42726
|
+
VivaGlintAdvancedConfiguration: 346,
|
|
42727
|
+
VivaGlintPulseProgram: 347,
|
|
42728
|
+
VivaGlintPulseProgramRespondentRate: 348,
|
|
42729
|
+
VivaGlintQuestion: 349,
|
|
42730
|
+
VivaGlintRole: 350,
|
|
42731
|
+
VivaGlintRubicon: 351,
|
|
42732
|
+
VivaGlintSupportAccess: 352,
|
|
42733
|
+
VivaGlintSystem: 353,
|
|
42734
|
+
VivaGlintUser: 354,
|
|
42735
|
+
VivaGlintUserGroup: 355,
|
|
42736
|
+
VivaGlintFeedbackProgram: 356,
|
|
42737
|
+
FabricAudit: 357,
|
|
42738
|
+
TrainableClassifier: 358,
|
|
42739
|
+
WebContentFiltering: 359,
|
|
42740
|
+
NoisyAlertPolicy: 360,
|
|
42741
|
+
OnDemandSharePointClassification: 361,
|
|
42742
|
+
AIInteractionsExport: 362,
|
|
42743
|
+
Microsoft365CopilotScheduledPrompt: 363,
|
|
42744
|
+
PlacesDirectory: 364,
|
|
42745
|
+
MDAAudit: 365,
|
|
42746
|
+
OpticalCharacterRecognition: 366,
|
|
42747
|
+
M365SearchSections: 368,
|
|
42748
|
+
OfficeClientRestrictedModeAction: 369,
|
|
42749
|
+
CrossTenantAccessPolicy: 370,
|
|
42750
|
+
OutlookCopilotAutomation: 371,
|
|
42751
|
+
VivaEngageNetworkAssociation: 372,
|
|
42752
|
+
AppAdminActivity: 373,
|
|
42753
|
+
AppSettingsAdminActivity: 374,
|
|
42754
|
+
UniversalPrintPrintJob: 375,
|
|
42755
|
+
SentinelNotebookOnLake: 376,
|
|
42756
|
+
SentinelJob: 377,
|
|
42757
|
+
SentinelGraph: 378,
|
|
42758
|
+
SentinelKQLOnLake: 379,
|
|
42759
|
+
SentinelPackage: 380,
|
|
42760
|
+
VivaAmplifyOutlookSensitivityLabel: 381,
|
|
42761
|
+
CopilotActions: 382,
|
|
42762
|
+
AIInteractionsSubscription: 383,
|
|
42763
|
+
AIInteractionsChangeNotification: 384,
|
|
42764
|
+
FilteringMailMetadataExtended: 385,
|
|
42765
|
+
SentinelLakeOnboarding: 386,
|
|
42766
|
+
SentinelLakeDataOnboarding: 387,
|
|
42767
|
+
OfficeRestrictedModeAction: 388,
|
|
42768
|
+
CopilotForSecurityTrigger: 389,
|
|
42769
|
+
CopilotAgentManagement: 390,
|
|
42770
|
+
P4AIAssessmentFabricScannerRecord: 391,
|
|
42771
|
+
PlannerGoal: 392,
|
|
42772
|
+
PlannerGoalList: 393,
|
|
42773
|
+
ThreatIntelligenceObject: 394,
|
|
42774
|
+
ThreatIntelligenceExport: 395,
|
|
42775
|
+
SubmissionAgenticGradingResult: 396,
|
|
42776
|
+
AgentAdminActivity: 397,
|
|
42777
|
+
DeployFeatureActivity: 398,
|
|
42778
|
+
AgentSettingsAdminActivity: 399,
|
|
42779
|
+
OrganizationalDataInM365: 400,
|
|
42780
|
+
PlannerChatMessage: 401,
|
|
42781
|
+
PlannerChatMessageList: 402,
|
|
42782
|
+
SentinelAITool: 403,
|
|
42783
|
+
M365ODSPAssetMetadata: 404,
|
|
42784
|
+
AIExecuteTool: 405,
|
|
42785
|
+
AIInvokeAgent: 406,
|
|
42786
|
+
AIInferenceCall: 407,
|
|
42787
|
+
CdpClassifierHealthRecord: 408,
|
|
42788
|
+
SensitiveInfoRemediationAgentData: 409,
|
|
42789
|
+
ComplianceDLPEnforcement: 410,
|
|
42790
|
+
A365AIExecuteTool: 411,
|
|
42791
|
+
A365AIInvokeAgent: 412,
|
|
42792
|
+
A365AIInferenceCall: 413,
|
|
42793
|
+
VivaEngageSegment: 414,
|
|
42794
|
+
RTIOperationsAgent: 415,
|
|
42795
|
+
ContentStoreMetadata: 416,
|
|
42796
|
+
CCRAIPolicyViolation: 417,
|
|
42797
|
+
PlannerPlanSensitivityLabel: 418,
|
|
42798
|
+
MosAgentInfoRecord: 419,
|
|
42799
|
+
A365AIRunSummary: 420,
|
|
42800
|
+
UnifiedCatalogConceptAction: 421,
|
|
42801
|
+
DefenderCaseManagement: 422,
|
|
42802
|
+
CopilotForSecurityLogging: 423,
|
|
42803
|
+
VivaEngageEvents: 424,
|
|
42804
|
+
CallActivityEvent: 425,
|
|
42805
|
+
SonarDetonationContentMetadata: 426,
|
|
42806
|
+
UniversalPrintManagement: 427,
|
|
42807
|
+
YammerUserHiding: 428,
|
|
42808
|
+
Microsoft365BackupGranularBrowseTask: 429,
|
|
42809
|
+
PurviewPostureAgent: 430,
|
|
42810
|
+
MSDECustomCollection: 431,
|
|
42811
|
+
SCPUsageEvent: 432,
|
|
42812
|
+
SCPConfigurationEvent: 433,
|
|
42813
|
+
MDCConfigurationEvent: 434,
|
|
42814
|
+
MDCUsageEvent: 435,
|
|
42815
|
+
A365SpanOutputs: 436,
|
|
42816
|
+
PowerPlatformTenantIsolation: 437,
|
|
42817
|
+
CDPDLMAIInteractionInsights: 438,
|
|
42818
|
+
P4AIAssessmentCategoryRecord: 439,
|
|
42819
|
+
SentinelLakeEncryption: 440,
|
|
42820
|
+
AZFWNetworkRule: 441,
|
|
42821
|
+
AZFWDnsQuery: 442,
|
|
42822
|
+
AZFWApplicationRuleAggregation: 443,
|
|
42823
|
+
TeamsEvalDataHubDataAccess: 444,
|
|
42824
|
+
TeamsEvalDataHubPermissionChange: 445,
|
|
42825
|
+
TeamsEvalDataHubAdminOperation: 446,
|
|
42826
|
+
VivaGlintOrganizationalData: 447,
|
|
42827
|
+
AlertSubmission: 448,
|
|
42828
|
+
AlertSubmissionResultDetail: 449,
|
|
42829
|
+
ComplianceSitGradingSharePoint: 450,
|
|
42830
|
+
CompliancePolicyGradingSharePoint: 451,
|
|
42831
|
+
AzureAISearchAudit: 452,
|
|
42832
|
+
P4AIRiskScoreRecord: 453,
|
|
42833
|
+
DragonCopilotAdmin: 454,
|
|
42834
|
+
AISpanOutputs: 455,
|
|
42835
|
+
EopSubmissionFeedEntity: 456,
|
|
42836
|
+
SonarFileDetonationEntity: 457,
|
|
42837
|
+
SonarSubmissionEntity: 458,
|
|
42838
|
+
SonarUrlDetonationEntity: 459,
|
|
42839
|
+
SubmissionEntity: 460,
|
|
42840
|
+
SonarDetonationEntity: 461,
|
|
42841
|
+
MicrosoftTeamsUserConcern: 462,
|
|
42842
|
+
VivaGlintAgenticCampaign: 463,
|
|
42843
|
+
MSPVectorSearchContentMetadata: 464,
|
|
42844
|
+
FabricPolicy: 465,
|
|
42845
|
+
SecurityCopilotAgentIdentityManagement: 466,
|
|
42846
|
+
CopilotSessionSharing: 467,
|
|
42847
|
+
DragonCopilotAccess: 468,
|
|
42848
|
+
DragonCopilotClinicalData: 469,
|
|
42849
|
+
DragonCopilotSession: 470,
|
|
42850
|
+
MosAgentInfoRecordV2: 471,
|
|
42851
|
+
SecurityDevelopmentLifecycleAILog: 472,
|
|
42852
|
+
MDASH: 473,
|
|
42853
|
+
DefenderSecurityForAIConfiguration: 474,
|
|
42854
|
+
SparkCoreCustomLivePool: 475,
|
|
42855
|
+
unknownFutureValue: 476,
|
|
42856
|
+
}
|
|
42857
|
+
|
|
42858
|
+
/**
|
|
42859
|
+
* Type of user associated with an audit log record.
|
|
42860
|
+
*/
|
|
42861
|
+
enum auditLogUserType {
|
|
42862
|
+
Regular: 0,
|
|
42863
|
+
Reserved: 1,
|
|
42864
|
+
Admin: 2,
|
|
42865
|
+
DcAdmin: 3,
|
|
42866
|
+
System: 4,
|
|
42867
|
+
Application: 5,
|
|
42868
|
+
ServicePrincipal: 6,
|
|
42869
|
+
CustomPolicy: 7,
|
|
42870
|
+
SystemPolicy: 8,
|
|
42871
|
+
PartnerTechnician: 9,
|
|
42872
|
+
Guest: 10,
|
|
42873
|
+
unknownFutureValue: 11,
|
|
42874
|
+
}
|
|
42875
|
+
|
|
39350
42876
|
enum behaviorDuringRetentionPeriod {
|
|
39351
42877
|
doNotRetain: 0,
|
|
39352
42878
|
retain: 1,
|