@microsoft/typespec-msgraph-reference 1.0.4 → 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 +18 -0
- package/lib/Bleu/Beta/main.tsp +310 -7
- package/lib/Bleu/V1.0/main.tsp +430 -1
- package/lib/Delos/Beta/main.tsp +4284 -23
- package/lib/Delos/V1.0/main.tsp +2815 -22
- package/lib/Fairfax/Beta/main.tsp +627 -23
- package/lib/Fairfax/V1.0/main.tsp +61 -1
- package/lib/GovSG/Beta/main.tsp +1 -0
- package/lib/GovSG/V1.0/main.tsp +3 -1
- package/lib/Mooncake/Beta/main.tsp +269 -7
- package/lib/Mooncake/V1.0/main.tsp +60 -1
- package/lib/Prod/Beta/main.tsp +1695 -75
- package/lib/Prod/V1.0/main.tsp +4171 -167
- package/lib/USNat/Beta/main.tsp +576 -0
- package/lib/USNat/V1.0/main.tsp +465 -1
- package/lib/USSec/Beta/main.tsp +576 -0
- package/lib/USSec/V1.0/main.tsp +465 -1
- package/package.json +2 -2
package/lib/Prod/V1.0/main.tsp
CHANGED
|
@@ -48,6 +48,7 @@ namespace reference.`microsoft.graph` {
|
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
@complex model accessPackageApprovalStage {
|
|
51
|
+
approverInformationVisibility: approverInformationVisibility;
|
|
51
52
|
durationBeforeAutomaticDenial: duration | null;
|
|
52
53
|
durationBeforeEscalation: duration | null;
|
|
53
54
|
escalationApprovers: subjectSet[] | null;
|
|
@@ -147,6 +148,20 @@ namespace reference.`microsoft.graph` {
|
|
|
147
148
|
@complex model accessPackageResourceAttributeSource {
|
|
148
149
|
}
|
|
149
150
|
|
|
151
|
+
@abstract
|
|
152
|
+
@complex model accessPackageSuggestionReason {
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
@complex model accessPackageSuggestionRelatedPeopleBased extends accessPackageSuggestionReason {
|
|
156
|
+
relatedPeople: identity[];
|
|
157
|
+
relatedPeopleAssignmentCount: int32;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
@complex model accessPackageSuggestionSelfAssignmentHistoryBased extends accessPackageSuggestionReason {
|
|
161
|
+
@computed lastAssignmentDateTime: offsetDateTime;
|
|
162
|
+
pastAssignmentCount: int32;
|
|
163
|
+
}
|
|
164
|
+
|
|
150
165
|
@complex model accessPackageUserDirectoryAttributeStore extends accessPackageResourceAttributeDestination {
|
|
151
166
|
}
|
|
152
167
|
|
|
@@ -398,6 +413,9 @@ namespace reference.`microsoft.graph` {
|
|
|
398
413
|
@complex model allDevicesAssignmentTarget extends deviceAndAppManagementAssignmentTarget {
|
|
399
414
|
}
|
|
400
415
|
|
|
416
|
+
@complex model allDomains extends validatingDomains {
|
|
417
|
+
}
|
|
418
|
+
|
|
401
419
|
/**
|
|
402
420
|
* Represents an assignment to all licensed users in the tenant.
|
|
403
421
|
*/
|
|
@@ -3470,6 +3488,10 @@ namespace reference.`microsoft.graph` {
|
|
|
3470
3488
|
users: string[] | null;
|
|
3471
3489
|
}
|
|
3472
3490
|
|
|
3491
|
+
@complex model enumeratedDomains extends validatingDomains {
|
|
3492
|
+
domainNames: string[];
|
|
3493
|
+
}
|
|
3494
|
+
|
|
3473
3495
|
@complex model enumeratedScopes extends inheritableScopes {
|
|
3474
3496
|
scopes: string[];
|
|
3475
3497
|
}
|
|
@@ -4355,6 +4377,9 @@ namespace reference.`microsoft.graph` {
|
|
|
4355
4377
|
passcode: string | null;
|
|
4356
4378
|
}
|
|
4357
4379
|
|
|
4380
|
+
/**
|
|
4381
|
+
* Standard way to represent a Json blob on Graph.
|
|
4382
|
+
*/
|
|
4358
4383
|
@complex model Json {
|
|
4359
4384
|
}
|
|
4360
4385
|
|
|
@@ -5092,6 +5117,11 @@ namespace reference.`microsoft.graph` {
|
|
|
5092
5117
|
oneNoteWebUrl: externalLink | null;
|
|
5093
5118
|
}
|
|
5094
5119
|
|
|
5120
|
+
@complex model notificationRecipients {
|
|
5121
|
+
customRecipients: emailIdentity[];
|
|
5122
|
+
role: notificationRecipientsType;
|
|
5123
|
+
}
|
|
5124
|
+
|
|
5095
5125
|
@complex model noTrainingNotificationSetting extends endUserNotificationSetting {
|
|
5096
5126
|
simulationNotification: simulationNotification | null;
|
|
5097
5127
|
}
|
|
@@ -5572,6 +5602,21 @@ namespace reference.`microsoft.graph` {
|
|
|
5572
5602
|
type: string | null;
|
|
5573
5603
|
}
|
|
5574
5604
|
|
|
5605
|
+
@complex model packageAccessEntity {
|
|
5606
|
+
resourceId: string;
|
|
5607
|
+
resourceType: accessEntityType;
|
|
5608
|
+
}
|
|
5609
|
+
|
|
5610
|
+
@complex model packageElement {
|
|
5611
|
+
definition: Json | null;
|
|
5612
|
+
id: string | null;
|
|
5613
|
+
}
|
|
5614
|
+
|
|
5615
|
+
@complex model packageElementDetail {
|
|
5616
|
+
elements: packageElement[];
|
|
5617
|
+
elementType: string | null;
|
|
5618
|
+
}
|
|
5619
|
+
|
|
5575
5620
|
@complex model pageLinks {
|
|
5576
5621
|
oneNoteClientUrl: externalLink | null;
|
|
5577
5622
|
oneNoteWebUrl: externalLink | null;
|
|
@@ -8116,6 +8161,11 @@ namespace reference.`microsoft.graph` {
|
|
|
8116
8161
|
workLocationType: workLocationType;
|
|
8117
8162
|
}
|
|
8118
8163
|
|
|
8164
|
+
@abstract
|
|
8165
|
+
@complex model validatingDomains {
|
|
8166
|
+
rootDomains: rootDomains;
|
|
8167
|
+
}
|
|
8168
|
+
|
|
8119
8169
|
@complex model verifiedDomain {
|
|
8120
8170
|
capabilities: string | null;
|
|
8121
8171
|
isDefault: boolean | null;
|
|
@@ -9273,6 +9323,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9273
9323
|
displayName: string | null;
|
|
9274
9324
|
originId: string | null;
|
|
9275
9325
|
originSystem: string | null;
|
|
9326
|
+
type: roleType | null;
|
|
9276
9327
|
@contains resource: accessPackageResource | null;
|
|
9277
9328
|
}
|
|
9278
9329
|
|
|
@@ -9302,6 +9353,11 @@ namespace reference.`microsoft.graph` {
|
|
|
9302
9353
|
@references connectedOrganization: connectedOrganization | null;
|
|
9303
9354
|
}
|
|
9304
9355
|
|
|
9356
|
+
@entity model accessPackageSuggestion extends entity {
|
|
9357
|
+
reasons: accessPackageSuggestionReason[];
|
|
9358
|
+
@references accessPackage: availableAccessPackage | null;
|
|
9359
|
+
}
|
|
9360
|
+
|
|
9305
9361
|
@entity model accessPackageTextInputQuestion extends accessPackageQuestion {
|
|
9306
9362
|
isSingleLineQuestion: boolean | null;
|
|
9307
9363
|
regexPattern: string | null;
|
|
@@ -9486,9 +9542,6 @@ namespace reference.`microsoft.graph` {
|
|
|
9486
9542
|
@references sponsors: directoryObject[];
|
|
9487
9543
|
}
|
|
9488
9544
|
|
|
9489
|
-
/**
|
|
9490
|
-
* Represents a Microsoft Entra user account.
|
|
9491
|
-
*/
|
|
9492
9545
|
@open
|
|
9493
9546
|
@entity model agentUser extends user {
|
|
9494
9547
|
}
|
|
@@ -10715,6 +10768,12 @@ namespace reference.`microsoft.graph` {
|
|
|
10715
10768
|
guestUserRoleId: guid | null;
|
|
10716
10769
|
}
|
|
10717
10770
|
|
|
10771
|
+
@entity model availableAccessPackage extends entity {
|
|
10772
|
+
description: string | null;
|
|
10773
|
+
displayName: string | null;
|
|
10774
|
+
@references resourceRoleScopes: accessPackageResourceRoleScope[];
|
|
10775
|
+
}
|
|
10776
|
+
|
|
10718
10777
|
@entity model azureCommunicationServicesUserConversationMember extends conversationMember {
|
|
10719
10778
|
azureCommunicationServicesId: string | null;
|
|
10720
10779
|
}
|
|
@@ -10735,6 +10794,7 @@ namespace reference.`microsoft.graph` {
|
|
|
10735
10794
|
@contains driveInclusionRules: driveProtectionRule[];
|
|
10736
10795
|
@contains driveProtectionUnits: driveProtectionUnit[];
|
|
10737
10796
|
@contains driveProtectionUnitsBulkAdditionJobs: driveProtectionUnitsBulkAdditionJob[];
|
|
10797
|
+
@contains emailNotificationsSetting: emailNotificationsSetting | null;
|
|
10738
10798
|
@contains exchangeProtectionPolicies: exchangeProtectionPolicy[];
|
|
10739
10799
|
@contains exchangeRestoreSessions: exchangeRestoreSession[];
|
|
10740
10800
|
@contains mailboxInclusionRules: mailboxProtectionRule[];
|
|
@@ -11937,6 +11997,15 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11937
11997
|
displayName: string | null;
|
|
11938
11998
|
}
|
|
11939
11999
|
|
|
12000
|
+
@abstract
|
|
12001
|
+
@entity model controlConfiguration extends entity {
|
|
12002
|
+
createdBy: string | null;
|
|
12003
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
12004
|
+
isEnabled: boolean;
|
|
12005
|
+
modifiedBy: string | null;
|
|
12006
|
+
modifiedDateTime: offsetDateTime | null;
|
|
12007
|
+
}
|
|
12008
|
+
|
|
11940
12009
|
@entity model conversation extends entity {
|
|
11941
12010
|
hasAttachments: boolean;
|
|
11942
12011
|
@computed lastDeliveredDateTime: offsetDateTime;
|
|
@@ -11966,9 +12035,14 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11966
12035
|
}
|
|
11967
12036
|
|
|
11968
12037
|
@entity model copilotAdmin extends entity {
|
|
12038
|
+
@contains catalog: copilotAdminCatalog | null;
|
|
11969
12039
|
@contains settings: copilotAdminSetting | null;
|
|
11970
12040
|
}
|
|
11971
12041
|
|
|
12042
|
+
@entity model copilotAdminCatalog extends entity {
|
|
12043
|
+
@contains packages: copilotPackageDetail[];
|
|
12044
|
+
}
|
|
12045
|
+
|
|
11972
12046
|
@entity model copilotAdminLimitedMode extends entity {
|
|
11973
12047
|
groupId: string | null;
|
|
11974
12048
|
isEnabledForGroup: boolean | null;
|
|
@@ -11978,6 +12052,38 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
11978
12052
|
@contains limitedMode: copilotAdminLimitedMode | null;
|
|
11979
12053
|
}
|
|
11980
12054
|
|
|
12055
|
+
@entity model copilotPackage extends entity {
|
|
12056
|
+
appId: string | null;
|
|
12057
|
+
assetId: string | null;
|
|
12058
|
+
availableTo: packageStatus;
|
|
12059
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
12060
|
+
deployedTo: packageStatus;
|
|
12061
|
+
displayName: string | null;
|
|
12062
|
+
elementTypes: string[];
|
|
12063
|
+
isBlocked: boolean;
|
|
12064
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
12065
|
+
manifestId: string | null;
|
|
12066
|
+
manifestVersion: string | null;
|
|
12067
|
+
ownerId: string | null;
|
|
12068
|
+
platform: string | null;
|
|
12069
|
+
publisher: string | null;
|
|
12070
|
+
shortDescription: string | null;
|
|
12071
|
+
supportedHosts: string[];
|
|
12072
|
+
type: packageType;
|
|
12073
|
+
version: string | null;
|
|
12074
|
+
zipFile: stream | null;
|
|
12075
|
+
}
|
|
12076
|
+
|
|
12077
|
+
@entity model copilotPackageDetail extends copilotPackage {
|
|
12078
|
+
acquireUsersAndGroups: packageAccessEntity[];
|
|
12079
|
+
allowedUsersAndGroups: packageAccessEntity[];
|
|
12080
|
+
categories: string[];
|
|
12081
|
+
elementDetails: packageElementDetail[];
|
|
12082
|
+
longDescription: string | null;
|
|
12083
|
+
sensitivity: string | null;
|
|
12084
|
+
sharedWithUsersAndGroups: packageAccessEntity[];
|
|
12085
|
+
}
|
|
12086
|
+
|
|
11981
12087
|
@entity model copilotReportRoot extends entity {
|
|
11982
12088
|
}
|
|
11983
12089
|
|
|
@@ -13663,6 +13769,7 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
13663
13769
|
@contains federationConfigurations: identityProviderBase[];
|
|
13664
13770
|
@contains onPremisesSynchronization: onPremisesDirectorySynchronization[];
|
|
13665
13771
|
@contains publicKeyInfrastructure: publicKeyInfrastructureRoot | null;
|
|
13772
|
+
@contains recovery: reference.`microsoft.graph.entraRecoveryServices`.recovery | null;
|
|
13666
13773
|
@contains subscriptions: companySubscription[];
|
|
13667
13774
|
}
|
|
13668
13775
|
|
|
@@ -14184,15 +14291,18 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
14184
14291
|
recipientEmail: string;
|
|
14185
14292
|
}
|
|
14186
14293
|
|
|
14294
|
+
@entity model emailNotificationsSetting extends entity {
|
|
14295
|
+
additionalEvents: notificationEventsType;
|
|
14296
|
+
isEnabled: boolean;
|
|
14297
|
+
recipients: notificationRecipients;
|
|
14298
|
+
}
|
|
14299
|
+
|
|
14187
14300
|
@entity model emergencyCallEvent extends callEvent {
|
|
14188
14301
|
callerInfo: emergencyCallerInfo | null;
|
|
14189
14302
|
emergencyNumberDialed: string | null;
|
|
14190
14303
|
policyName: string | null;
|
|
14191
14304
|
}
|
|
14192
14305
|
|
|
14193
|
-
/**
|
|
14194
|
-
* Represents a container that exposes navigation properties for employee experience resources.
|
|
14195
|
-
*/
|
|
14196
14306
|
@entity model employeeExperience extends MsGraph.SharedModels.entity {
|
|
14197
14307
|
/**
|
|
14198
14308
|
* A collection of communities in Viva Engage.
|
|
@@ -14250,6 +14360,11 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
14250
14360
|
subject: string;
|
|
14251
14361
|
}
|
|
14252
14362
|
|
|
14363
|
+
@entity model endUserSettings extends controlConfiguration {
|
|
14364
|
+
relatedPeopleInsightLevel: accessPackageSuggestionRelatedPeopleInsightLevel | null;
|
|
14365
|
+
showApproverDetailsToMembers: boolean;
|
|
14366
|
+
}
|
|
14367
|
+
|
|
14253
14368
|
/**
|
|
14254
14369
|
* Represents the status of a Viva Engage async operation that is an operation that transcends the
|
|
14255
14370
|
lifetime of a single API request. These operations are long-running or too expensive to complete
|
|
@@ -14493,11 +14608,14 @@ within the time frame of their original request.
|
|
|
14493
14608
|
@entity model entitlementManagement extends entity {
|
|
14494
14609
|
@contains accessPackageAssignmentApprovals: approval[];
|
|
14495
14610
|
@contains accessPackages: accessPackage[];
|
|
14611
|
+
@contains accessPackageSuggestions: accessPackageSuggestion[];
|
|
14496
14612
|
@contains assignmentPolicies: accessPackageAssignmentPolicy[];
|
|
14497
14613
|
@contains assignmentRequests: accessPackageAssignmentRequest[];
|
|
14498
14614
|
@contains assignments: accessPackageAssignment[];
|
|
14615
|
+
@contains availableAccessPackages: availableAccessPackage[];
|
|
14499
14616
|
@contains catalogs: accessPackageCatalog[];
|
|
14500
14617
|
@contains connectedOrganizations: connectedOrganization[];
|
|
14618
|
+
@contains controlConfigurations: controlConfiguration[];
|
|
14501
14619
|
@contains resourceEnvironments: accessPackageResourceEnvironment[];
|
|
14502
14620
|
@contains resourceRequests: accessPackageResourceRequest[];
|
|
14503
14621
|
@contains resourceRoleScopes: accessPackageResourceRoleScope[];
|
|
@@ -14686,7 +14804,11 @@ within the time frame of their original request.
|
|
|
14686
14804
|
description: string | null;
|
|
14687
14805
|
issuer: string;
|
|
14688
14806
|
name: string;
|
|
14689
|
-
subject: string;
|
|
14807
|
+
subject: string | null;
|
|
14808
|
+
}
|
|
14809
|
+
|
|
14810
|
+
@entity model federatedTokenValidationPolicy extends directoryObject {
|
|
14811
|
+
validatingDomains: validatingDomains;
|
|
14690
14812
|
}
|
|
14691
14813
|
|
|
14692
14814
|
@entity model fido2AuthenticationMethod extends authenticationMethod {
|
|
@@ -14838,11 +14960,9 @@ within the time frame of their original request.
|
|
|
14838
14960
|
siteId: string | null;
|
|
14839
14961
|
}
|
|
14840
14962
|
|
|
14841
|
-
/**
|
|
14842
|
-
* Represents a Microsoft Entra group.
|
|
14843
|
-
*/
|
|
14844
14963
|
@open
|
|
14845
14964
|
@entity model group extends directoryObject {
|
|
14965
|
+
accessType: groupAccessType | null;
|
|
14846
14966
|
allowExternalSenders: boolean | null;
|
|
14847
14967
|
assignedLabels: assignedLabel[] | null;
|
|
14848
14968
|
assignedLicenses: assignedLicense[] | null;
|
|
@@ -14859,6 +14979,7 @@ within the time frame of their original request.
|
|
|
14859
14979
|
infoCatalogs: string[];
|
|
14860
14980
|
isArchived: boolean | null;
|
|
14861
14981
|
isAssignableToRole: boolean | null;
|
|
14982
|
+
isFavorite: boolean | null;
|
|
14862
14983
|
isManagementRestricted: boolean | null;
|
|
14863
14984
|
isSubscribedByMail: boolean | null;
|
|
14864
14985
|
licenseProcessingState: licenseProcessingState | null;
|
|
@@ -14868,6 +14989,7 @@ within the time frame of their original request.
|
|
|
14868
14989
|
membershipRule: string | null;
|
|
14869
14990
|
membershipRuleProcessingState: string | null;
|
|
14870
14991
|
onPremisesDomainName: string | null;
|
|
14992
|
+
onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
|
|
14871
14993
|
onPremisesLastSyncDateTime: offsetDateTime | null;
|
|
14872
14994
|
onPremisesNetBiosName: string | null;
|
|
14873
14995
|
onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
|
|
@@ -14885,7 +15007,9 @@ within the time frame of their original request.
|
|
|
14885
15007
|
serviceProvisioningErrors: serviceProvisioningError[] | null;
|
|
14886
15008
|
theme: string | null;
|
|
14887
15009
|
uniqueName: string | null;
|
|
15010
|
+
unseenConversationsCount: int32 | null;
|
|
14888
15011
|
unseenCount: int32 | null;
|
|
15012
|
+
unseenMessagesCount: int32 | null;
|
|
14889
15013
|
visibility: string | null;
|
|
14890
15014
|
welcomeMessageEnabled: boolean | null;
|
|
14891
15015
|
@contains acceptedSenders: directoryObject[];
|
|
@@ -18291,9 +18415,6 @@ within the time frame of their original request.
|
|
|
18291
18415
|
handler: onInteractiveAuthFlowStartHandler | null;
|
|
18292
18416
|
}
|
|
18293
18417
|
|
|
18294
|
-
/**
|
|
18295
|
-
* Represents a Microsoft online meeting.
|
|
18296
|
-
*/
|
|
18297
18418
|
@open
|
|
18298
18419
|
@entity model onlineMeeting extends onlineMeetingBase {
|
|
18299
18420
|
attendeeReport: stream | null;
|
|
@@ -18862,6 +18983,7 @@ within the time frame of their original request.
|
|
|
18862
18983
|
@contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
|
|
18863
18984
|
@contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
|
|
18864
18985
|
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
18986
|
+
@contains federatedTokenValidationPolicy: federatedTokenValidationPolicy | null;
|
|
18865
18987
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
18866
18988
|
@contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
|
|
18867
18989
|
@contains ownerlessGroupPolicy: ownerlessGroupPolicy | null;
|
|
@@ -19148,6 +19270,7 @@ within the time frame of their original request.
|
|
|
19148
19270
|
@entity model profileCardProperty extends entity {
|
|
19149
19271
|
annotations: profileCardAnnotation[] | null;
|
|
19150
19272
|
directoryPropertyName: string | null;
|
|
19273
|
+
isVisible: boolean;
|
|
19151
19274
|
}
|
|
19152
19275
|
|
|
19153
19276
|
@entity model profilePhoto extends entity {
|
|
@@ -19779,11 +19902,16 @@ within the time frame of their original request.
|
|
|
19779
19902
|
vendorInformation: securityVendorInformation | null;
|
|
19780
19903
|
}
|
|
19781
19904
|
|
|
19905
|
+
/**
|
|
19906
|
+
* Security singleton providing access to audit log resources.
|
|
19907
|
+
*/
|
|
19782
19908
|
@entity model security extends MsGraph.SharedModels.entity {
|
|
19783
19909
|
@contains alerts: alert[];
|
|
19784
19910
|
@contains alerts_v2: reference.`microsoft.graph.security`.alert[];
|
|
19785
19911
|
@contains attackSimulation: attackSimulationRoot | null;
|
|
19912
|
+
@contains auditLog: reference.`microsoft.graph.security`.auditCoreRoot | null;
|
|
19786
19913
|
@contains cases: reference.`microsoft.graph.security`.casesRoot | null;
|
|
19914
|
+
@contains collaboration: reference.`microsoft.graph.security`.collaborationRoot | null;
|
|
19787
19915
|
@contains dataSecurityAndGovernance: tenantDataSecurityAndGovernance | null;
|
|
19788
19916
|
@contains identities: reference.`microsoft.graph.security`.identityContainer | null;
|
|
19789
19917
|
@contains incidents: reference.`microsoft.graph.security`.incident[];
|
|
@@ -21303,9 +21431,6 @@ within the time frame of their original request.
|
|
|
21303
21431
|
@references resource: entity | null;
|
|
21304
21432
|
}
|
|
21305
21433
|
|
|
21306
|
-
/**
|
|
21307
|
-
* Represents a Microsoft Entra user account.
|
|
21308
|
-
*/
|
|
21309
21434
|
@open
|
|
21310
21435
|
@entity model user extends directoryObject {
|
|
21311
21436
|
aboutMe: string | null;
|
|
@@ -25649,6 +25774,12 @@ within the time frame of their original request.
|
|
|
25649
25774
|
allowedPolicyOIDs: string[];
|
|
25650
25775
|
}
|
|
25651
25776
|
|
|
25777
|
+
enum accessEntityType {
|
|
25778
|
+
user: 0,
|
|
25779
|
+
group: 1,
|
|
25780
|
+
unknownFutureValue: 2,
|
|
25781
|
+
}
|
|
25782
|
+
|
|
25652
25783
|
enum accessPackageAssignmentFilterByCurrentUserOptions {
|
|
25653
25784
|
target: 1,
|
|
25654
25785
|
createdBy: 2,
|
|
@@ -25755,6 +25886,21 @@ within the time frame of their original request.
|
|
|
25755
25886
|
unknownFutureValue: 3,
|
|
25756
25887
|
}
|
|
25757
25888
|
|
|
25889
|
+
@graphFlags
|
|
25890
|
+
enum accessPackageSuggestionFilterByCurrentUserOptions {
|
|
25891
|
+
none: 0,
|
|
25892
|
+
relatedPeopleAssignments: 1,
|
|
25893
|
+
assignmentHistory: 2,
|
|
25894
|
+
unknownFutureValue: 4,
|
|
25895
|
+
}
|
|
25896
|
+
|
|
25897
|
+
enum accessPackageSuggestionRelatedPeopleInsightLevel {
|
|
25898
|
+
disabled: 0,
|
|
25899
|
+
count: 1,
|
|
25900
|
+
countAndNames: 2,
|
|
25901
|
+
unknownFutureValue: 3,
|
|
25902
|
+
}
|
|
25903
|
+
|
|
25758
25904
|
enum accessReviewExpirationBehavior {
|
|
25759
25905
|
keepAccess: 0,
|
|
25760
25906
|
removeAccess: 1,
|
|
@@ -26252,6 +26398,13 @@ within the time frame of their original request.
|
|
|
26252
26398
|
unknownFutureValue: 3,
|
|
26253
26399
|
}
|
|
26254
26400
|
|
|
26401
|
+
enum approverInformationVisibility {
|
|
26402
|
+
default: 0,
|
|
26403
|
+
notVisible: 1,
|
|
26404
|
+
visible: 2,
|
|
26405
|
+
unknownFutureValue: 3,
|
|
26406
|
+
}
|
|
26407
|
+
|
|
26255
26408
|
enum appsUpdateChannelType {
|
|
26256
26409
|
current: 0,
|
|
26257
26410
|
monthlyEnterprise: 1,
|
|
@@ -29334,6 +29487,14 @@ within the time frame of their original request.
|
|
|
29334
29487
|
unknownFutureValue: 2,
|
|
29335
29488
|
}
|
|
29336
29489
|
|
|
29490
|
+
enum groupAccessType {
|
|
29491
|
+
none: 0,
|
|
29492
|
+
private: 1,
|
|
29493
|
+
secret: 2,
|
|
29494
|
+
public: 3,
|
|
29495
|
+
unknownFutureValue: 4,
|
|
29496
|
+
}
|
|
29497
|
+
|
|
29337
29498
|
enum groupType {
|
|
29338
29499
|
unifiedGroups: 0,
|
|
29339
29500
|
azureAD: 1,
|
|
@@ -30476,6 +30637,23 @@ within the time frame of their original request.
|
|
|
30476
30637
|
unknownFutureValue: 3,
|
|
30477
30638
|
}
|
|
30478
30639
|
|
|
30640
|
+
@graphFlags
|
|
30641
|
+
enum notificationEventsType {
|
|
30642
|
+
none: 1,
|
|
30643
|
+
restoreAndPolicyUpdates: 2,
|
|
30644
|
+
unknownFutureValue: 4,
|
|
30645
|
+
}
|
|
30646
|
+
|
|
30647
|
+
@graphFlags
|
|
30648
|
+
enum notificationRecipientsType {
|
|
30649
|
+
none: 0,
|
|
30650
|
+
globalAdmins: 1,
|
|
30651
|
+
backupAdmins: 2,
|
|
30652
|
+
custom: 4,
|
|
30653
|
+
allAdmins: 8,
|
|
30654
|
+
unknownFutureValue: 16,
|
|
30655
|
+
}
|
|
30656
|
+
|
|
30479
30657
|
/**
|
|
30480
30658
|
* Branding Options for the Message Template. Branding is defined in the Intune Admin Console.
|
|
30481
30659
|
*/
|
|
@@ -30711,6 +30889,21 @@ within the time frame of their original request.
|
|
|
30711
30889
|
unknownFutureValue: 1,
|
|
30712
30890
|
}
|
|
30713
30891
|
|
|
30892
|
+
enum packageStatus {
|
|
30893
|
+
none: 0,
|
|
30894
|
+
some: 1,
|
|
30895
|
+
all: 2,
|
|
30896
|
+
unknownFutureValue: 3,
|
|
30897
|
+
}
|
|
30898
|
+
|
|
30899
|
+
enum packageType {
|
|
30900
|
+
microsoft: 0,
|
|
30901
|
+
external: 1,
|
|
30902
|
+
shared: 2,
|
|
30903
|
+
custom: 3,
|
|
30904
|
+
unknownFutureValue: 4,
|
|
30905
|
+
}
|
|
30906
|
+
|
|
30714
30907
|
enum pageLayoutType {
|
|
30715
30908
|
microsoftReserved: 0,
|
|
30716
30909
|
article: 1,
|
|
@@ -33212,6 +33405,24 @@ within the time frame of their original request.
|
|
|
33212
33405
|
unknownFutureValue: 4,
|
|
33213
33406
|
}
|
|
33214
33407
|
|
|
33408
|
+
enum roleType {
|
|
33409
|
+
active: 0,
|
|
33410
|
+
eligible: 1,
|
|
33411
|
+
application: 2,
|
|
33412
|
+
delegated: 3,
|
|
33413
|
+
unknownFutureValue: 99,
|
|
33414
|
+
}
|
|
33415
|
+
|
|
33416
|
+
enum rootDomains {
|
|
33417
|
+
none: 0,
|
|
33418
|
+
all: 1,
|
|
33419
|
+
allFederated: 2,
|
|
33420
|
+
allManaged: 3,
|
|
33421
|
+
enumerated: 4,
|
|
33422
|
+
allManagedAndEnumeratedFederated: 5,
|
|
33423
|
+
unknownFutureValue: 6,
|
|
33424
|
+
}
|
|
33425
|
+
|
|
33215
33426
|
enum routingMode {
|
|
33216
33427
|
oneToOne: 0,
|
|
33217
33428
|
multicast: 1,
|
|
@@ -36541,6 +36752,165 @@ namespace reference.`microsoft.graph.callRecords` {
|
|
|
36541
36752
|
unknownFutureValue: 7,
|
|
36542
36753
|
}
|
|
36543
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
|
+
|
|
36544
36914
|
}
|
|
36545
36915
|
@publicNamespace("microsoft.graph.externalconnectors")
|
|
36546
36916
|
namespace reference.`microsoft.graph.externalConnectors` {
|
|
@@ -36804,6 +37174,7 @@ namespace reference.`microsoft.graph.externalConnectors` {
|
|
|
36804
37174
|
personLanguages: 54,
|
|
36805
37175
|
personPublications: 55,
|
|
36806
37176
|
personPatents: 56,
|
|
37177
|
+
personWorkPositions: 57,
|
|
36807
37178
|
}
|
|
36808
37179
|
|
|
36809
37180
|
enum propertyType {
|
|
@@ -36863,6 +37234,18 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
36863
37234
|
triggerAttributes: triggerAttribute[];
|
|
36864
37235
|
}
|
|
36865
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
|
+
|
|
36866
37249
|
@complex model customTaskExtensionCallbackConfiguration extends reference.`microsoft.graph`.customExtensionCallbackConfiguration {
|
|
36867
37250
|
@references authorizedApps: reference.`microsoft.graph`.application[];
|
|
36868
37251
|
}
|
|
@@ -36895,6 +37278,32 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
36895
37278
|
valueType: valueType;
|
|
36896
37279
|
}
|
|
36897
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
|
+
|
|
36898
37307
|
@complex model ruleBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
36899
37308
|
rule: string;
|
|
36900
37309
|
}
|
|
@@ -36981,6 +37390,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
36981
37390
|
@complex model workflowExecutionTrigger {
|
|
36982
37391
|
}
|
|
36983
37392
|
|
|
37393
|
+
@complex model workflowSetting {
|
|
37394
|
+
quarantineConfiguration: quarantineConfiguration | null;
|
|
37395
|
+
}
|
|
37396
|
+
|
|
36984
37397
|
@complex model workflowsInsightsByCategory {
|
|
36985
37398
|
failedJoinerRuns: int32;
|
|
36986
37399
|
failedLeaverRuns: int32;
|
|
@@ -37018,6 +37431,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37018
37431
|
|
|
37019
37432
|
@entity model lifecycleManagementSettings extends reference.`microsoft.graph`.entity {
|
|
37020
37433
|
emailSettings: reference.`microsoft.graph`.emailSettings;
|
|
37434
|
+
quarantineConfiguration: quarantineConfiguration | null;
|
|
37021
37435
|
workflowScheduleIntervalInHours: int32;
|
|
37022
37436
|
}
|
|
37023
37437
|
|
|
@@ -37116,8 +37530,11 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37116
37530
|
deletedDateTime: offsetDateTime | null;
|
|
37117
37531
|
@computed @key id: string;
|
|
37118
37532
|
nextScheduleRunDateTime: offsetDateTime | null;
|
|
37533
|
+
quarantineDetails: quarantineDetails;
|
|
37534
|
+
settings: workflowSetting;
|
|
37119
37535
|
version: int32 | null;
|
|
37120
37536
|
@references executionScope: userProcessingResult[];
|
|
37537
|
+
@references previewScope: reference.`microsoft.graph`.directoryObject[];
|
|
37121
37538
|
@contains runs: run[];
|
|
37122
37539
|
@contains taskReports: taskReport[];
|
|
37123
37540
|
@contains userProcessingResults: userProcessingResult[];
|
|
@@ -37149,6 +37566,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37149
37566
|
}
|
|
37150
37567
|
|
|
37151
37568
|
@entity model workflowVersion extends workflowBase {
|
|
37569
|
+
settings: workflowSetting;
|
|
37152
37570
|
@computed @key versionNumber: int32;
|
|
37153
37571
|
}
|
|
37154
37572
|
|
|
@@ -37193,6 +37611,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37193
37611
|
canceled: 4,
|
|
37194
37612
|
failed: 5,
|
|
37195
37613
|
unknownFutureValue: 6,
|
|
37614
|
+
canceling: 7,
|
|
37615
|
+
quarantined: 8,
|
|
37616
|
+
}
|
|
37617
|
+
|
|
37618
|
+
enum matchMode {
|
|
37619
|
+
any: 0,
|
|
37620
|
+
all: 1,
|
|
37621
|
+
unknownFutureValue: 2,
|
|
37196
37622
|
}
|
|
37197
37623
|
|
|
37198
37624
|
enum membershipChangeType {
|
|
@@ -37201,6 +37627,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37201
37627
|
unknownFutureValue: 3,
|
|
37202
37628
|
}
|
|
37203
37629
|
|
|
37630
|
+
enum quarantineType {
|
|
37631
|
+
notQuarantined: 0,
|
|
37632
|
+
countBasedThresholdExceeded: 1,
|
|
37633
|
+
percentageBasedThresholdExceeded: 2,
|
|
37634
|
+
multipleConditionsExceeded: 3,
|
|
37635
|
+
unknownFutureValue: 4,
|
|
37636
|
+
}
|
|
37637
|
+
|
|
37204
37638
|
enum valueType {
|
|
37205
37639
|
`enum`: 0,
|
|
37206
37640
|
`string`: 1,
|
|
@@ -37214,6 +37648,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37214
37648
|
onDemand: 1,
|
|
37215
37649
|
unknownFutureValue: 2,
|
|
37216
37650
|
activatedWithScope: 3,
|
|
37651
|
+
preview: 4,
|
|
37217
37652
|
}
|
|
37218
37653
|
|
|
37219
37654
|
enum workflowTriggerTimeBasedAttribute {
|
|
@@ -37380,8 +37815,51 @@ namespace reference.`microsoft.graph.search` {
|
|
|
37380
37815
|
|
|
37381
37816
|
}
|
|
37382
37817
|
@deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2026-03-18", "2028-03-18", "Alert category property is deprecated and replaced with alert categories")
|
|
37818
|
+
// Metadata item DeprecatedDefinition_Tasks_And_Plans was already defined with a different value.
|
|
37383
37819
|
@publicNamespace("microsoft.graph.security")
|
|
37384
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
|
+
|
|
37385
37863
|
@complex model account {
|
|
37386
37864
|
actions: action[];
|
|
37387
37865
|
identifier: string;
|
|
@@ -37393,6 +37871,27 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37393
37871
|
trustedDomains: activeDirectoryDomainEvidence[];
|
|
37394
37872
|
}
|
|
37395
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
|
+
|
|
37396
37895
|
@complex model aiAgentEvidence extends alertEvidence {
|
|
37397
37896
|
agentId: string | null;
|
|
37398
37897
|
agentName: string | null;
|
|
@@ -37400,6 +37899,118 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37400
37899
|
instructions: string | null;
|
|
37401
37900
|
}
|
|
37402
37901
|
|
|
37902
|
+
/**
|
|
37903
|
+
* Audit data for AI App Interaction events.
|
|
37904
|
+
*/
|
|
37905
|
+
@open
|
|
37906
|
+
@complex model aiAppInteractionAuditRecord extends auditData {
|
|
37907
|
+
}
|
|
37908
|
+
|
|
37909
|
+
/**
|
|
37910
|
+
* Audit data for AI Execute Tool events.
|
|
37911
|
+
*/
|
|
37912
|
+
@open
|
|
37913
|
+
@complex model aiExecuteToolAuditRecord extends auditData {
|
|
37914
|
+
}
|
|
37915
|
+
|
|
37916
|
+
/**
|
|
37917
|
+
* Audit data for AI Interactions Change Notification events.
|
|
37918
|
+
*/
|
|
37919
|
+
@open
|
|
37920
|
+
@complex model aiInteractionsChangeNotificationAuditRecord extends auditData {
|
|
37921
|
+
}
|
|
37922
|
+
|
|
37923
|
+
/**
|
|
37924
|
+
* Audit data for AI Interactions Export events.
|
|
37925
|
+
*/
|
|
37926
|
+
@open
|
|
37927
|
+
@complex model aiInteractionsExportAuditRecord extends auditData {
|
|
37928
|
+
}
|
|
37929
|
+
|
|
37930
|
+
/**
|
|
37931
|
+
* Audit data for AI Interactions Subscription events.
|
|
37932
|
+
*/
|
|
37933
|
+
@open
|
|
37934
|
+
@complex model aiInteractionsSubscriptionAuditRecord extends auditData {
|
|
37935
|
+
}
|
|
37936
|
+
|
|
37937
|
+
/**
|
|
37938
|
+
* Audit data for AI Invoke Agent events.
|
|
37939
|
+
*/
|
|
37940
|
+
@open
|
|
37941
|
+
@complex model aiInvokeAgentAuditRecord extends auditData {
|
|
37942
|
+
}
|
|
37943
|
+
|
|
37944
|
+
/**
|
|
37945
|
+
* Audit data for AIP Discover events.
|
|
37946
|
+
*/
|
|
37947
|
+
@open
|
|
37948
|
+
@complex model aipDiscover extends auditData {
|
|
37949
|
+
}
|
|
37950
|
+
|
|
37951
|
+
/**
|
|
37952
|
+
* Audit data for AIP File Deleted events.
|
|
37953
|
+
*/
|
|
37954
|
+
@open
|
|
37955
|
+
@complex model aipFileDeleted extends auditData {
|
|
37956
|
+
}
|
|
37957
|
+
|
|
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
|
+
|
|
37403
38014
|
@complex model alertComment {
|
|
37404
38015
|
comment: string | null;
|
|
37405
38016
|
createdByDisplayName: string | null;
|
|
@@ -37416,6 +38027,20 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37416
38027
|
verdict: evidenceVerdict;
|
|
37417
38028
|
}
|
|
37418
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
|
+
|
|
37419
38044
|
@complex model amazonResourceEvidence extends alertEvidence {
|
|
37420
38045
|
amazonAccountId: string | null;
|
|
37421
38046
|
amazonResourceId: string | null;
|
|
@@ -37423,6 +38048,67 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37423
38048
|
resourceType: string | null;
|
|
37424
38049
|
}
|
|
37425
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;
|
|
38102
|
+
}
|
|
38103
|
+
|
|
38104
|
+
@complex model analyzedEmailUrl {
|
|
38105
|
+
detectionMethod: string | null;
|
|
38106
|
+
detonationDetails: detonationDetails | null;
|
|
38107
|
+
tenantAllowBlockListDetailInfo: string | null;
|
|
38108
|
+
threatType: threatType | null;
|
|
38109
|
+
url: string | null;
|
|
38110
|
+
}
|
|
38111
|
+
|
|
37426
38112
|
@complex model analyzedMessageEvidence extends alertEvidence {
|
|
37427
38113
|
antiSpamDirection: string | null;
|
|
37428
38114
|
attachmentsCount: int64 | null;
|
|
@@ -37444,6 +38130,49 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37444
38130
|
urn: string | null;
|
|
37445
38131
|
}
|
|
37446
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
|
+
|
|
37447
38176
|
@complex model autonomousSystem {
|
|
37448
38177
|
name: string;
|
|
37449
38178
|
number: int32;
|
|
@@ -37451,6 +38180,55 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37451
38180
|
value: string;
|
|
37452
38181
|
}
|
|
37453
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
|
+
|
|
37454
38232
|
@complex model azureResourceEvidence extends alertEvidence {
|
|
37455
38233
|
resourceId: string | null;
|
|
37456
38234
|
resourceName: string | null;
|
|
@@ -37471,6 +38249,83 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37471
38249
|
url: string | null;
|
|
37472
38250
|
}
|
|
37473
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
|
+
|
|
37474
38329
|
@complex model cloudApplicationEvidence extends alertEvidence {
|
|
37475
38330
|
appId: int64 | null;
|
|
37476
38331
|
displayName: string | null;
|
|
@@ -37496,6 +38351,200 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37496
38351
|
userAgent: string | null;
|
|
37497
38352
|
}
|
|
37498
38353
|
|
|
38354
|
+
/**
|
|
38355
|
+
* Audit data for Cloud Update Device Config events.
|
|
38356
|
+
*/
|
|
38357
|
+
@open
|
|
38358
|
+
@complex model cloudUpdateDeviceConfigAuditRecord extends auditData {
|
|
38359
|
+
}
|
|
38360
|
+
|
|
38361
|
+
/**
|
|
38362
|
+
* Audit data for Cloud Update Profile Config events.
|
|
38363
|
+
*/
|
|
38364
|
+
@open
|
|
38365
|
+
@complex model cloudUpdateProfileConfigAuditRecord extends auditData {
|
|
38366
|
+
}
|
|
38367
|
+
|
|
38368
|
+
/**
|
|
38369
|
+
* Audit data for Cloud Update Tenant Config events.
|
|
38370
|
+
*/
|
|
38371
|
+
@open
|
|
38372
|
+
@complex model cloudUpdateTenantConfigAuditRecord extends auditData {
|
|
38373
|
+
}
|
|
38374
|
+
|
|
38375
|
+
/**
|
|
38376
|
+
* Audit data for Compliance Connector events.
|
|
38377
|
+
*/
|
|
38378
|
+
@open
|
|
38379
|
+
@complex model complianceConnectorAuditRecord extends auditData {
|
|
38380
|
+
}
|
|
38381
|
+
|
|
38382
|
+
/**
|
|
38383
|
+
* Audit data for Compliance DLM Exchange events.
|
|
38384
|
+
*/
|
|
38385
|
+
@open
|
|
38386
|
+
@complex model complianceDLMExchangeAuditRecord extends auditData {
|
|
38387
|
+
}
|
|
38388
|
+
|
|
38389
|
+
/**
|
|
38390
|
+
* Audit data for Compliance DLM SharePoint events.
|
|
38391
|
+
*/
|
|
38392
|
+
@open
|
|
38393
|
+
@complex model complianceDLMSharePointAuditRecord extends auditData {
|
|
38394
|
+
}
|
|
38395
|
+
|
|
38396
|
+
/**
|
|
38397
|
+
* Audit data for Compliance DLP Applications events.
|
|
38398
|
+
*/
|
|
38399
|
+
@open
|
|
38400
|
+
@complex model complianceDLPApplicationsAuditRecord extends auditData {
|
|
38401
|
+
}
|
|
38402
|
+
|
|
38403
|
+
/**
|
|
38404
|
+
* Audit data for Compliance DLP Applications Classification events.
|
|
38405
|
+
*/
|
|
38406
|
+
@open
|
|
38407
|
+
@complex model complianceDLPApplicationsClassificationAuditRecord extends auditData {
|
|
38408
|
+
}
|
|
38409
|
+
|
|
38410
|
+
/**
|
|
38411
|
+
* Audit data for Compliance DLP Endpoint events.
|
|
38412
|
+
*/
|
|
38413
|
+
@open
|
|
38414
|
+
@complex model complianceDLPEndpointAuditRecord extends auditData {
|
|
38415
|
+
}
|
|
38416
|
+
|
|
38417
|
+
/**
|
|
38418
|
+
* Audit data for Compliance DLP Endpoint Discovery events.
|
|
38419
|
+
*/
|
|
38420
|
+
@open
|
|
38421
|
+
@complex model complianceDLPEndpointDiscoveryAuditRecord extends auditData {
|
|
38422
|
+
}
|
|
38423
|
+
|
|
38424
|
+
/**
|
|
38425
|
+
* Audit data for Compliance DLP Enforcement events.
|
|
38426
|
+
*/
|
|
38427
|
+
@open
|
|
38428
|
+
@complex model complianceDLPEnforcementAuditRecord extends auditData {
|
|
38429
|
+
}
|
|
38430
|
+
|
|
38431
|
+
/**
|
|
38432
|
+
* Audit data for Compliance DLP Exchange events.
|
|
38433
|
+
*/
|
|
38434
|
+
@open
|
|
38435
|
+
@complex model complianceDLPExchangeAuditRecord extends auditData {
|
|
38436
|
+
}
|
|
38437
|
+
|
|
38438
|
+
/**
|
|
38439
|
+
* Audit data for Compliance DLP Exchange Classification events.
|
|
38440
|
+
*/
|
|
38441
|
+
@open
|
|
38442
|
+
@complex model complianceDLPExchangeClassificationAuditRecord extends auditData {
|
|
38443
|
+
}
|
|
38444
|
+
|
|
38445
|
+
/**
|
|
38446
|
+
* Audit data for Compliance DLP Exchange Classification CDP events.
|
|
38447
|
+
*/
|
|
38448
|
+
@open
|
|
38449
|
+
@complex model complianceDLPExchangeClassificationCdpRecord extends auditData {
|
|
38450
|
+
}
|
|
38451
|
+
|
|
38452
|
+
/**
|
|
38453
|
+
* Audit data for Compliance DLP Exchange Discovery events.
|
|
38454
|
+
*/
|
|
38455
|
+
@open
|
|
38456
|
+
@complex model complianceDLPExchangeDiscoveryAuditRecord extends auditData {
|
|
38457
|
+
}
|
|
38458
|
+
|
|
38459
|
+
/**
|
|
38460
|
+
* Audit data for Compliance DLP SharePoint events.
|
|
38461
|
+
*/
|
|
38462
|
+
@open
|
|
38463
|
+
@complex model complianceDLPSharePointAuditRecord extends auditData {
|
|
38464
|
+
}
|
|
38465
|
+
|
|
38466
|
+
/**
|
|
38467
|
+
* Audit data for Compliance DLP SharePoint Classification events.
|
|
38468
|
+
*/
|
|
38469
|
+
@open
|
|
38470
|
+
@complex model complianceDLPSharePointClassificationAuditRecord extends auditData {
|
|
38471
|
+
}
|
|
38472
|
+
|
|
38473
|
+
/**
|
|
38474
|
+
* Audit data for Compliance DLP SharePoint Classification CDP events.
|
|
38475
|
+
*/
|
|
38476
|
+
@open
|
|
38477
|
+
@complex model complianceDLPSharePointClassificationCdpRecord extends auditData {
|
|
38478
|
+
}
|
|
38479
|
+
|
|
38480
|
+
/**
|
|
38481
|
+
* Audit data for Compliance DLP SharePoint Classification Extended events.
|
|
38482
|
+
*/
|
|
38483
|
+
@open
|
|
38484
|
+
@complex model complianceDLPSharePointClassificationExtendedAuditRecord extends auditData {
|
|
38485
|
+
}
|
|
38486
|
+
|
|
38487
|
+
/**
|
|
38488
|
+
* Audit data for Compliance Exchange OCR events.
|
|
38489
|
+
*/
|
|
38490
|
+
@open
|
|
38491
|
+
@complex model complianceExchangeOcrAuditRecord extends auditData {
|
|
38492
|
+
}
|
|
38493
|
+
|
|
38494
|
+
/**
|
|
38495
|
+
* Audit data for Compliance Manager Action events.
|
|
38496
|
+
*/
|
|
38497
|
+
@open
|
|
38498
|
+
@complex model complianceManagerActionRecord extends auditData {
|
|
38499
|
+
}
|
|
38500
|
+
|
|
38501
|
+
/**
|
|
38502
|
+
* Audit data for Compliance Policy Grading SharePoint events.
|
|
38503
|
+
*/
|
|
38504
|
+
@open
|
|
38505
|
+
@complex model compliancePolicyGradingSharePointAuditRecord extends auditData {
|
|
38506
|
+
}
|
|
38507
|
+
|
|
38508
|
+
/**
|
|
38509
|
+
* Audit data for Compliance Settings Change events.
|
|
38510
|
+
*/
|
|
38511
|
+
@open
|
|
38512
|
+
@complex model complianceSettingsChangeAuditRecord extends auditData {
|
|
38513
|
+
}
|
|
38514
|
+
|
|
38515
|
+
/**
|
|
38516
|
+
* Audit data for Compliance SIT Grading SharePoint events.
|
|
38517
|
+
*/
|
|
38518
|
+
@open
|
|
38519
|
+
@complex model complianceSitGradingSharePointAuditRecord extends auditData {
|
|
38520
|
+
}
|
|
38521
|
+
|
|
38522
|
+
/**
|
|
38523
|
+
* Audit data for Compliance Supervision Exchange events.
|
|
38524
|
+
*/
|
|
38525
|
+
@open
|
|
38526
|
+
@complex model complianceSupervisionExchangeAuditRecord extends auditData {
|
|
38527
|
+
}
|
|
38528
|
+
|
|
38529
|
+
@complex model compromiseIndicator {
|
|
38530
|
+
value: string | null;
|
|
38531
|
+
verdict: verdictCategory | null;
|
|
38532
|
+
}
|
|
38533
|
+
|
|
38534
|
+
/**
|
|
38535
|
+
* Audit data for Connected AI App Interaction events.
|
|
38536
|
+
*/
|
|
38537
|
+
@open
|
|
38538
|
+
@complex model connectedAIAppInteractionAuditRecord extends auditData {
|
|
38539
|
+
}
|
|
38540
|
+
|
|
38541
|
+
/**
|
|
38542
|
+
* Audit data for Consumption Resource events.
|
|
38543
|
+
*/
|
|
38544
|
+
@open
|
|
38545
|
+
@complex model consumptionResourceAuditRecord extends auditData {
|
|
38546
|
+
}
|
|
38547
|
+
|
|
37499
38548
|
@complex model containerEvidence extends alertEvidence {
|
|
37500
38549
|
args: string[] | null;
|
|
37501
38550
|
command: string[] | null;
|
|
@@ -37516,16 +38565,266 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37516
38565
|
registry: string | null;
|
|
37517
38566
|
}
|
|
37518
38567
|
|
|
38568
|
+
/**
|
|
38569
|
+
* Audit data for Content Store Meta events.
|
|
38570
|
+
*/
|
|
38571
|
+
@open
|
|
38572
|
+
@complex model contentStoreMetadataRecord extends auditData {
|
|
38573
|
+
}
|
|
38574
|
+
|
|
38575
|
+
/**
|
|
38576
|
+
* Audit data for Copilot Agent Management events.
|
|
38577
|
+
*/
|
|
38578
|
+
@open
|
|
38579
|
+
@complex model copilotAgentManagementAuditRecord extends auditData {
|
|
38580
|
+
}
|
|
38581
|
+
|
|
38582
|
+
/**
|
|
38583
|
+
* Audit data for Copilot for Security Logging events.
|
|
38584
|
+
*/
|
|
38585
|
+
@open
|
|
38586
|
+
@complex model copilotForSecurityLoggingAuditRecord extends auditData {
|
|
38587
|
+
}
|
|
38588
|
+
|
|
38589
|
+
/**
|
|
38590
|
+
* Audit data for Copilot for Security Trigger events.
|
|
38591
|
+
*/
|
|
38592
|
+
@open
|
|
38593
|
+
@complex model copilotForSecurityTriggerAuditRecord extends auditData {
|
|
38594
|
+
}
|
|
38595
|
+
|
|
38596
|
+
/**
|
|
38597
|
+
* Audit data for Copilot Interaction events.
|
|
38598
|
+
*/
|
|
38599
|
+
@open
|
|
38600
|
+
@complex model copilotInteractionAuditRecord extends auditData {
|
|
38601
|
+
}
|
|
38602
|
+
|
|
38603
|
+
/**
|
|
38604
|
+
* Audit data for Copilot Plugin Setting events.
|
|
38605
|
+
*/
|
|
38606
|
+
@open
|
|
38607
|
+
@complex model copilotPluginSettingAuditRecord extends auditData {
|
|
38608
|
+
}
|
|
38609
|
+
|
|
38610
|
+
/**
|
|
38611
|
+
* Audit data for Copilot Prompt Book Setting events.
|
|
38612
|
+
*/
|
|
38613
|
+
@open
|
|
38614
|
+
@complex model copilotPromptBookSettingAuditRecord extends auditData {
|
|
38615
|
+
}
|
|
38616
|
+
|
|
38617
|
+
/**
|
|
38618
|
+
* Audit data for Copilot Session Sharing events.
|
|
38619
|
+
*/
|
|
38620
|
+
@open
|
|
38621
|
+
@complex model copilotSessionSharingAuditRecord extends auditData {
|
|
38622
|
+
}
|
|
38623
|
+
|
|
38624
|
+
/**
|
|
38625
|
+
* Audit data for Copilot Setting events.
|
|
38626
|
+
*/
|
|
38627
|
+
@open
|
|
38628
|
+
@complex model copilotSettingAuditRecord extends auditData {
|
|
38629
|
+
}
|
|
38630
|
+
|
|
38631
|
+
/**
|
|
38632
|
+
* Audit data for Copilot Workspace Setting events.
|
|
38633
|
+
*/
|
|
38634
|
+
@open
|
|
38635
|
+
@complex model copilotWorkspaceSettingAuditRecord extends auditData {
|
|
38636
|
+
}
|
|
38637
|
+
|
|
38638
|
+
/**
|
|
38639
|
+
* Audit data for Core Reporting Settings events.
|
|
38640
|
+
*/
|
|
38641
|
+
@open
|
|
38642
|
+
@complex model coreReportingSettingsAuditRecord extends auditData {
|
|
38643
|
+
}
|
|
38644
|
+
|
|
38645
|
+
/**
|
|
38646
|
+
* Audit data for Cortana Briefing events.
|
|
38647
|
+
*/
|
|
38648
|
+
@open
|
|
38649
|
+
@complex model cortanaBriefingAuditRecord extends auditData {
|
|
38650
|
+
}
|
|
38651
|
+
|
|
38652
|
+
/**
|
|
38653
|
+
* Audit data for Critical Asset Management Classification events.
|
|
38654
|
+
*/
|
|
38655
|
+
@open
|
|
38656
|
+
@complex model criticalAssetManagementClassificationRecord extends auditData {
|
|
38657
|
+
}
|
|
38658
|
+
|
|
38659
|
+
/**
|
|
38660
|
+
* Audit data for CRM Entity Operation events.
|
|
38661
|
+
*/
|
|
38662
|
+
@open
|
|
38663
|
+
@complex model crmEntityOperationAuditRecord extends auditData {
|
|
38664
|
+
}
|
|
38665
|
+
|
|
38666
|
+
/**
|
|
38667
|
+
* Audit data for Cross Tenant Access Policy events.
|
|
38668
|
+
*/
|
|
38669
|
+
@open
|
|
38670
|
+
@complex model crossTenantAccessPolicyAuditRecord extends auditData {
|
|
38671
|
+
}
|
|
38672
|
+
|
|
38673
|
+
/**
|
|
38674
|
+
* Audit data for Customer Key Service Encryption events.
|
|
38675
|
+
*/
|
|
38676
|
+
@open
|
|
38677
|
+
@complex model customerKeyServiceEncryptionAuditRecord extends auditData {
|
|
38678
|
+
}
|
|
38679
|
+
|
|
37519
38680
|
@complex model cvssSummary {
|
|
37520
38681
|
score: float64;
|
|
37521
38682
|
severity: vulnerabilitySeverity | null;
|
|
37522
38683
|
vectorString: string | null;
|
|
37523
38684
|
}
|
|
37524
38685
|
|
|
38686
|
+
/**
|
|
38687
|
+
* Audit data for Data Center Security cmdlet events.
|
|
38688
|
+
*/
|
|
38689
|
+
@open
|
|
38690
|
+
@complex model dataCenterSecurityCmdletAuditRecord extends auditData {
|
|
38691
|
+
}
|
|
38692
|
+
|
|
38693
|
+
/**
|
|
38694
|
+
* Audit data for Data Governance events.
|
|
38695
|
+
*/
|
|
38696
|
+
@open
|
|
38697
|
+
@complex model dataGovernanceAuditRecord extends auditData {
|
|
38698
|
+
}
|
|
38699
|
+
|
|
38700
|
+
/**
|
|
38701
|
+
* Audit data for Data Insights Rest Api events.
|
|
38702
|
+
*/
|
|
38703
|
+
@open
|
|
38704
|
+
@complex model dataInsightsRestApiAuditRecord extends auditData {
|
|
38705
|
+
}
|
|
38706
|
+
|
|
38707
|
+
/**
|
|
38708
|
+
* Audit data for Data Lake Export Operation events.
|
|
38709
|
+
*/
|
|
38710
|
+
@open
|
|
38711
|
+
@complex model dataLakeExportOperationAuditRecord extends auditData {
|
|
38712
|
+
}
|
|
38713
|
+
|
|
38714
|
+
/**
|
|
38715
|
+
* Audit data for Data Security Investigation events.
|
|
38716
|
+
*/
|
|
38717
|
+
@open
|
|
38718
|
+
@complex model dataSecurityInvestigationAuditRecord extends auditData {
|
|
38719
|
+
}
|
|
38720
|
+
|
|
38721
|
+
/**
|
|
38722
|
+
* Audit data for Data Share Operation events.
|
|
38723
|
+
*/
|
|
38724
|
+
@open
|
|
38725
|
+
@complex model dataShareOperationAuditRecord extends auditData {
|
|
38726
|
+
}
|
|
38727
|
+
|
|
38728
|
+
/**
|
|
38729
|
+
* Default open-type audit data when no specific subtype applies.
|
|
38730
|
+
*/
|
|
38731
|
+
@open
|
|
38732
|
+
@complex model defaultAuditData extends auditData {
|
|
38733
|
+
}
|
|
38734
|
+
|
|
38735
|
+
/**
|
|
38736
|
+
* Audit data for Defender Case Management events.
|
|
38737
|
+
*/
|
|
38738
|
+
@open
|
|
38739
|
+
@complex model defenderCaseManagementAuditRecord extends auditData {
|
|
38740
|
+
}
|
|
38741
|
+
|
|
38742
|
+
/**
|
|
38743
|
+
* Audit data for Defender Preview Features events.
|
|
38744
|
+
*/
|
|
38745
|
+
@open
|
|
38746
|
+
@complex model defenderPreviewFeaturesRecord extends auditData {
|
|
38747
|
+
}
|
|
38748
|
+
|
|
38749
|
+
/**
|
|
38750
|
+
* Audit data for Defender Security for AI Configuration events.
|
|
38751
|
+
*/
|
|
38752
|
+
@open
|
|
38753
|
+
@complex model defenderSecurityForAIConfigurationAuditRecord extends auditData {
|
|
38754
|
+
}
|
|
38755
|
+
|
|
38756
|
+
/**
|
|
38757
|
+
* Audit data for Deploy Feature Activity events.
|
|
38758
|
+
*/
|
|
38759
|
+
@open
|
|
38760
|
+
@complex model deployFeatureActivityRecord extends auditData {
|
|
38761
|
+
}
|
|
38762
|
+
|
|
37525
38763
|
@complex model deploymentAccessKeyType {
|
|
37526
38764
|
deploymentAccessKey: string;
|
|
37527
38765
|
}
|
|
37528
38766
|
|
|
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;
|
|
38778
|
+
}
|
|
38779
|
+
|
|
38780
|
+
@complex model detonationChain {
|
|
38781
|
+
childNodes: detonationChain[] | null;
|
|
38782
|
+
value: string | null;
|
|
38783
|
+
}
|
|
38784
|
+
|
|
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;
|
|
38799
|
+
}
|
|
38800
|
+
|
|
38801
|
+
@complex model detonationObservables {
|
|
38802
|
+
contactedIps: string[] | null;
|
|
38803
|
+
contactedUrls: string[] | null;
|
|
38804
|
+
droppedfiles: string[] | null;
|
|
38805
|
+
}
|
|
38806
|
+
|
|
38807
|
+
/**
|
|
38808
|
+
* Audit data for Device Discovery Settings Authenticated Scans events.
|
|
38809
|
+
*/
|
|
38810
|
+
@open
|
|
38811
|
+
@complex model deviceDiscoverySettingsAuthenticatedScansRecord extends auditData {
|
|
38812
|
+
}
|
|
38813
|
+
|
|
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
|
+
|
|
37529
38828
|
@complex model deviceEvidence extends alertEvidence {
|
|
37530
38829
|
azureAdDeviceId: string | null;
|
|
37531
38830
|
defenderAvStatus: defenderAvStatus | null;
|
|
@@ -37555,6 +38854,34 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37555
38854
|
@complex model dictionary {
|
|
37556
38855
|
}
|
|
37557
38856
|
|
|
38857
|
+
/**
|
|
38858
|
+
* Audit data for eDiscovery events.
|
|
38859
|
+
*/
|
|
38860
|
+
@open
|
|
38861
|
+
@complex model discoveryAuditRecord extends auditData {
|
|
38862
|
+
}
|
|
38863
|
+
|
|
38864
|
+
/**
|
|
38865
|
+
* Audit data for DLP Endpoint events.
|
|
38866
|
+
*/
|
|
38867
|
+
@open
|
|
38868
|
+
@complex model dlpEndpointAuditRecord extends auditData {
|
|
38869
|
+
}
|
|
38870
|
+
|
|
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
|
+
|
|
37558
38885
|
@complex model dnsEvidence extends alertEvidence {
|
|
37559
38886
|
dnsServerIp: ipEvidence | null;
|
|
37560
38887
|
domainName: string | null;
|
|
@@ -37562,16 +38889,65 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37562
38889
|
ipAddresses: ipEvidence[] | null;
|
|
37563
38890
|
}
|
|
37564
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
|
+
|
|
37565
38920
|
@open
|
|
37566
38921
|
@complex model dynamicColumnValue {
|
|
37567
38922
|
}
|
|
37568
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
|
+
|
|
37569
38938
|
@complex model emailSender {
|
|
37570
38939
|
displayName: string | null;
|
|
37571
38940
|
domainName: string | null;
|
|
37572
38941
|
emailAddress: string | null;
|
|
37573
38942
|
}
|
|
37574
38943
|
|
|
38944
|
+
/**
|
|
38945
|
+
* Audit data for EOP Submission Feed Entity events.
|
|
38946
|
+
*/
|
|
38947
|
+
@open
|
|
38948
|
+
@complex model eopSubmissionFeedEntityAuditRecord extends auditData {
|
|
38949
|
+
}
|
|
38950
|
+
|
|
37575
38951
|
@complex model eventPropagationResult {
|
|
37576
38952
|
location: string | null;
|
|
37577
38953
|
serviceName: string | null;
|
|
@@ -37584,12 +38960,61 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37584
38960
|
queryType: queryType | null;
|
|
37585
38961
|
}
|
|
37586
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
|
+
|
|
37587
38998
|
@complex model exportFileMetadata {
|
|
37588
38999
|
downloadUrl: string | null;
|
|
37589
39000
|
fileName: string | null;
|
|
37590
39001
|
size: int64 | null;
|
|
37591
39002
|
}
|
|
37592
39003
|
|
|
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
|
+
|
|
37593
39018
|
@complex model fileDetails {
|
|
37594
39019
|
fileName: string | null;
|
|
37595
39020
|
filePath: string | null;
|
|
@@ -37692,6 +39117,20 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37692
39117
|
resourceType: string | null;
|
|
37693
39118
|
}
|
|
37694
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
|
+
|
|
37695
39134
|
@complex model hostLogonSessionEvidence extends alertEvidence {
|
|
37696
39135
|
account: userEvidence | null;
|
|
37697
39136
|
endUtcDateTime: offsetDateTime | null;
|
|
@@ -37728,6 +39167,13 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37728
39167
|
port: int32 | null;
|
|
37729
39168
|
}
|
|
37730
39169
|
|
|
39170
|
+
/**
|
|
39171
|
+
* Audit data for HR Signal events.
|
|
39172
|
+
*/
|
|
39173
|
+
@open
|
|
39174
|
+
@complex model hrSignalAuditRecord extends auditData {
|
|
39175
|
+
}
|
|
39176
|
+
|
|
37731
39177
|
@complex model huntingQueryResults {
|
|
37732
39178
|
results: huntingRowResult[] | null;
|
|
37733
39179
|
schema: singlePropertySchema[] | null;
|
|
@@ -37737,11 +39183,60 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37737
39183
|
@complex model huntingRowResult {
|
|
37738
39184
|
}
|
|
37739
39185
|
|
|
39186
|
+
/**
|
|
39187
|
+
* Audit data for Hygiene Event events.
|
|
39188
|
+
*/
|
|
39189
|
+
@open
|
|
39190
|
+
@complex model hygieneEventRecord extends auditData {
|
|
39191
|
+
}
|
|
39192
|
+
|
|
37740
39193
|
@complex model hyperlink {
|
|
37741
39194
|
name: string;
|
|
37742
39195
|
url: string;
|
|
37743
39196
|
}
|
|
37744
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
|
+
|
|
37745
39240
|
@complex model intelligenceProfileCountryOrRegionOfOrigin {
|
|
37746
39241
|
code: string;
|
|
37747
39242
|
label: string;
|
|
@@ -37790,6 +39285,27 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37790
39285
|
stream: stream | null;
|
|
37791
39286
|
}
|
|
37792
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
|
+
|
|
37793
39309
|
@complex model kubernetesClusterEvidence extends alertEvidence {
|
|
37794
39310
|
cloudResource: alertEvidence | null;
|
|
37795
39311
|
distribution: string | null;
|
|
@@ -37854,11 +39370,60 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37854
39370
|
targetPort: string | null;
|
|
37855
39371
|
}
|
|
37856
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
|
+
|
|
37857
39394
|
@complex model loggedOnUser {
|
|
37858
39395
|
accountName: string | null;
|
|
37859
39396
|
domainName: string | null;
|
|
37860
39397
|
}
|
|
37861
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
|
+
|
|
37862
39427
|
@complex model mailboxConfigurationEvidence extends alertEvidence {
|
|
37863
39428
|
configurationId: string | null;
|
|
37864
39429
|
configurationType: mailboxConfigurationType | null;
|
|
@@ -37884,6 +39449,13 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37884
39449
|
urn: string | null;
|
|
37885
39450
|
}
|
|
37886
39451
|
|
|
39452
|
+
/**
|
|
39453
|
+
* Audit data for Mail Submission events.
|
|
39454
|
+
*/
|
|
39455
|
+
@open
|
|
39456
|
+
@complex model mailSubmissionData extends auditData {
|
|
39457
|
+
}
|
|
39458
|
+
|
|
37887
39459
|
@complex model malwareEvidence extends alertEvidence {
|
|
37888
39460
|
category: string | null;
|
|
37889
39461
|
files: fileEvidence[] | null;
|
|
@@ -37891,212 +39463,1711 @@ namespace reference.`microsoft.graph.security` {
|
|
|
37891
39463
|
processes: processEvidence[] | null;
|
|
37892
39464
|
}
|
|
37893
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
|
+
|
|
37894
39557
|
@complex model mergeResponse {
|
|
37895
39558
|
targetIncidentId: string;
|
|
37896
39559
|
}
|
|
37897
39560
|
|
|
37898
|
-
|
|
37899
|
-
|
|
37900
|
-
|
|
37901
|
-
|
|
37902
|
-
|
|
37903
|
-
sourcePort: int32 | null;
|
|
39561
|
+
/**
|
|
39562
|
+
* Audit data for Mesh Worlds events.
|
|
39563
|
+
*/
|
|
39564
|
+
@open
|
|
39565
|
+
@complex model meshWorldsAuditRecord extends auditData {
|
|
37904
39566
|
}
|
|
37905
39567
|
|
|
37906
|
-
|
|
37907
|
-
|
|
37908
|
-
|
|
37909
|
-
|
|
39568
|
+
/**
|
|
39569
|
+
* Audit data for Microsoft365 Backup Backup Item events.
|
|
39570
|
+
*/
|
|
39571
|
+
@open
|
|
39572
|
+
@complex model microsoft365BackupBackupItemAuditRecord extends auditData {
|
|
37910
39573
|
}
|
|
37911
39574
|
|
|
37912
|
-
|
|
37913
|
-
|
|
37914
|
-
|
|
37915
|
-
|
|
37916
|
-
|
|
39575
|
+
/**
|
|
39576
|
+
* Audit data for Microsoft365 Backup Backup Policy events.
|
|
39577
|
+
*/
|
|
39578
|
+
@open
|
|
39579
|
+
@complex model microsoft365BackupBackupPolicyAuditRecord extends auditData {
|
|
37917
39580
|
}
|
|
37918
39581
|
|
|
37919
|
-
|
|
37920
|
-
|
|
37921
|
-
|
|
37922
|
-
|
|
39582
|
+
/**
|
|
39583
|
+
* Audit data for Microsoft365 Backup Granular Browse Task events.
|
|
39584
|
+
*/
|
|
39585
|
+
@open
|
|
39586
|
+
@complex model microsoft365BackupGranularBrowseTaskAuditRecord extends auditData {
|
|
37923
39587
|
}
|
|
37924
39588
|
|
|
37925
|
-
|
|
37926
|
-
|
|
37927
|
-
|
|
37928
|
-
|
|
37929
|
-
|
|
37930
|
-
parentProcessId: int64 | null;
|
|
37931
|
-
parentProcessImageFile: fileDetails | null;
|
|
37932
|
-
processCommandLine: string | null;
|
|
37933
|
-
processCreationDateTime: offsetDateTime | null;
|
|
37934
|
-
processId: int64 | null;
|
|
37935
|
-
userAccount: userAccount | null;
|
|
39589
|
+
/**
|
|
39590
|
+
* Audit data for Microsoft365 Backup Restore Item events.
|
|
39591
|
+
*/
|
|
39592
|
+
@open
|
|
39593
|
+
@complex model microsoft365BackupRestoreItemAuditRecord extends auditData {
|
|
37936
39594
|
}
|
|
37937
39595
|
|
|
37938
|
-
|
|
37939
|
-
|
|
37940
|
-
|
|
37941
|
-
|
|
37942
|
-
|
|
39596
|
+
/**
|
|
39597
|
+
* Audit data for Microsoft365 Backup Restore Task events.
|
|
39598
|
+
*/
|
|
39599
|
+
@open
|
|
39600
|
+
@complex model microsoft365BackupRestoreTaskAuditRecord extends auditData {
|
|
37943
39601
|
}
|
|
37944
39602
|
|
|
37945
|
-
|
|
37946
|
-
|
|
37947
|
-
|
|
39603
|
+
/**
|
|
39604
|
+
* Audit data for Microsoft365 Copilot Scheduled Prompt events.
|
|
39605
|
+
*/
|
|
39606
|
+
@open
|
|
39607
|
+
@complex model microsoft365CopilotScheduledPromptAuditRecord extends auditData {
|
|
37948
39608
|
}
|
|
37949
39609
|
|
|
37950
|
-
|
|
37951
|
-
|
|
37952
|
-
|
|
37953
|
-
|
|
37954
|
-
|
|
37955
|
-
registryValueName: string | null;
|
|
37956
|
-
registryValueType: string | null;
|
|
39610
|
+
/**
|
|
39611
|
+
* Audit data for Microsoft Defender Experts XDR events.
|
|
39612
|
+
*/
|
|
39613
|
+
@open
|
|
39614
|
+
@complex model microsoftDefenderExpertsXDRAuditRecord extends auditData {
|
|
37957
39615
|
}
|
|
37958
39616
|
|
|
37959
|
-
|
|
37960
|
-
|
|
37961
|
-
|
|
37962
|
-
|
|
39617
|
+
/**
|
|
39618
|
+
* Audit data for Microsoft Flow events.
|
|
39619
|
+
*/
|
|
39620
|
+
@open
|
|
39621
|
+
@complex model microsoftFlowAuditRecord extends auditData {
|
|
37963
39622
|
}
|
|
37964
39623
|
|
|
37965
|
-
|
|
37966
|
-
|
|
37967
|
-
|
|
37968
|
-
|
|
37969
|
-
|
|
39624
|
+
/**
|
|
39625
|
+
* Audit data for Microsoft Forms events.
|
|
39626
|
+
*/
|
|
39627
|
+
@open
|
|
39628
|
+
@complex model microsoftFormsAuditRecord extends auditData {
|
|
37970
39629
|
}
|
|
37971
39630
|
|
|
37972
|
-
|
|
37973
|
-
|
|
39631
|
+
/**
|
|
39632
|
+
* Audit data for Microsoft Graph Data Connect Consent events.
|
|
39633
|
+
*/
|
|
39634
|
+
@open
|
|
39635
|
+
@complex model microsoftGraphDataConnectConsent extends auditData {
|
|
37974
39636
|
}
|
|
37975
39637
|
|
|
37976
|
-
|
|
39638
|
+
/**
|
|
39639
|
+
* Audit data for Microsoft Graph Data Connect Operation events.
|
|
39640
|
+
*/
|
|
39641
|
+
@open
|
|
39642
|
+
@complex model microsoftGraphDataConnectOperation extends auditData {
|
|
37977
39643
|
}
|
|
37978
39644
|
|
|
37979
|
-
|
|
37980
|
-
|
|
39645
|
+
/**
|
|
39646
|
+
* Audit data for Microsoft Purview Data Catalog Operation events.
|
|
39647
|
+
*/
|
|
39648
|
+
@open
|
|
39649
|
+
@complex model microsoftPurviewDataCatalogOperationRecord extends auditData {
|
|
37981
39650
|
}
|
|
37982
39651
|
|
|
37983
|
-
|
|
37984
|
-
|
|
37985
|
-
|
|
39652
|
+
/**
|
|
39653
|
+
* Audit data for Microsoft Purview Data Map Operation events.
|
|
39654
|
+
*/
|
|
39655
|
+
@open
|
|
39656
|
+
@complex model microsoftPurviewDataMapOperationRecord extends auditData {
|
|
37986
39657
|
}
|
|
37987
39658
|
|
|
37988
|
-
|
|
37989
|
-
|
|
37990
|
-
|
|
37991
|
-
|
|
37992
|
-
|
|
37993
|
-
permissions: string[] | null;
|
|
37994
|
-
protocol: string | null;
|
|
37995
|
-
signatureHash: string | null;
|
|
37996
|
-
signedWith: string | null;
|
|
37997
|
-
startDateTime: offsetDateTime | null;
|
|
37998
|
-
storageResource: azureResourceEvidence | null;
|
|
39659
|
+
/**
|
|
39660
|
+
* Audit data for Microsoft Purview Metadata Policy Operation events.
|
|
39661
|
+
*/
|
|
39662
|
+
@open
|
|
39663
|
+
@complex model microsoftPurviewMetadataPolicyOperationRecord extends auditData {
|
|
37999
39664
|
}
|
|
38000
39665
|
|
|
38001
|
-
|
|
38002
|
-
|
|
38003
|
-
|
|
38004
|
-
|
|
38005
|
-
|
|
38006
|
-
securityGroupId: string | null;
|
|
38007
|
-
sid: string | null;
|
|
39666
|
+
/**
|
|
39667
|
+
* Audit data for Microsoft Purview Policy Operation events.
|
|
39668
|
+
*/
|
|
39669
|
+
@open
|
|
39670
|
+
@complex model microsoftPurviewPolicyOperationRecord extends auditData {
|
|
38008
39671
|
}
|
|
38009
39672
|
|
|
38010
|
-
|
|
38011
|
-
|
|
38012
|
-
|
|
39673
|
+
/**
|
|
39674
|
+
* Audit data for Microsoft Purview Privacy Audit Event events.
|
|
39675
|
+
*/
|
|
39676
|
+
@open
|
|
39677
|
+
@complex model microsoftPurviewPrivacyAuditEvent extends auditData {
|
|
38013
39678
|
}
|
|
38014
39679
|
|
|
38015
|
-
|
|
38016
|
-
|
|
38017
|
-
|
|
38018
|
-
|
|
38019
|
-
|
|
39680
|
+
/**
|
|
39681
|
+
* Audit data for Microsoft Purview Unified Catalog Operation events.
|
|
39682
|
+
*/
|
|
39683
|
+
@open
|
|
39684
|
+
@complex model microsoftPurviewUnifiedCatalogOperationRecord extends auditData {
|
|
38020
39685
|
}
|
|
38021
39686
|
|
|
38022
|
-
|
|
38023
|
-
|
|
38024
|
-
|
|
38025
|
-
|
|
38026
|
-
|
|
38027
|
-
servicePrincipalType: servicePrincipalType | null;
|
|
38028
|
-
tenantId: string | null;
|
|
39687
|
+
/**
|
|
39688
|
+
* Audit data for Microsoft Stream events.
|
|
39689
|
+
*/
|
|
39690
|
+
@open
|
|
39691
|
+
@complex model microsoftStreamAuditRecord extends auditData {
|
|
38029
39692
|
}
|
|
38030
39693
|
|
|
38031
|
-
|
|
38032
|
-
|
|
38033
|
-
|
|
39694
|
+
/**
|
|
39695
|
+
* Audit data for Microsoft Teams Admin events.
|
|
39696
|
+
*/
|
|
39697
|
+
@open
|
|
39698
|
+
@complex model microsoftTeamsAdminAuditRecord extends auditData {
|
|
38034
39699
|
}
|
|
38035
39700
|
|
|
38036
|
-
|
|
38037
|
-
|
|
38038
|
-
|
|
38039
|
-
|
|
38040
|
-
|
|
38041
|
-
givenName: string | null;
|
|
38042
|
-
organizationName: string | null;
|
|
38043
|
-
organizationUnitName: string | null;
|
|
38044
|
-
serialNumber: string | null;
|
|
38045
|
-
surname: string | null;
|
|
39701
|
+
/**
|
|
39702
|
+
* Audit data for Microsoft Teams Analytics events.
|
|
39703
|
+
*/
|
|
39704
|
+
@open
|
|
39705
|
+
@complex model microsoftTeamsAnalyticsAuditRecord extends auditData {
|
|
38046
39706
|
}
|
|
38047
39707
|
|
|
38048
|
-
|
|
38049
|
-
|
|
39708
|
+
/**
|
|
39709
|
+
* Audit data for Microsoft Teams events.
|
|
39710
|
+
*/
|
|
39711
|
+
@open
|
|
39712
|
+
@complex model microsoftTeamsAuditRecord extends auditData {
|
|
38050
39713
|
}
|
|
38051
39714
|
|
|
39715
|
+
/**
|
|
39716
|
+
* Audit data for Microsoft Teams Device events.
|
|
39717
|
+
*/
|
|
38052
39718
|
@open
|
|
38053
|
-
@complex model
|
|
39719
|
+
@complex model microsoftTeamsDeviceAuditRecord extends auditData {
|
|
38054
39720
|
}
|
|
38055
39721
|
|
|
38056
|
-
|
|
38057
|
-
|
|
38058
|
-
|
|
38059
|
-
|
|
38060
|
-
|
|
38061
|
-
senderIp: string | null;
|
|
38062
|
-
subject: string | null;
|
|
38063
|
-
submissionDateTime: offsetDateTime | null;
|
|
38064
|
-
submissionId: string | null;
|
|
38065
|
-
submitter: string | null;
|
|
39722
|
+
/**
|
|
39723
|
+
* Audit data for Microsoft Teams Retention Label Action events.
|
|
39724
|
+
*/
|
|
39725
|
+
@open
|
|
39726
|
+
@complex model microsoftTeamsRetentionLabelActionAuditRecord extends auditData {
|
|
38066
39727
|
}
|
|
38067
39728
|
|
|
38068
|
-
|
|
38069
|
-
|
|
38070
|
-
|
|
38071
|
-
|
|
38072
|
-
|
|
38073
|
-
files: fileEvidence[] | null;
|
|
38074
|
-
groupId: string | null;
|
|
38075
|
-
isExternal: boolean | null;
|
|
38076
|
-
isOwned: boolean | null;
|
|
38077
|
-
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
38078
|
-
messageDirection: antispamTeamsDirection | null;
|
|
38079
|
-
messageId: string | null;
|
|
38080
|
-
owningTenantId: guid | null;
|
|
38081
|
-
parentMessageId: string | null;
|
|
38082
|
-
receivedDateTime: offsetDateTime | null;
|
|
38083
|
-
recipients: string[] | null;
|
|
38084
|
-
senderFromAddress: string | null;
|
|
38085
|
-
senderIP: string | null;
|
|
38086
|
-
sourceAppName: string | null;
|
|
38087
|
-
sourceId: string | null;
|
|
38088
|
-
subject: string | null;
|
|
38089
|
-
suspiciousRecipients: string[] | null;
|
|
38090
|
-
threadId: string | null;
|
|
38091
|
-
threadType: string | null;
|
|
38092
|
-
urls: urlEvidence[] | null;
|
|
39729
|
+
/**
|
|
39730
|
+
* Audit data for Microsoft Teams Sensitivity Label Action events.
|
|
39731
|
+
*/
|
|
39732
|
+
@open
|
|
39733
|
+
@complex model microsoftTeamsSensitivityLabelActionAuditRecord extends auditData {
|
|
38093
39734
|
}
|
|
38094
39735
|
|
|
38095
|
-
|
|
38096
|
-
|
|
38097
|
-
|
|
38098
|
-
|
|
38099
|
-
|
|
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 {
|
|
38100
41171
|
}
|
|
38101
41172
|
|
|
38102
41173
|
@complex model urlEvidence extends alertEvidence {
|
|
@@ -38120,6 +41191,209 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38120
41191
|
userAccount: userAccount | null;
|
|
38121
41192
|
}
|
|
38122
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 {
|
|
41248
|
+
}
|
|
41249
|
+
|
|
41250
|
+
/**
|
|
41251
|
+
* Audit data for Viva Engage Segment events.
|
|
41252
|
+
*/
|
|
41253
|
+
@open
|
|
41254
|
+
@complex model vivaEngageSegmentAuditRecord extends auditData {
|
|
41255
|
+
}
|
|
41256
|
+
|
|
41257
|
+
/**
|
|
41258
|
+
* Audit data for Viva Glint Advanced Configuration events.
|
|
41259
|
+
*/
|
|
41260
|
+
@open
|
|
41261
|
+
@complex model vivaGlintAdvancedConfigurationAuditRecord extends auditData {
|
|
41262
|
+
}
|
|
41263
|
+
|
|
41264
|
+
/**
|
|
41265
|
+
* Audit data for Viva Glint Agentic Campaign events.
|
|
41266
|
+
*/
|
|
41267
|
+
@open
|
|
41268
|
+
@complex model vivaGlintAgenticCampaignAuditRecord extends auditData {
|
|
41269
|
+
}
|
|
41270
|
+
|
|
41271
|
+
/**
|
|
41272
|
+
* Audit data for Viva Glint Feedback Program events.
|
|
41273
|
+
*/
|
|
41274
|
+
@open
|
|
41275
|
+
@complex model vivaGlintFeedbackProgramAuditRecord extends auditData {
|
|
41276
|
+
}
|
|
41277
|
+
|
|
41278
|
+
/**
|
|
41279
|
+
* Audit data for Viva Glint Organizational events.
|
|
41280
|
+
*/
|
|
41281
|
+
@open
|
|
41282
|
+
@complex model vivaGlintOrganizationalDataAuditRecord extends auditData {
|
|
41283
|
+
}
|
|
41284
|
+
|
|
41285
|
+
/**
|
|
41286
|
+
* Audit data for Viva Glint Pulse Program events.
|
|
41287
|
+
*/
|
|
41288
|
+
@open
|
|
41289
|
+
@complex model vivaGlintPulseProgramAuditRecord extends auditData {
|
|
41290
|
+
}
|
|
41291
|
+
|
|
41292
|
+
/**
|
|
41293
|
+
* Audit data for Viva Glint Pulse Program Respondent Rate events.
|
|
41294
|
+
*/
|
|
41295
|
+
@open
|
|
41296
|
+
@complex model vivaGlintPulseProgramRespondentRateAuditRecord extends auditData {
|
|
41297
|
+
}
|
|
41298
|
+
|
|
41299
|
+
/**
|
|
41300
|
+
* Audit data for Viva Glint Question events.
|
|
41301
|
+
*/
|
|
41302
|
+
@open
|
|
41303
|
+
@complex model vivaGlintQuestionAuditRecord extends auditData {
|
|
41304
|
+
}
|
|
41305
|
+
|
|
41306
|
+
/**
|
|
41307
|
+
* Audit data for Viva Glint Role events.
|
|
41308
|
+
*/
|
|
41309
|
+
@open
|
|
41310
|
+
@complex model vivaGlintRoleAuditRecord extends auditData {
|
|
41311
|
+
}
|
|
41312
|
+
|
|
41313
|
+
/**
|
|
41314
|
+
* Audit data for Viva Glint Rubicon events.
|
|
41315
|
+
*/
|
|
41316
|
+
@open
|
|
41317
|
+
@complex model vivaGlintRubiconAuditRecord extends auditData {
|
|
41318
|
+
}
|
|
41319
|
+
|
|
41320
|
+
/**
|
|
41321
|
+
* Audit data for Viva Glint Support Access events.
|
|
41322
|
+
*/
|
|
41323
|
+
@open
|
|
41324
|
+
@complex model vivaGlintSupportAccessAuditRecord extends auditData {
|
|
41325
|
+
}
|
|
41326
|
+
|
|
41327
|
+
/**
|
|
41328
|
+
* Audit data for Viva Glint System events.
|
|
41329
|
+
*/
|
|
41330
|
+
@open
|
|
41331
|
+
@complex model vivaGlintSystemAuditRecord extends auditData {
|
|
41332
|
+
}
|
|
41333
|
+
|
|
41334
|
+
/**
|
|
41335
|
+
* Audit data for Viva Glint User events.
|
|
41336
|
+
*/
|
|
41337
|
+
@open
|
|
41338
|
+
@complex model vivaGlintUserAuditRecord extends auditData {
|
|
41339
|
+
}
|
|
41340
|
+
|
|
41341
|
+
/**
|
|
41342
|
+
* Audit data for Viva Glint User Group events.
|
|
41343
|
+
*/
|
|
41344
|
+
@open
|
|
41345
|
+
@complex model vivaGlintUserGroupAuditRecord extends auditData {
|
|
41346
|
+
}
|
|
41347
|
+
|
|
41348
|
+
/**
|
|
41349
|
+
* Audit data for Viva Goals events.
|
|
41350
|
+
*/
|
|
41351
|
+
@open
|
|
41352
|
+
@complex model vivaGoalsAuditRecord extends auditData {
|
|
41353
|
+
}
|
|
41354
|
+
|
|
41355
|
+
/**
|
|
41356
|
+
* Audit data for Viva Learning Admin events.
|
|
41357
|
+
*/
|
|
41358
|
+
@open
|
|
41359
|
+
@complex model vivaLearningAdminAuditRecord extends auditData {
|
|
41360
|
+
}
|
|
41361
|
+
|
|
41362
|
+
/**
|
|
41363
|
+
* Audit data for Viva Learning events.
|
|
41364
|
+
*/
|
|
41365
|
+
@open
|
|
41366
|
+
@complex model vivaLearningAuditRecord extends auditData {
|
|
41367
|
+
}
|
|
41368
|
+
|
|
41369
|
+
/**
|
|
41370
|
+
* Audit data for Viva Pulse Admin events.
|
|
41371
|
+
*/
|
|
41372
|
+
@open
|
|
41373
|
+
@complex model vivaPulseAdminAuditRecord extends auditData {
|
|
41374
|
+
}
|
|
41375
|
+
|
|
41376
|
+
/**
|
|
41377
|
+
* Audit data for Viva Pulse Organizer events.
|
|
41378
|
+
*/
|
|
41379
|
+
@open
|
|
41380
|
+
@complex model vivaPulseOrganizerAuditRecord extends auditData {
|
|
41381
|
+
}
|
|
41382
|
+
|
|
41383
|
+
/**
|
|
41384
|
+
* Audit data for Viva Pulse Report events.
|
|
41385
|
+
*/
|
|
41386
|
+
@open
|
|
41387
|
+
@complex model vivaPulseReportAuditRecord extends auditData {
|
|
41388
|
+
}
|
|
41389
|
+
|
|
41390
|
+
/**
|
|
41391
|
+
* Audit data for Viva Pulse Response events.
|
|
41392
|
+
*/
|
|
41393
|
+
@open
|
|
41394
|
+
@complex model vivaPulseResponseAuditRecord extends auditData {
|
|
41395
|
+
}
|
|
41396
|
+
|
|
38123
41397
|
@complex model vmMetadata {
|
|
38124
41398
|
cloudProvider: vmCloudProvider;
|
|
38125
41399
|
resourceId: string | null;
|
|
@@ -38127,6 +41401,20 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38127
41401
|
vmId: string | null;
|
|
38128
41402
|
}
|
|
38129
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
|
+
|
|
38130
41418
|
@complex model whoisContact {
|
|
38131
41419
|
address: reference.`microsoft.graph`.physicalAddress | null;
|
|
38132
41420
|
email: string | null;
|
|
@@ -38142,6 +41430,34 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38142
41430
|
@references host: host;
|
|
38143
41431
|
}
|
|
38144
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
|
+
|
|
38145
41461
|
@entity model alert extends reference.`microsoft.graph`.entity {
|
|
38146
41462
|
actorDisplayName: string | null;
|
|
38147
41463
|
additionalData: dictionary | null;
|
|
@@ -38182,6 +41498,46 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38182
41498
|
title: string | null;
|
|
38183
41499
|
}
|
|
38184
41500
|
|
|
41501
|
+
@entity model analyzedEmail extends reference.`microsoft.graph`.entity {
|
|
41502
|
+
alertIds: string[] | null;
|
|
41503
|
+
attachments: analyzedEmailAttachment[] | null;
|
|
41504
|
+
authenticationDetails: analyzedEmailAuthenticationDetail | null;
|
|
41505
|
+
bulkComplaintLevel: string | null;
|
|
41506
|
+
clientType: string | null;
|
|
41507
|
+
contexts: string[] | null;
|
|
41508
|
+
detectionMethods: string[] | null;
|
|
41509
|
+
directionality: antispamDirectionality | null;
|
|
41510
|
+
distributionList: string | null;
|
|
41511
|
+
dlpRules: analyzedEmailDlpRuleInfo[] | null;
|
|
41512
|
+
emailClusterId: string | null;
|
|
41513
|
+
exchangeTransportRules: analyzedEmailExchangeTransportRuleInfo[] | null;
|
|
41514
|
+
forwardingDetail: string | null;
|
|
41515
|
+
inboundConnectorFormattedName: string | null;
|
|
41516
|
+
internetMessageId: string | null;
|
|
41517
|
+
language: string | null;
|
|
41518
|
+
latestDelivery: analyzedEmailDeliveryDetail | null;
|
|
41519
|
+
loggedDateTime: offsetDateTime | null;
|
|
41520
|
+
networkMessageId: string | null;
|
|
41521
|
+
originalDelivery: analyzedEmailDeliveryDetail | null;
|
|
41522
|
+
overrideSources: string[] | null;
|
|
41523
|
+
phishConfidenceLevel: string | null;
|
|
41524
|
+
policy: string | null;
|
|
41525
|
+
policyAction: string | null;
|
|
41526
|
+
policyType: string | null;
|
|
41527
|
+
primaryOverrideSource: string | null;
|
|
41528
|
+
recipientDetail: analyzedEmailRecipientDetail | null;
|
|
41529
|
+
recipientEmailAddress: string | null;
|
|
41530
|
+
returnPath: string | null;
|
|
41531
|
+
senderDetail: analyzedEmailSenderDetail | null;
|
|
41532
|
+
sizeInBytes: int32 | null;
|
|
41533
|
+
spamConfidenceLevel: string | null;
|
|
41534
|
+
subject: string | null;
|
|
41535
|
+
threatDetectionDetails: threatDetectionDetail[] | null;
|
|
41536
|
+
threatTypes: threatType[] | null;
|
|
41537
|
+
timelineEvents: timelineEvent[] | null;
|
|
41538
|
+
urls: analyzedEmailUrl[] | null;
|
|
41539
|
+
}
|
|
41540
|
+
|
|
38185
41541
|
@entity model article extends reference.`microsoft.graph`.entity {
|
|
38186
41542
|
body: formattedContent;
|
|
38187
41543
|
@computed createdDateTime: offsetDateTime;
|
|
@@ -38201,6 +41557,50 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38201
41557
|
@entity model artifact extends reference.`microsoft.graph`.entity {
|
|
38202
41558
|
}
|
|
38203
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
|
+
|
|
38204
41604
|
@entity model authorityTemplate extends filePlanDescriptorTemplate {
|
|
38205
41605
|
}
|
|
38206
41606
|
|
|
@@ -38241,6 +41641,11 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38241
41641
|
citationUrl: string | null;
|
|
38242
41642
|
}
|
|
38243
41643
|
|
|
41644
|
+
@abstract
|
|
41645
|
+
@entity model collaborationRoot extends reference.`microsoft.graph`.entity {
|
|
41646
|
+
@contains analyzedEmails: analyzedEmail[];
|
|
41647
|
+
}
|
|
41648
|
+
|
|
38244
41649
|
@abstract
|
|
38245
41650
|
@entity model dataSet extends reference.`microsoft.graph`.entity {
|
|
38246
41651
|
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
@@ -38870,6 +42275,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38870
42275
|
messageConversationExpansion: 64,
|
|
38871
42276
|
locationsWithoutHits: 256,
|
|
38872
42277
|
allItemsInFolder: 512,
|
|
42278
|
+
cloudNativeHtmlConversion: 1024,
|
|
38873
42279
|
}
|
|
38874
42280
|
|
|
38875
42281
|
@graphFlags
|
|
@@ -38943,6 +42349,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38943
42349
|
unknownFutureValue: 31,
|
|
38944
42350
|
}
|
|
38945
42351
|
|
|
42352
|
+
enum antispamDirectionality {
|
|
42353
|
+
`unknown`: 0,
|
|
42354
|
+
inbound: 1,
|
|
42355
|
+
outbound: 2,
|
|
42356
|
+
intraOrg: 3,
|
|
42357
|
+
unknownFutureValue: 127,
|
|
42358
|
+
}
|
|
42359
|
+
|
|
38946
42360
|
enum antispamTeamsDirection {
|
|
38947
42361
|
`unknown`: 0,
|
|
38948
42362
|
inbound: 1,
|
|
@@ -38951,6 +42365,514 @@ namespace reference.`microsoft.graph.security` {
|
|
|
38951
42365
|
unknownFutureValue: 31,
|
|
38952
42366
|
}
|
|
38953
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
|
+
|
|
38954
42876
|
enum behaviorDuringRetentionPeriod {
|
|
38955
42877
|
doNotRetain: 0,
|
|
38956
42878
|
retain: 1,
|
|
@@ -39091,6 +43013,28 @@ namespace reference.`microsoft.graph.security` {
|
|
|
39091
43013
|
unknownFutureValue: 1023,
|
|
39092
43014
|
}
|
|
39093
43015
|
|
|
43016
|
+
enum deliveryAction {
|
|
43017
|
+
`unknown`: 0,
|
|
43018
|
+
deliveredToJunk: 1,
|
|
43019
|
+
delivered: 2,
|
|
43020
|
+
blocked: 3,
|
|
43021
|
+
replaced: 4,
|
|
43022
|
+
unknownFutureValue: 127,
|
|
43023
|
+
}
|
|
43024
|
+
|
|
43025
|
+
enum deliveryLocation {
|
|
43026
|
+
`unknown`: 0,
|
|
43027
|
+
inbox_folder: 1,
|
|
43028
|
+
junkFolder: 2,
|
|
43029
|
+
deletedFolder: 3,
|
|
43030
|
+
quarantine: 4,
|
|
43031
|
+
onprem_external: 5,
|
|
43032
|
+
failed: 6,
|
|
43033
|
+
dropped: 7,
|
|
43034
|
+
others: 10,
|
|
43035
|
+
unknownFutureValue: 127,
|
|
43036
|
+
}
|
|
43037
|
+
|
|
39094
43038
|
enum deploymentStatus {
|
|
39095
43039
|
upToDate: 1,
|
|
39096
43040
|
outdated: 2,
|
|
@@ -39188,6 +43132,13 @@ namespace reference.`microsoft.graph.security` {
|
|
|
39188
43132
|
unknownFutureValue: 4,
|
|
39189
43133
|
}
|
|
39190
43134
|
|
|
43135
|
+
enum eventSource {
|
|
43136
|
+
system: 0,
|
|
43137
|
+
admin: 1,
|
|
43138
|
+
user: 2,
|
|
43139
|
+
unknownFutureValue: 127,
|
|
43140
|
+
}
|
|
43141
|
+
|
|
39191
43142
|
enum eventStatusType {
|
|
39192
43143
|
pending: 0,
|
|
39193
43144
|
error: 1,
|
|
@@ -39479,6 +43430,23 @@ namespace reference.`microsoft.graph.security` {
|
|
|
39479
43430
|
unknownFutureValue: 4,
|
|
39480
43431
|
}
|
|
39481
43432
|
|
|
43433
|
+
enum remediationAction {
|
|
43434
|
+
moveToJunk: 1,
|
|
43435
|
+
moveToInbox: 2,
|
|
43436
|
+
hardDelete: 5,
|
|
43437
|
+
softDelete: 6,
|
|
43438
|
+
moveToDeletedItems: 7,
|
|
43439
|
+
unknownFutureValue: 14,
|
|
43440
|
+
moveToQuarantine: 15,
|
|
43441
|
+
}
|
|
43442
|
+
|
|
43443
|
+
enum remediationSeverity {
|
|
43444
|
+
low: 1,
|
|
43445
|
+
medium: 2,
|
|
43446
|
+
high: 3,
|
|
43447
|
+
unknownFutureValue: 127,
|
|
43448
|
+
}
|
|
43449
|
+
|
|
39482
43450
|
enum retentionTrigger {
|
|
39483
43451
|
dateLabeled: 0,
|
|
39484
43452
|
dateCreated: 1,
|
|
@@ -39540,6 +43508,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
39540
43508
|
microsoftSentinel: 512,
|
|
39541
43509
|
microsoftInsiderRiskManagement: 1024,
|
|
39542
43510
|
microsoftThreatIntelligence: 2048,
|
|
43511
|
+
microsoftSecurityForAI: 4096,
|
|
39543
43512
|
}
|
|
39544
43513
|
|
|
39545
43514
|
enum serviceStatus {
|
|
@@ -39586,6 +43555,41 @@ namespace reference.`microsoft.graph.security` {
|
|
|
39586
43555
|
unknownFutureValue: 31,
|
|
39587
43556
|
}
|
|
39588
43557
|
|
|
43558
|
+
enum threatType {
|
|
43559
|
+
`unknown`: 0,
|
|
43560
|
+
spam: 1,
|
|
43561
|
+
malware: 2,
|
|
43562
|
+
phish: 3,
|
|
43563
|
+
none: 4,
|
|
43564
|
+
unknownFutureValue: 127,
|
|
43565
|
+
}
|
|
43566
|
+
|
|
43567
|
+
enum timelineEventType {
|
|
43568
|
+
originalDelivery: 0,
|
|
43569
|
+
systemTimeTravel: 1,
|
|
43570
|
+
dynamicDelivery: 2,
|
|
43571
|
+
userUrlClick: 3,
|
|
43572
|
+
reprocessed: 4,
|
|
43573
|
+
zap: 5,
|
|
43574
|
+
quarantineRelease: 6,
|
|
43575
|
+
air: 7,
|
|
43576
|
+
`unknown`: 8,
|
|
43577
|
+
unknownFutureValue: 127,
|
|
43578
|
+
}
|
|
43579
|
+
|
|
43580
|
+
enum verdictCategory {
|
|
43581
|
+
none: 0,
|
|
43582
|
+
malware: 1,
|
|
43583
|
+
phish: 2,
|
|
43584
|
+
siteUnavailable: 3,
|
|
43585
|
+
spam: 4,
|
|
43586
|
+
decryptionFailed: 5,
|
|
43587
|
+
unsupportedUriScheme: 6,
|
|
43588
|
+
unsupportedFileType: 7,
|
|
43589
|
+
undefined: 8,
|
|
43590
|
+
unknownFutureValue: 127,
|
|
43591
|
+
}
|
|
43592
|
+
|
|
39589
43593
|
enum vmCloudProvider {
|
|
39590
43594
|
`unknown`: 0,
|
|
39591
43595
|
azure: 1,
|