@microsoft/typespec-msgraph-reference 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.rush/temp/package-deps_build.json +17 -17
- package/CHANGELOG.md +9 -0
- package/lib/Bleu/Beta/main.tsp +189 -4
- package/lib/Bleu/V1.0/main.tsp +53 -0
- package/lib/Delos/Beta/main.tsp +954 -4
- package/lib/Delos/V1.0/main.tsp +93 -0
- package/lib/Fairfax/Beta/main.tsp +563 -20
- package/lib/Fairfax/V1.0/main.tsp +3 -0
- package/lib/GovSG/V1.0/main.tsp +1 -0
- package/lib/Mooncake/Beta/main.tsp +205 -4
- package/lib/Mooncake/V1.0/main.tsp +2 -0
- package/lib/Prod/Beta/main.tsp +911 -64
- package/lib/Prod/V1.0/main.tsp +478 -0
- package/lib/USNat/Beta/main.tsp +308 -0
- package/lib/USNat/V1.0/main.tsp +210 -0
- package/lib/USSec/Beta/main.tsp +308 -0
- package/lib/USSec/V1.0/main.tsp +210 -0
- package/package.json +2 -2
package/lib/Prod/Beta/main.tsp
CHANGED
|
@@ -14,6 +14,7 @@ scalar binary; //TODO: Enables support for Edm.Binary
|
|
|
14
14
|
@deprecatedDefinition("type", "<ChangeLogCategory>", "2023-10-11", "2024-01-31", "Starting from January 31, 2024, this property will no longer be supported and will be marked as deprecated. This property will not be included as part of the API response.")
|
|
15
15
|
// Metadata item DeprecatedDefinition_type was already defined with a different value.
|
|
16
16
|
@deprecatedDefinition("cloudPcLaunchInfo", "<ChangeLogCategory>", "2025-09-30", "2026-10-30", "Starting from Oct 30, 2026, this complexType: cloudPcLaunchInfo will be deprecated and no longer be supported. Please use the new type:cloudPcLaunchDetail instead.")
|
|
17
|
+
@deprecatedDefinition("cloudPcNotificationSetting", "<ChangeLogCategory>", "2026-04-14", "2026-07-14", "Starting from July 14, 2026, the cloudPcNotificationSetting complex type will no longer be supported and will be marked as deprecated. It was only used by the notificationSetting property on cloudPcUserSetting, which is also being deprecated.")
|
|
17
18
|
@deprecatedDefinition("additionalDetails", "<ChangeLogCategory>", "2023-10-11", "2024-01-31", "The additionalDetails property is deprecated and will not be supported starting Jan 31, 2024. This property will not be included as part of the API response.")
|
|
18
19
|
@deprecatedDefinition("cloudPcOnPremisesConnectionStatusDetails", "<ChangeLogCategory>", "2023-10-11", "2024-01-31", "Starting from January 31, 2024, cloudPcOnPremisesConnectionStatusDetails complex type will no longer be supported and will be marked as deprecated.This property will not be included as part of the API response.")
|
|
19
20
|
@deprecatedDefinition("statusDetails", "<ChangeLogCategory>", "2023-10-11", "2024-01-31", "Starting from January 31, 2024, this property will no longer be supported and will be marked as deprecated. Please use errorCode instead.")
|
|
@@ -64,6 +65,7 @@ scalar binary; //TODO: Enables support for Edm.Binary
|
|
|
64
65
|
@deprecatedDefinition("skuDisplayName", "<ChangeLogCategory>", "2023-10-11", "2024-01-31", "Starting from January 31, 2024, skuDisplayName property will no longer be supported and will be marked as deprecated. This property will not be included as part of the API response.")
|
|
65
66
|
@deprecatedDefinition("healthCheckStatusDetails", "<ChangeLogCategory>", "2023-10-11", "2024-01-31", "Starting from January 31, 2024, healthCheckStatusDetails property will no longer be supported and will be marked as deprecated.This property will not be included as part of the API response.")
|
|
66
67
|
@deprecatedDefinition("windowsSettings", "<ChangeLogCategory>", "2023-10-11", "2024-01-31", "Starting from January 31, 2024, this property will no longer be supported and will be marked as deprecated. Please use windowsSetting instead.")
|
|
68
|
+
@deprecatedDefinition("notificationSetting", "<ChangeLogCategory>", "2026-04-14", "2026-07-14", "Starting from July 14, 2026, the notificationSetting property will no longer be supported and will be marked as deprecated. This property will not be included as part of the API response.")
|
|
67
69
|
@deprecatedDefinition("selfServiceEnabled", "<ChangeLogCategory>", "2023-08-31", "2023-12-01", "The selfServiceEnabled property is deprecated and will not be supported starting Dec 1, 2023. This property will not be included as part of the API response.")
|
|
68
70
|
@deprecatedDefinition("companySubscription", "<ChangeLogCategory>", "2023-07-01", "2023-08-31", "The property ocpSubscriptionId is deprecated and will be removed on August 31, 2023. Please use commerceSubscriptionId instead.")
|
|
69
71
|
@deprecatedDefinition("AuthenticationStrengthsRemove", "<ChangeLogCategory>", "2023-02-01", "2023-03-31", "The 'authenticationStrengths' segment is deprecated. Please use 'authenticationStrength' instead.")
|
|
@@ -257,15 +259,6 @@ namespace reference.`microsoft.graph` {
|
|
|
257
259
|
@complex model accessReviewApplyAction {
|
|
258
260
|
}
|
|
259
261
|
|
|
260
|
-
@complex model accessReviewDataUploadTriggerCallbackData extends customExtensionData {
|
|
261
|
-
permissionDescription: string | null;
|
|
262
|
-
permissionId: string;
|
|
263
|
-
permissionName: string | null;
|
|
264
|
-
permissionType: string | null;
|
|
265
|
-
principalId: string;
|
|
266
|
-
principalType: principalType;
|
|
267
|
-
}
|
|
268
|
-
|
|
269
262
|
@complex model accessReviewError extends genericError {
|
|
270
263
|
}
|
|
271
264
|
|
|
@@ -370,11 +363,6 @@ namespace reference.`microsoft.graph` {
|
|
|
370
363
|
recurrenceType: string | null;
|
|
371
364
|
}
|
|
372
365
|
|
|
373
|
-
@complex model accessReviewResourceDataUploadSessionContextData extends customExtensionData {
|
|
374
|
-
accessReviewId: string | null;
|
|
375
|
-
accessReviewInstanceId: string | null;
|
|
376
|
-
}
|
|
377
|
-
|
|
378
366
|
@complex model accessReviewResourceScope extends accessReviewScope {
|
|
379
367
|
displayName: string | null;
|
|
380
368
|
resourceId: string | null;
|
|
@@ -1625,6 +1613,11 @@ namespace reference.`microsoft.graph` {
|
|
|
1625
1613
|
@references servicePrincipal: servicePrincipal | null;
|
|
1626
1614
|
}
|
|
1627
1615
|
|
|
1616
|
+
@complex model applicationTemplateCategory {
|
|
1617
|
+
displayName: string;
|
|
1618
|
+
value: string;
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1628
1621
|
@complex model appliedAuthenticationEventListener {
|
|
1629
1622
|
eventType: authenticationEventType | null;
|
|
1630
1623
|
executedListenerId: string | null;
|
|
@@ -3725,7 +3718,7 @@ namespace reference.`microsoft.graph` {
|
|
|
3725
3718
|
commandLineArguments: string | null;
|
|
3726
3719
|
filePath: string;
|
|
3727
3720
|
iconIndex: int32 | null;
|
|
3728
|
-
iconPath: string;
|
|
3721
|
+
iconPath: string | null;
|
|
3729
3722
|
}
|
|
3730
3723
|
|
|
3731
3724
|
@complex model cloudPcConfiguration {
|
|
@@ -3913,6 +3906,7 @@ namespace reference.`microsoft.graph` {
|
|
|
3913
3906
|
@complex model cloudPcNetworkConfiguration {
|
|
3914
3907
|
}
|
|
3915
3908
|
|
|
3909
|
+
@graphDeprecated("cloudPcNotificationSetting")
|
|
3916
3910
|
@complex model cloudPcNotificationSetting {
|
|
3917
3911
|
restartPromptsDisabled: boolean | null;
|
|
3918
3912
|
}
|
|
@@ -3968,9 +3962,14 @@ namespace reference.`microsoft.graph` {
|
|
|
3968
3962
|
status: cloudPcPolicyApplyActionStatus;
|
|
3969
3963
|
}
|
|
3970
3964
|
|
|
3965
|
+
@complex model cloudPcPolicyPendingApplyStatusResult {
|
|
3966
|
+
hasUnappliedPolicyUpdate: boolean;
|
|
3967
|
+
}
|
|
3968
|
+
|
|
3971
3969
|
@complex model cloudPcPolicyScheduledApplyActionDetail {
|
|
3972
3970
|
cronScheduleExpression: string | null;
|
|
3973
3971
|
endDateTime: string | null;
|
|
3972
|
+
isForceUserLogoffEnabled: boolean | null;
|
|
3974
3973
|
nextRunDateTime: string | null;
|
|
3975
3974
|
reservePercentage: int32 | null;
|
|
3976
3975
|
startDateTime: string | null;
|
|
@@ -4698,6 +4697,12 @@ namespace reference.`microsoft.graph` {
|
|
|
4698
4697
|
status: connectorHealthState;
|
|
4699
4698
|
}
|
|
4700
4699
|
|
|
4700
|
+
@complex model containerError {
|
|
4701
|
+
category: string;
|
|
4702
|
+
errorCode: string;
|
|
4703
|
+
errorDescription: string;
|
|
4704
|
+
}
|
|
4705
|
+
|
|
4701
4706
|
@complex model containerFilter {
|
|
4702
4707
|
includedContainers: string[] | null;
|
|
4703
4708
|
}
|
|
@@ -5205,9 +5210,7 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
5205
5210
|
}
|
|
5206
5211
|
|
|
5207
5212
|
@complex model customDataProvidedResourceUploadSessionRequest {
|
|
5208
|
-
data:
|
|
5209
|
-
source: string;
|
|
5210
|
-
type: string;
|
|
5213
|
+
data: reference.`microsoft.graph.customDataProvidedResourcePayloads`.data;
|
|
5211
5214
|
}
|
|
5212
5215
|
|
|
5213
5216
|
@complex model customDataProvidedResourceUploadStats {
|
|
@@ -5826,6 +5829,10 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
5826
5829
|
* base64-encoded JSON rules content that defines compliance rules to evaluate on the device. When deviceCompliancePolicyScript is set, the rule conditions defined in the JSON are evaluated to determine compliance and the device is marked noncompliant when any rule evaluates to noncompliant. Default is null, when set to default it is not evaluated.
|
|
5827
5830
|
*/
|
|
5828
5831
|
rulesContent: binary | null;
|
|
5832
|
+
/**
|
|
5833
|
+
* Indicates the interval, in minutes, at which the custom compliance script is evaluated on the device. Allowed range from 1 to 480. Nullable.
|
|
5834
|
+
*/
|
|
5835
|
+
runIntervalInMinutes: int32 | null;
|
|
5829
5836
|
}
|
|
5830
5837
|
|
|
5831
5838
|
/**
|
|
@@ -8931,7 +8938,6 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
8931
8938
|
@complex model file {
|
|
8932
8939
|
archiveStatus: fileArchiveStatus;
|
|
8933
8940
|
hashes: hashes | null;
|
|
8934
|
-
lockInfo: lockInfo | null;
|
|
8935
8941
|
mimeType: string | null;
|
|
8936
8942
|
processingMetadata: boolean | null;
|
|
8937
8943
|
}
|
|
@@ -10023,10 +10029,14 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
10023
10029
|
* When true, the system allows direct downloads for the AssociatedDomains. When false, the system will not allow direct downloads for the AssociatedDomains. Default is false.
|
|
10024
10030
|
*/
|
|
10025
10031
|
associatedDomainsDirectDownloadAllowed: boolean | null;
|
|
10032
|
+
cellularSliceConfigurationId: string | null;
|
|
10033
|
+
contentFilterConfigurationId: string | null;
|
|
10034
|
+
dnsProxyConfigurationId: string | null;
|
|
10026
10035
|
/**
|
|
10027
10036
|
* When true, indicates that the app should not be backed up to iCloud. When false, indicates that the app may be backed up to iCloud. Default is false.
|
|
10028
10037
|
*/
|
|
10029
10038
|
preventManagedAppBackup: boolean | null;
|
|
10039
|
+
relayConfigurationId: string | null;
|
|
10030
10040
|
/**
|
|
10031
10041
|
* When true, the device locks its screen after every transaction that requires a customer’s card PIN. When false, the user can choose the behavior. Default value is false.
|
|
10032
10042
|
*/
|
|
@@ -10037,6 +10047,118 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
10037
10047
|
vpnConfigurationId: string | null;
|
|
10038
10048
|
}
|
|
10039
10049
|
|
|
10050
|
+
/**
|
|
10051
|
+
* Contains properties used to assign an iOS Declarative Device Management (DDM) Store App to a group.
|
|
10052
|
+
*/
|
|
10053
|
+
@complex model iosDdmStoreAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
10054
|
+
/**
|
|
10055
|
+
* Specifies whether the app may be downloaded over cellular connections. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
10056
|
+
*/
|
|
10057
|
+
allowDownloadsOverCellular: ddmAppAllowDownloadsOverCellular | null;
|
|
10058
|
+
/**
|
|
10059
|
+
* Domain names to associate with the app
|
|
10060
|
+
*/
|
|
10061
|
+
associatedDomains: string[] | null;
|
|
10062
|
+
/**
|
|
10063
|
+
* When true, the system allows direct downloads for the AssociatedDomains. When false, the system will not allow direct downloads for the AssociatedDomains. Default is false.
|
|
10064
|
+
*/
|
|
10065
|
+
associatedDomainsDirectDownloadAllowed: boolean | null;
|
|
10066
|
+
/**
|
|
10067
|
+
* Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
10068
|
+
*/
|
|
10069
|
+
automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
|
|
10070
|
+
/**
|
|
10071
|
+
* The cellular slice identifier, which can be the data network name (DNN) or app category. For DNN, encode the value as 'DNN:name', where 'name' is the carrier-provided DNN name. For app category, encode the value as 'AppCategory:category', where 'category' is a carrier-provided string such as 'Enterprise1'.
|
|
10072
|
+
*/
|
|
10073
|
+
cellularSliceConfigurationId: string | null;
|
|
10074
|
+
/**
|
|
10075
|
+
* The unique identifier of the content filter to associate with the app.
|
|
10076
|
+
*/
|
|
10077
|
+
contentFilterConfigurationId: string | null;
|
|
10078
|
+
/**
|
|
10079
|
+
* The unique identifier of the DNS proxy to associate with the app.
|
|
10080
|
+
*/
|
|
10081
|
+
dnsProxyConfigurationId: string | null;
|
|
10082
|
+
/**
|
|
10083
|
+
* When true, indicates that the app should not be backed up to iCloud. When false, indicates that the app may be backed up to iCloud. Default is false.
|
|
10084
|
+
*/
|
|
10085
|
+
preventManagedAppBackup: boolean | null;
|
|
10086
|
+
/**
|
|
10087
|
+
* The unique identifier of the relay to associate with the app.
|
|
10088
|
+
*/
|
|
10089
|
+
relayConfigurationId: string | null;
|
|
10090
|
+
/**
|
|
10091
|
+
* When true, the device locks its screen after every transaction that requires a customer's card PIN. When false, the user can choose the behavior. Default value is false.
|
|
10092
|
+
*/
|
|
10093
|
+
tapToPayScreenLockEnabled: boolean | null;
|
|
10094
|
+
/**
|
|
10095
|
+
* Specifies the version of the Store app to install. When not set, the device installs the latest version. When set, the device installs the specified version. The device never installs an older version of the app over a newer version.
|
|
10096
|
+
*/
|
|
10097
|
+
version: int32 | null;
|
|
10098
|
+
/**
|
|
10099
|
+
* The unique identifier of the VPN Configuration to apply to the app.
|
|
10100
|
+
*/
|
|
10101
|
+
vpnConfigurationId: string | null;
|
|
10102
|
+
}
|
|
10103
|
+
|
|
10104
|
+
/**
|
|
10105
|
+
* Contains properties used to assign an iOS Declarative Device Management (DDM) VPP mobile app to a group.
|
|
10106
|
+
*/
|
|
10107
|
+
@complex model iosDdmVppAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
10108
|
+
/**
|
|
10109
|
+
* Specifies whether the app may be downloaded over cellular connections. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
10110
|
+
*/
|
|
10111
|
+
allowDownloadsOverCellular: ddmAppAllowDownloadsOverCellular | null;
|
|
10112
|
+
/**
|
|
10113
|
+
* Domain names to associate with the app
|
|
10114
|
+
*/
|
|
10115
|
+
associatedDomains: string[] | null;
|
|
10116
|
+
/**
|
|
10117
|
+
* When true, the system allows direct downloads for the AssociatedDomains. When false, the system will not allow direct downloads for the AssociatedDomains. Default is false.
|
|
10118
|
+
*/
|
|
10119
|
+
associatedDomainsDirectDownloadAllowed: boolean | null;
|
|
10120
|
+
/**
|
|
10121
|
+
* Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
10122
|
+
*/
|
|
10123
|
+
automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
|
|
10124
|
+
/**
|
|
10125
|
+
* The cellular slice identifier, which can be the data network name (DNN) or app category. For DNN, encode the value as 'DNN:name', where 'name' is the carrier-provided DNN name. For app category, encode the value as 'AppCategory:category', where 'category' is a carrier-provided string such as 'Enterprise1'.
|
|
10126
|
+
*/
|
|
10127
|
+
cellularSliceConfigurationId: string | null;
|
|
10128
|
+
/**
|
|
10129
|
+
* The unique identifier of the content filter to associate with the app.
|
|
10130
|
+
*/
|
|
10131
|
+
contentFilterConfigurationId: string | null;
|
|
10132
|
+
/**
|
|
10133
|
+
* The unique identifier of the DNS proxy to associate with the app.
|
|
10134
|
+
*/
|
|
10135
|
+
dnsProxyConfigurationId: string | null;
|
|
10136
|
+
/**
|
|
10137
|
+
* When true, indicates that the app should not be backed up to iCloud. When false, indicates that the app may be backed up to iCloud. Default is false.
|
|
10138
|
+
*/
|
|
10139
|
+
preventManagedAppBackup: boolean | null;
|
|
10140
|
+
/**
|
|
10141
|
+
* The unique identifier of the relay to associate with the app.
|
|
10142
|
+
*/
|
|
10143
|
+
relayConfigurationId: string | null;
|
|
10144
|
+
/**
|
|
10145
|
+
* When true, the device locks its screen after every transaction that requires a customer's card PIN. When false, the user can choose the behavior. Default value is false.
|
|
10146
|
+
*/
|
|
10147
|
+
tapToPayScreenLockEnabled: boolean | null;
|
|
10148
|
+
/**
|
|
10149
|
+
* Whether or not to use device licensing.
|
|
10150
|
+
*/
|
|
10151
|
+
useDeviceLicensing: boolean;
|
|
10152
|
+
/**
|
|
10153
|
+
* Specifies the version of the VPP app to install. When not set, the device installs the latest version. When set, the device installs the specified version. The device never installs an older version of the app over a newer version. This property maps to the Version key in Apple's AppManagedInstallBehaviorObject declaration.
|
|
10154
|
+
*/
|
|
10155
|
+
version: int32 | null;
|
|
10156
|
+
/**
|
|
10157
|
+
* The unique identifier of the VPN Configuration to apply to the app.
|
|
10158
|
+
*/
|
|
10159
|
+
vpnConfigurationId: string | null;
|
|
10160
|
+
}
|
|
10161
|
+
|
|
10040
10162
|
/**
|
|
10041
10163
|
* Contains properties of the possible iOS device types the mobile app can run on.
|
|
10042
10164
|
*/
|
|
@@ -11278,6 +11400,28 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
11278
11400
|
teamIdentifier: string;
|
|
11279
11401
|
}
|
|
11280
11402
|
|
|
11403
|
+
/**
|
|
11404
|
+
* Contains properties used to assign a macOS Declarative Device Management (DDM) VPP mobile app to a group.
|
|
11405
|
+
*/
|
|
11406
|
+
@complex model macOsDdmVppAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
11407
|
+
/**
|
|
11408
|
+
* Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
11409
|
+
*/
|
|
11410
|
+
automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
|
|
11411
|
+
/**
|
|
11412
|
+
* If true, the device installs an iOS or iPadOS app that runs on a Mac with Apple Silicon. This is only used when the app is a VPP app. Default is false.
|
|
11413
|
+
*/
|
|
11414
|
+
isIosApp: boolean | null;
|
|
11415
|
+
/**
|
|
11416
|
+
* When TRUE, indicates that the app should be assigned using device licensing. When FALSE, indicates that the app should be assigned using user licensing. By default, this property is set to FALSE.
|
|
11417
|
+
*/
|
|
11418
|
+
useDeviceLicensing: boolean;
|
|
11419
|
+
/**
|
|
11420
|
+
* Specifies the version of the VPP app to install. When not set, the device installs the latest version. When set, the device installs the specified version. The device never installs an older version of the app over a newer version. This property maps to the Version key in Apple's AppManagedInstallBehaviorObject declaration.
|
|
11421
|
+
*/
|
|
11422
|
+
version: int32 | null;
|
|
11423
|
+
}
|
|
11424
|
+
|
|
11281
11425
|
/**
|
|
11282
11426
|
* Properties related to macOS-specific configured and Intune-managed local administrator account
|
|
11283
11427
|
*/
|
|
@@ -12800,10 +12944,9 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
12800
12944
|
role: notificationRecipientsType;
|
|
12801
12945
|
}
|
|
12802
12946
|
|
|
12803
|
-
@complex model notifyUserAction extends
|
|
12947
|
+
@complex model notifyUserAction extends policyTipAction {
|
|
12804
12948
|
@computed actionLastModifiedDateTime: offsetDateTime | null;
|
|
12805
12949
|
emailText: string | null;
|
|
12806
|
-
policyTip: string | null;
|
|
12807
12950
|
recipients: string[] | null;
|
|
12808
12951
|
}
|
|
12809
12952
|
|
|
@@ -13629,6 +13772,13 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
13629
13772
|
passkeyTypes: passkeyTypes;
|
|
13630
13773
|
}
|
|
13631
13774
|
|
|
13775
|
+
@complex model passwordComplexityRules {
|
|
13776
|
+
isNonAsciiCharacterAllowed: boolean;
|
|
13777
|
+
maximumLength: int32 | null;
|
|
13778
|
+
minimumLength: int32 | null;
|
|
13779
|
+
requiredNumberOfCharacterClasses: int32 | null;
|
|
13780
|
+
}
|
|
13781
|
+
|
|
13632
13782
|
@complex model passwordCredential {
|
|
13633
13783
|
customKeyIdentifier: binary | null;
|
|
13634
13784
|
displayName: string | null;
|
|
@@ -13640,6 +13790,11 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
13640
13790
|
}
|
|
13641
13791
|
|
|
13642
13792
|
|
|
13793
|
+
@complex model passwordHistoryRules {
|
|
13794
|
+
historyLookbackCount: int32 | null;
|
|
13795
|
+
isEnabled: boolean;
|
|
13796
|
+
}
|
|
13797
|
+
|
|
13643
13798
|
@complex model passwordProfile {
|
|
13644
13799
|
forceChangePasswordNextSignIn: boolean | null;
|
|
13645
13800
|
forceChangePasswordNextSignInWithMfa: boolean | null;
|
|
@@ -14157,6 +14312,46 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
14157
14312
|
teamsPublicationInfo: plannerTeamsPublicationInfo | null;
|
|
14158
14313
|
}
|
|
14159
14314
|
|
|
14315
|
+
@complex model plannerTaskData {
|
|
14316
|
+
activeChecklistItemCount: int32 | null;
|
|
14317
|
+
appliedCategories: plannerAppliedCategories | null;
|
|
14318
|
+
archivalInfo: plannerArchivalInfo | null;
|
|
14319
|
+
assignments: plannerAssignments | null;
|
|
14320
|
+
bucketId: string | null;
|
|
14321
|
+
checklistItemCount: int32 | null;
|
|
14322
|
+
completedBy: identitySet | null;
|
|
14323
|
+
completedDateTime: offsetDateTime | null;
|
|
14324
|
+
conversationThreadId: string | null;
|
|
14325
|
+
createdBy: identitySet | null;
|
|
14326
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
14327
|
+
creationSource: plannerTaskCreation | null;
|
|
14328
|
+
details: plannerTaskDetailsData | null;
|
|
14329
|
+
dueDateTime: offsetDateTime | null;
|
|
14330
|
+
hasChat: boolean;
|
|
14331
|
+
hasDescription: boolean;
|
|
14332
|
+
isArchived: boolean;
|
|
14333
|
+
orderHint: string | null;
|
|
14334
|
+
percentComplete: int32 | null;
|
|
14335
|
+
previewType: plannerPreviewType;
|
|
14336
|
+
priority: int32 | null;
|
|
14337
|
+
recurrence: plannerTaskRecurrence | null;
|
|
14338
|
+
referenceCount: int32 | null;
|
|
14339
|
+
specifiedCompletionRequirements: plannerTaskCompletionRequirements;
|
|
14340
|
+
startDateTime: offsetDateTime | null;
|
|
14341
|
+
title: string;
|
|
14342
|
+
}
|
|
14343
|
+
|
|
14344
|
+
@complex model plannerTaskDetailsData {
|
|
14345
|
+
approvalAttachment: plannerBaseApprovalAttachment | null;
|
|
14346
|
+
checklist: plannerChecklistItems | null;
|
|
14347
|
+
completionRequirements: plannerTaskCompletionRequirementDetails | null;
|
|
14348
|
+
description: string | null;
|
|
14349
|
+
forms: plannerFormsDictionary | null;
|
|
14350
|
+
notes: itemBody | null;
|
|
14351
|
+
previewType: plannerPreviewType;
|
|
14352
|
+
references: plannerExternalReferences | null;
|
|
14353
|
+
}
|
|
14354
|
+
|
|
14160
14355
|
@complex model plannerTaskPolicy {
|
|
14161
14356
|
rules: plannerTaskRoleBasedRule[] | null;
|
|
14162
14357
|
}
|
|
@@ -14246,6 +14441,10 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
14246
14441
|
policyScope: policyBinding | null;
|
|
14247
14442
|
}
|
|
14248
14443
|
|
|
14444
|
+
@complex model policyTipAction extends dlpActionInfo {
|
|
14445
|
+
policyTip: string | null;
|
|
14446
|
+
}
|
|
14447
|
+
|
|
14249
14448
|
@complex model policyUserScope extends policyScopeBase {
|
|
14250
14449
|
}
|
|
14251
14450
|
|
|
@@ -14631,12 +14830,6 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
14631
14830
|
state: printJobProcessingState;
|
|
14632
14831
|
}
|
|
14633
14832
|
|
|
14634
|
-
@complex model printLogAnalyticsSettings {
|
|
14635
|
-
dataCollectionRuleImmutableId: string | null;
|
|
14636
|
-
logIngestionEndpoint: string | null;
|
|
14637
|
-
workspaceResourceId: string | null;
|
|
14638
|
-
}
|
|
14639
|
-
|
|
14640
14833
|
@complex model printMargin {
|
|
14641
14834
|
bottom: int32 | null;
|
|
14642
14835
|
left: int32 | null;
|
|
@@ -19094,6 +19287,10 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
19094
19287
|
* Device restart behavior.
|
|
19095
19288
|
*/
|
|
19096
19289
|
deviceRestartBehavior: win32LobAppRestartBehavior;
|
|
19290
|
+
/**
|
|
19291
|
+
* Indicates whether app-in-use detection is enabled before app enforcement, and if enabled, the action to take when the app is detected to be in-use. Null indicates the feature is not enabled. Possible values are: 'notEnabled', 'fail', 'terminateWithoutUserInteraction', 'terminateWithUserInteraction'.
|
|
19292
|
+
*/
|
|
19293
|
+
inUseBehavior: win32LobAppInUseActionType | null;
|
|
19097
19294
|
/**
|
|
19098
19295
|
* The number of minutes the system will wait for install program to finish. Default value is 60 minutes.
|
|
19099
19296
|
*/
|
|
@@ -19224,6 +19421,24 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
19224
19421
|
scriptContent: string | null;
|
|
19225
19422
|
}
|
|
19226
19423
|
|
|
19424
|
+
/**
|
|
19425
|
+
* A complex type to store process rule data for a Win32 LOB app.
|
|
19426
|
+
*/
|
|
19427
|
+
@complex model win32LobAppProcessRule extends win32LobAppRule {
|
|
19428
|
+
/**
|
|
19429
|
+
* Indicates the process operation type. Default value is 'notConfigured'. Possible values are: 'notConfigured', 'exists'.
|
|
19430
|
+
*/
|
|
19431
|
+
operationType: win32LobAppProcessOperationType;
|
|
19432
|
+
/**
|
|
19433
|
+
* Indicates the display name for the process in the Intune admin console. Example: 'Microsoft Word'.
|
|
19434
|
+
*/
|
|
19435
|
+
processDisplayName: string | null;
|
|
19436
|
+
/**
|
|
19437
|
+
* Indicates the process name to be searched for on a managed device when enforcing a managed app. Example: 'TestApp.exe'.
|
|
19438
|
+
*/
|
|
19439
|
+
processName: string | null;
|
|
19440
|
+
}
|
|
19441
|
+
|
|
19227
19442
|
/**
|
|
19228
19443
|
* Contains product code and version properties to detect a Win32 App
|
|
19229
19444
|
*/
|
|
@@ -21434,6 +21649,7 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
21434
21649
|
}
|
|
21435
21650
|
|
|
21436
21651
|
@entity model accessReviewInstance extends entity {
|
|
21652
|
+
delegatedBy: userIdentity[] | null;
|
|
21437
21653
|
endDateTime: offsetDateTime | null;
|
|
21438
21654
|
errors: accessReviewError[] | null;
|
|
21439
21655
|
fallbackReviewers: accessReviewReviewerScope[] | null;
|
|
@@ -21455,6 +21671,7 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
21455
21671
|
applyDescription: string | null;
|
|
21456
21672
|
applyResult: string | null;
|
|
21457
21673
|
decision: string | null;
|
|
21674
|
+
delegatedBy: userIdentity[] | null;
|
|
21458
21675
|
justification: string | null;
|
|
21459
21676
|
permission: accessReviewInstanceDecisionItemPermission | null;
|
|
21460
21677
|
principal: identity | null;
|
|
@@ -21685,6 +21902,14 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
21685
21902
|
@contains updatePolicies: reference.`microsoft.graph.windowsUpdates`.updatePolicy[];
|
|
21686
21903
|
}
|
|
21687
21904
|
|
|
21905
|
+
@open
|
|
21906
|
+
@entity model admitAllFromLobbyOperation extends commsOperation {
|
|
21907
|
+
}
|
|
21908
|
+
|
|
21909
|
+
@open
|
|
21910
|
+
@entity model admitFromLobbyOperation extends commsOperation {
|
|
21911
|
+
}
|
|
21912
|
+
|
|
21688
21913
|
/**
|
|
21689
21914
|
* ATP onboarding State for a given device.
|
|
21690
21915
|
*/
|
|
@@ -26373,10 +26598,18 @@ capabilities, skills, security, and other manifest-defined fields.
|
|
|
26373
26598
|
* Domains that are accessed through the public internet instead of through VPN, even when per-app VPN is activated
|
|
26374
26599
|
*/
|
|
26375
26600
|
excludedDomains: string[] | null;
|
|
26601
|
+
/**
|
|
26602
|
+
* Indicates whether local network traffic is excluded from the VPN tunnel. When TRUE, local network traffic bypasses the VPN tunnel. Default value is null. Only takes effect when includeAllNetworks is TRUE or enforceVpnRouting is TRUE. Not applicable when enablePerApp is TRUE.
|
|
26603
|
+
*/
|
|
26604
|
+
excludeLocalNetworks: boolean | null;
|
|
26376
26605
|
/**
|
|
26377
26606
|
* Identifier provided by VPN vendor when connection type is set to Custom VPN. For example: Cisco AnyConnect uses an identifier of the form com.cisco.anyconnect.applevpn.plugin
|
|
26378
26607
|
*/
|
|
26379
26608
|
identifier: string | null;
|
|
26609
|
+
/**
|
|
26610
|
+
* Indicates whether most network traffic is routed through the VPN tunnel. When TRUE, most network traffic is sent through the VPN tunnel. Default value is null. Not applicable when enablePerApp is TRUE.
|
|
26611
|
+
*/
|
|
26612
|
+
includeAllNetworks: boolean | null;
|
|
26380
26613
|
/**
|
|
26381
26614
|
* Login group or domain when connection type is set to Dell SonicWALL Mobile Connection.
|
|
26382
26615
|
*/
|
|
@@ -28593,6 +28826,7 @@ capabilities, skills, security, and other manifest-defined fields.
|
|
|
28593
28826
|
gracePeriodEndDateTime: offsetDateTime | null;
|
|
28594
28827
|
groupDetail: cloudPcEntraGroupDetail | null;
|
|
28595
28828
|
imageDisplayName: string | null;
|
|
28829
|
+
isDisasterRecoveryActive: boolean;
|
|
28596
28830
|
lastLoginResult: cloudPcLoginResult | null;
|
|
28597
28831
|
@computed lastModifiedDateTime: offsetDateTime;
|
|
28598
28832
|
lastRemoteActionResult: cloudPcRemoteActionResult | null;
|
|
@@ -28941,6 +29175,7 @@ capabilities, skills, security, and other manifest-defined fields.
|
|
|
28941
29175
|
microsoftManagedDesktop: microsoftManagedDesktop | null;
|
|
28942
29176
|
provisioningType: cloudPcProvisioningType | null;
|
|
28943
29177
|
scopeIds: string[] | null;
|
|
29178
|
+
snapshotResetMode: cloudPcSnapshotResetMode;
|
|
28944
29179
|
userExperienceType: cloudPcUserExperienceType | null;
|
|
28945
29180
|
userSettingsPersistenceConfiguration: cloudPcUserSettingsPersistenceConfiguration | null;
|
|
28946
29181
|
windowsSetting: cloudPcWindowsSetting | null;
|
|
@@ -28999,6 +29234,8 @@ capabilities, skills, security, and other manifest-defined fields.
|
|
|
28999
29234
|
displayName: string | null;
|
|
29000
29235
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
29001
29236
|
localAdminEnabled: boolean | null;
|
|
29237
|
+
|
|
29238
|
+
@graphDeprecated("notificationSetting")
|
|
29002
29239
|
notificationSetting: cloudPcNotificationSetting | null;
|
|
29003
29240
|
provisioningSourceType: cloudPcProvisioningSourceType | null;
|
|
29004
29241
|
resetEnabled: boolean | null;
|
|
@@ -29729,6 +29966,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
29729
29966
|
appId: string | null;
|
|
29730
29967
|
assetId: string | null;
|
|
29731
29968
|
availableTo: packageStatus;
|
|
29969
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
29732
29970
|
deployedTo: packageStatus;
|
|
29733
29971
|
displayName: string | null;
|
|
29734
29972
|
elementTypes: string[];
|
|
@@ -29753,6 +29991,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
29753
29991
|
elementDetails: packageElementDetail[];
|
|
29754
29992
|
longDescription: string | null;
|
|
29755
29993
|
sensitivity: string | null;
|
|
29994
|
+
sharedWithUsersAndGroups: packageAccessEntity[];
|
|
29756
29995
|
}
|
|
29757
29996
|
|
|
29758
29997
|
@entity model copilotPeopleAdminSetting extends entity {
|
|
@@ -29892,6 +30131,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
29892
30131
|
tenantRestrictions: crossTenantAccessPolicyTenantRestrictions | null;
|
|
29893
30132
|
@contains identitySynchronization: crossTenantIdentitySyncPolicyPartner | null;
|
|
29894
30133
|
@contains m365Capabilities: m365CapabilityBase[];
|
|
30134
|
+
@contains serviceProviderConstraints: serviceProviderConstraints | null;
|
|
29895
30135
|
}
|
|
29896
30136
|
|
|
29897
30137
|
@entity model crossTenantCalendarAvailabilityBasic extends m365CapabilityBase {
|
|
@@ -30006,21 +30246,23 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
30006
30246
|
notificationEndpointConfiguration: customExtensionEndpointConfiguration | null;
|
|
30007
30247
|
}
|
|
30008
30248
|
|
|
30249
|
+
@entity model customDataProvidedResourceAccessReviewUploadSession extends customDataProvidedResourceUploadSession {
|
|
30250
|
+
}
|
|
30251
|
+
|
|
30009
30252
|
@entity model customDataProvidedResourceFile extends entity {
|
|
30010
30253
|
name: string;
|
|
30011
30254
|
size: int64;
|
|
30012
30255
|
uploadedDateTime: offsetDateTime;
|
|
30013
30256
|
}
|
|
30014
30257
|
|
|
30258
|
+
@abstract
|
|
30015
30259
|
@entity model customDataProvidedResourceUploadSession extends entity {
|
|
30016
30260
|
@computed createdDateTime: offsetDateTime;
|
|
30017
|
-
data:
|
|
30261
|
+
data: reference.`microsoft.graph.customDataProvidedResourcePayloads`.data | null;
|
|
30018
30262
|
isUploadDone: boolean;
|
|
30019
30263
|
referenceId: string | null;
|
|
30020
|
-
source: string | null;
|
|
30021
30264
|
stats: customDataProvidedResourceUploadStats;
|
|
30022
30265
|
status: customDataProvidedResourceUploadStatus;
|
|
30023
|
-
type: string | null;
|
|
30024
30266
|
@references files: customDataProvidedResourceFile[];
|
|
30025
30267
|
}
|
|
30026
30268
|
|
|
@@ -30522,6 +30764,12 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
30522
30764
|
serviceName: string;
|
|
30523
30765
|
}
|
|
30524
30766
|
|
|
30767
|
+
@entity model delegatedAdminServiceProviderConstraints extends serviceProviderConstraints {
|
|
30768
|
+
allowedRoleTemplateIds: string[] | null;
|
|
30769
|
+
@computed createdDateTime: offsetDateTime;
|
|
30770
|
+
@computed lastModifiedDateTime: offsetDateTime;
|
|
30771
|
+
}
|
|
30772
|
+
|
|
30525
30773
|
@entity model delegatedPermissionClassification extends entity {
|
|
30526
30774
|
classification: permissionClassificationType | null;
|
|
30527
30775
|
permissionId: string | null;
|
|
@@ -33485,6 +33733,9 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
33485
33733
|
* The remote assistance settings singleton
|
|
33486
33734
|
*/
|
|
33487
33735
|
@contains remoteAssistanceSettings: remoteAssistanceSettings | null;
|
|
33736
|
+
/**
|
|
33737
|
+
* Reports singleton
|
|
33738
|
+
*/
|
|
33488
33739
|
@contains reports: deviceManagementReports | null;
|
|
33489
33740
|
/**
|
|
33490
33741
|
* Collection of resource access settings associated with account.
|
|
@@ -34975,6 +35226,9 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
34975
35226
|
whenPartnerDevicesWillBeRemovedDateTime: offsetDateTime | null;
|
|
34976
35227
|
}
|
|
34977
35228
|
|
|
35229
|
+
/**
|
|
35230
|
+
* Singleton entity that acts as a container for all reports functionality.
|
|
35231
|
+
*/
|
|
34978
35232
|
@entity model deviceManagementReports extends entity {
|
|
34979
35233
|
/**
|
|
34980
35234
|
* Entity representing the configuration of a cached report.
|
|
@@ -35817,6 +36071,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
35817
36071
|
folder: folder | null;
|
|
35818
36072
|
image: image | null;
|
|
35819
36073
|
location: geoCoordinates | null;
|
|
36074
|
+
lockInfo: lockInfo | null;
|
|
35820
36075
|
malware: malware | null;
|
|
35821
36076
|
media: media | null;
|
|
35822
36077
|
`package`: `package` | null;
|
|
@@ -37499,6 +37754,7 @@ within the time frame of their original request.
|
|
|
37499
37754
|
browseSessionId: string | null;
|
|
37500
37755
|
completionDateTime: offsetDateTime | null;
|
|
37501
37756
|
destinationType: destinationType | null;
|
|
37757
|
+
error: publicError | null;
|
|
37502
37758
|
restoredItemKey: string | null;
|
|
37503
37759
|
restoredItemPath: string | null;
|
|
37504
37760
|
restoredItemWebUrl: string | null;
|
|
@@ -40677,7 +40933,7 @@ within the time frame of their original request.
|
|
|
40677
40933
|
}
|
|
40678
40934
|
|
|
40679
40935
|
/**
|
|
40680
|
-
* A class containing the properties used for iOS
|
|
40936
|
+
* A class containing the properties used for iOS lob app provisioning configuration PolicySetItem.
|
|
40681
40937
|
*/
|
|
40682
40938
|
@entity model iosLobAppProvisioningConfigurationPolicySetItem extends policySetItem {
|
|
40683
40939
|
}
|
|
@@ -40896,6 +41152,7 @@ within the time frame of their original request.
|
|
|
40896
41152
|
* Contains properties and inherited properties for iOS store apps.
|
|
40897
41153
|
*/
|
|
40898
41154
|
@entity model iosStoreApp extends mobileApp {
|
|
41155
|
+
appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol | null;
|
|
40899
41156
|
/**
|
|
40900
41157
|
* The iOS architecture for which this app can run on.
|
|
40901
41158
|
*/
|
|
@@ -41063,6 +41320,7 @@ within the time frame of their original request.
|
|
|
41063
41320
|
* Contains properties and inherited properties for iOS Volume-Purchased Program (VPP) Apps.
|
|
41064
41321
|
*/
|
|
41065
41322
|
@entity model iosVppApp extends mobileApp {
|
|
41323
|
+
appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol | null;
|
|
41066
41324
|
/**
|
|
41067
41325
|
* The applicable iOS Device Type.
|
|
41068
41326
|
*/
|
|
@@ -42926,6 +43184,10 @@ within the time frame of their original request.
|
|
|
42926
43184
|
* Contains properties and inherited properties for MacOS Volume-Purchased Program (VPP) Apps.
|
|
42927
43185
|
*/
|
|
42928
43186
|
@entity model macOsVppApp extends mobileApp {
|
|
43187
|
+
/**
|
|
43188
|
+
* The protocol used to deliver the app to the apple device(s). When the property is set to Declarative Device Management (DDM) protocol ('declarativeDeviceManagement') then it can no longer be modified or updated to 'mobileDeviceManagement' or 'default'. Default value is: 'default' which indicates Apple MDM protocol.
|
|
43189
|
+
*/
|
|
43190
|
+
appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol;
|
|
42929
43191
|
/**
|
|
42930
43192
|
* The store URL.
|
|
42931
43193
|
*/
|
|
@@ -43064,6 +43326,10 @@ within the time frame of their original request.
|
|
|
43064
43326
|
* This is the name of the Wi-Fi network that is broadcast to all devices.
|
|
43065
43327
|
*/
|
|
43066
43328
|
ssid: string;
|
|
43329
|
+
/**
|
|
43330
|
+
* Indicates whether devices connecting with this Wi-Fi profile must use their physical MAC address instead of a randomized MAC address. When TRUE, it uses the actual Wi-Fi MAC address. When FALSE, it enables the MAC address randomization. Applies to macOS 15 and later. Default is null.
|
|
43331
|
+
*/
|
|
43332
|
+
wifiRequirePhysicalMacAddressEnabled: boolean | null;
|
|
43067
43333
|
/**
|
|
43068
43334
|
* Indicates whether the Wi-Fi endpoint uses an EAP-based security type. Possible values are: open, wpaPersonal, wpaEnterprise, wep, wpa2Personal, and wpa2Enterprise
|
|
43069
43335
|
*/
|
|
@@ -43664,6 +43930,10 @@ within the time frame of their original request.
|
|
|
43664
43930
|
* Defines how app messaging redirection is protected by an App Protection Policy. Default is anyApp.
|
|
43665
43931
|
*/
|
|
43666
43932
|
protectedMessagingRedirectAppType: messagingRedirectAppType;
|
|
43933
|
+
/**
|
|
43934
|
+
* Indicates whether Microsoft Purview content evaluation is required before a managed app performs an outgoing data sharing action. Default value is notRequired. Possible values are: notRequired, requiredWhenOnline, required, unknownFutureValue.
|
|
43935
|
+
*/
|
|
43936
|
+
purviewContentEvaluationRequired: managedAppPurviewEvaluationRequirement;
|
|
43667
43937
|
/**
|
|
43668
43938
|
* Indicates whether users may use the "Save As" menu item to save a copy of protected files.
|
|
43669
43939
|
*/
|
|
@@ -46595,6 +46865,7 @@ within the time frame of their original request.
|
|
|
46595
46865
|
lobbyBypassSettings: lobbyBypassSettings | null;
|
|
46596
46866
|
meetingOptionsWebUrl: string | null;
|
|
46597
46867
|
meetingSpokenLanguageTag: string | null;
|
|
46868
|
+
meetingType: onlineMeetingType | null;
|
|
46598
46869
|
recordAutomatically: boolean | null;
|
|
46599
46870
|
sensitivityLabelAssignment: onlineMeetingSensitivityLabelAssignment | null;
|
|
46600
46871
|
shareMeetingChatHistoryDefault: meetingChatHistoryDefaultMode | null;
|
|
@@ -47524,6 +47795,16 @@ within the time frame of their original request.
|
|
|
47524
47795
|
@references plans: plannerPlan[];
|
|
47525
47796
|
}
|
|
47526
47797
|
|
|
47798
|
+
@abstract
|
|
47799
|
+
@entity model plannerHistoryItem extends plannerDelta {
|
|
47800
|
+
actor: identitySet | null;
|
|
47801
|
+
entityId: string;
|
|
47802
|
+
entityType: historyEntityType;
|
|
47803
|
+
eventType: historyEventType;
|
|
47804
|
+
occurredDateTime: offsetDateTime | null;
|
|
47805
|
+
planId: string;
|
|
47806
|
+
}
|
|
47807
|
+
|
|
47527
47808
|
@entity model plannerPlan extends plannerDelta {
|
|
47528
47809
|
archivalInfo: plannerArchivalInfo | null;
|
|
47529
47810
|
container: plannerPlanContainer | null;
|
|
@@ -47540,6 +47821,7 @@ within the time frame of their original request.
|
|
|
47540
47821
|
title: string;
|
|
47541
47822
|
@references buckets: plannerBucket[];
|
|
47542
47823
|
@contains details: plannerPlanDetails | null;
|
|
47824
|
+
@contains historyItems: plannerHistoryItem[];
|
|
47543
47825
|
@references tasks: plannerTask[];
|
|
47544
47826
|
}
|
|
47545
47827
|
|
|
@@ -48976,11 +49258,16 @@ within the time frame of their original request.
|
|
|
48976
49258
|
@contains targetDeviceGroups: targetDeviceGroup[];
|
|
48977
49259
|
}
|
|
48978
49260
|
|
|
49261
|
+
@open
|
|
49262
|
+
@entity model removeFromLobbyOperation extends commsOperation {
|
|
49263
|
+
}
|
|
49264
|
+
|
|
48979
49265
|
@entity model reportRoot extends MsGraph.SharedModels.entity {
|
|
48980
49266
|
@contains appCredentialSignInActivities: appCredentialSignInActivity[];
|
|
48981
49267
|
@contains applicationSignInDetailedSummary: applicationSignInDetailedSummary[];
|
|
48982
49268
|
@contains authenticationMethods: authenticationMethodsRoot | null;
|
|
48983
49269
|
@contains azureADPremiumLicenseInsight: azureADPremiumLicenseInsight | null;
|
|
49270
|
+
@contains correlations: identityCorrelation[];
|
|
48984
49271
|
@contains credentialUserRegistrationDetails: credentialUserRegistrationDetails[];
|
|
48985
49272
|
@contains dailyPrintUsage: printUsage[];
|
|
48986
49273
|
@contains dailyPrintUsageByPrinter: printUsageByPrinter[];
|
|
@@ -50396,6 +50683,10 @@ within the time frame of their original request.
|
|
|
50396
50683
|
lastSignInActivity: signInActivity | null;
|
|
50397
50684
|
}
|
|
50398
50685
|
|
|
50686
|
+
@entity model serviceProviderConstraints extends policyDeletableItem {
|
|
50687
|
+
@computed @key id: string;
|
|
50688
|
+
}
|
|
50689
|
+
|
|
50399
50690
|
@entity model serviceStorageQuotaBreakdown extends storageQuotaBreakdown {
|
|
50400
50691
|
}
|
|
50401
50692
|
|
|
@@ -51549,6 +51840,11 @@ within the time frame of their original request.
|
|
|
51549
51840
|
contentBytes: binary;
|
|
51550
51841
|
}
|
|
51551
51842
|
|
|
51843
|
+
@entity model taskHistoryItem extends plannerHistoryItem {
|
|
51844
|
+
newData: plannerTaskData | null;
|
|
51845
|
+
oldData: plannerTaskData | null;
|
|
51846
|
+
}
|
|
51847
|
+
|
|
51552
51848
|
@entity model taxArea extends MsGraph.SharedModels.entity {
|
|
51553
51849
|
code: string | null;
|
|
51554
51850
|
displayName: string | null;
|
|
@@ -62255,11 +62551,15 @@ within the time frame of their original request.
|
|
|
62255
62551
|
enum accessReviewInstanceDecisionItemFilterByCurrentUserOptions {
|
|
62256
62552
|
reviewer: 1,
|
|
62257
62553
|
unknownFutureValue: 2,
|
|
62554
|
+
directReviewer: 3,
|
|
62555
|
+
delegatedReviewer: 4,
|
|
62258
62556
|
}
|
|
62259
62557
|
|
|
62260
62558
|
enum accessReviewInstanceFilterByCurrentUserOptions {
|
|
62261
62559
|
reviewer: 1,
|
|
62262
62560
|
unknownFutureValue: 2,
|
|
62561
|
+
directReviewer: 3,
|
|
62562
|
+
delegatedReviewer: 4,
|
|
62263
62563
|
}
|
|
62264
62564
|
|
|
62265
62565
|
enum accessReviewPrincipalScopeType {
|
|
@@ -62293,11 +62593,15 @@ within the time frame of their original request.
|
|
|
62293
62593
|
enum accessReviewScheduleDefinitionFilterByCurrentUserOptions {
|
|
62294
62594
|
reviewer: 1,
|
|
62295
62595
|
unknownFutureValue: 2,
|
|
62596
|
+
directReviewer: 3,
|
|
62597
|
+
delegatedReviewer: 4,
|
|
62296
62598
|
}
|
|
62297
62599
|
|
|
62298
62600
|
enum accessReviewStageFilterByCurrentUserOptions {
|
|
62299
62601
|
reviewer: 1,
|
|
62300
62602
|
unknownFutureValue: 2,
|
|
62603
|
+
directReviewer: 3,
|
|
62604
|
+
delegatedReviewer: 4,
|
|
62301
62605
|
}
|
|
62302
62606
|
|
|
62303
62607
|
enum accessReviewTimeoutBehavior {
|
|
@@ -63885,7 +64189,6 @@ within the time frame of their original request.
|
|
|
63885
64189
|
/**
|
|
63886
64190
|
* Wi-Fi Security Types for AOSP Device Owner.
|
|
63887
64191
|
*/
|
|
63888
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
63889
64192
|
enum aospDeviceOwnerWiFiSecurityType {
|
|
63890
64193
|
/**
|
|
63891
64194
|
* Open (No Authentication).
|
|
@@ -63903,6 +64206,7 @@ within the time frame of their original request.
|
|
|
63903
64206
|
* WPA-Enterprise/WPA2-Enterprise. Must use AOSPDeviceOwnerEnterpriseWifiConfiguration type to configure enterprise options.
|
|
63904
64207
|
*/
|
|
63905
64208
|
wpaEnterprise: 4,
|
|
64209
|
+
unknownFutureValue: 5,
|
|
63906
64210
|
}
|
|
63907
64211
|
|
|
63908
64212
|
/**
|
|
@@ -64879,6 +65183,7 @@ within the time frame of their original request.
|
|
|
64879
65183
|
attributeCollectionStart: 3,
|
|
64880
65184
|
attributeCollectionSubmit: 4,
|
|
64881
65185
|
emailOtpSend: 5,
|
|
65186
|
+
passwordSubmit: 6,
|
|
64882
65187
|
}
|
|
64883
65188
|
|
|
64884
65189
|
enum authenticationFailureReasonCode {
|
|
@@ -67116,6 +67421,13 @@ within the time frame of their original request.
|
|
|
67116
67421
|
unknownFutureValue: 2,
|
|
67117
67422
|
}
|
|
67118
67423
|
|
|
67424
|
+
enum cloudPcSnapshotResetMode {
|
|
67425
|
+
notApplicable: 0,
|
|
67426
|
+
enabled: 1,
|
|
67427
|
+
disabled: 2,
|
|
67428
|
+
unknownFutureValue: 3,
|
|
67429
|
+
}
|
|
67430
|
+
|
|
67119
67431
|
enum cloudPcSnapshotStatus {
|
|
67120
67432
|
ready: 0,
|
|
67121
67433
|
unknownFutureValue: 999,
|
|
@@ -67153,6 +67465,8 @@ within the time frame of their original request.
|
|
|
67153
67465
|
modifyingSingleSignOn: 14,
|
|
67154
67466
|
refreshPolicyConfiguration: 15,
|
|
67155
67467
|
preparing: 16,
|
|
67468
|
+
failoverInProgress: 17,
|
|
67469
|
+
failbackInProgress: 18,
|
|
67156
67470
|
}
|
|
67157
67471
|
|
|
67158
67472
|
enum cloudPcStorageAccountAccessTier {
|
|
@@ -68256,6 +68570,44 @@ within the time frame of their original request.
|
|
|
68256
68570
|
saturday: 6,
|
|
68257
68571
|
}
|
|
68258
68572
|
|
|
68573
|
+
/**
|
|
68574
|
+
* Describes how and when to install an app, specifically whether the app may be downloaded over cellular connections. Maps to Apple's AppManagedInstallBehaviorObject declaration.
|
|
68575
|
+
*/
|
|
68576
|
+
enum ddmAppAllowDownloadsOverCellular {
|
|
68577
|
+
/**
|
|
68578
|
+
* The device downloads apps of any size using a cellular network.
|
|
68579
|
+
*/
|
|
68580
|
+
alwaysOn: 0,
|
|
68581
|
+
/**
|
|
68582
|
+
* The device doesn't download apps using a cellular network. The device pauses the automatic install or update operation until a different network is active.
|
|
68583
|
+
*/
|
|
68584
|
+
alwaysOff: 1,
|
|
68585
|
+
/**
|
|
68586
|
+
* The device uses the settings for the corresponding store when downloading apps.
|
|
68587
|
+
*/
|
|
68588
|
+
storeSettings: 2,
|
|
68589
|
+
unknownFutureValue: 3,
|
|
68590
|
+
}
|
|
68591
|
+
|
|
68592
|
+
/**
|
|
68593
|
+
* Specifies the update behavior of the apps installed via VPP. Apps in packages are not automatically updated. Maps to Apple's AppManagedUpdateBehaviorObject declaration.
|
|
68594
|
+
*/
|
|
68595
|
+
enum ddmAppAutomaticAppUpdates {
|
|
68596
|
+
/**
|
|
68597
|
+
* The device automatically updates the app to the latest version.
|
|
68598
|
+
*/
|
|
68599
|
+
alwaysOn: 0,
|
|
68600
|
+
/**
|
|
68601
|
+
* The device never automatically updates the app.
|
|
68602
|
+
*/
|
|
68603
|
+
alwaysOff: 1,
|
|
68604
|
+
/**
|
|
68605
|
+
* The device uses the settings for the corresponding store to determine when to automatically update the app.
|
|
68606
|
+
*/
|
|
68607
|
+
storeSettings: 2,
|
|
68608
|
+
unknownFutureValue: 3,
|
|
68609
|
+
}
|
|
68610
|
+
|
|
68259
68611
|
@graphFlags
|
|
68260
68612
|
enum decisionItemPrincipalResourceMembershipType {
|
|
68261
68613
|
direct: 1,
|
|
@@ -71768,6 +72120,7 @@ within the time frame of their original request.
|
|
|
71768
72120
|
sPSharingNotifyUser: 10,
|
|
71769
72121
|
sPSharingGenerateIncidentReport: 11,
|
|
71770
72122
|
restrictWebGrounding: 12,
|
|
72123
|
+
policyTip: 13,
|
|
71771
72124
|
}
|
|
71772
72125
|
|
|
71773
72126
|
/**
|
|
@@ -73556,12 +73909,12 @@ within the time frame of their original request.
|
|
|
73556
73909
|
unknownFutureValue: 5,
|
|
73557
73910
|
}
|
|
73558
73911
|
|
|
73559
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
73560
73912
|
enum groupAccessType {
|
|
73561
73913
|
none: 0,
|
|
73562
73914
|
private: 1,
|
|
73563
73915
|
secret: 2,
|
|
73564
73916
|
public: 3,
|
|
73917
|
+
unknownFutureValue: 4,
|
|
73565
73918
|
}
|
|
73566
73919
|
|
|
73567
73920
|
/**
|
|
@@ -73971,6 +74324,20 @@ within the time frame of their original request.
|
|
|
73971
74324
|
unhealthy: 2,
|
|
73972
74325
|
}
|
|
73973
74326
|
|
|
74327
|
+
enum historyEntityType {
|
|
74328
|
+
task: 0,
|
|
74329
|
+
unknownFutureValue: 1,
|
|
74330
|
+
}
|
|
74331
|
+
|
|
74332
|
+
enum historyEventType {
|
|
74333
|
+
created: 0,
|
|
74334
|
+
updated: 1,
|
|
74335
|
+
deleted: 2,
|
|
74336
|
+
undeleted: 3,
|
|
74337
|
+
moved: 4,
|
|
74338
|
+
unknownFutureValue: 5,
|
|
74339
|
+
}
|
|
74340
|
+
|
|
73974
74341
|
enum holdType {
|
|
73975
74342
|
none: 0,
|
|
73976
74343
|
private: 1,
|
|
@@ -75755,6 +76122,25 @@ within the time frame of their original request.
|
|
|
75755
76122
|
alphanumericAndSymbol: 1,
|
|
75756
76123
|
}
|
|
75757
76124
|
|
|
76125
|
+
/**
|
|
76126
|
+
* Specifies whether Microsoft Purview Data Loss Prevention (DLP) content evaluation is required before data sharing.
|
|
76127
|
+
*/
|
|
76128
|
+
enum managedAppPurviewEvaluationRequirement {
|
|
76129
|
+
/**
|
|
76130
|
+
* Microsoft Purview Data Loss Prevention (DLP) content evaluation is not required.
|
|
76131
|
+
*/
|
|
76132
|
+
notRequired: 0,
|
|
76133
|
+
/**
|
|
76134
|
+
* Microsoft Purview Data Loss Prevention (DLP) content evaluation is required when online; sharing is allowed if the service is unreachable.
|
|
76135
|
+
*/
|
|
76136
|
+
requiredWhenOnline: 1,
|
|
76137
|
+
/**
|
|
76138
|
+
* Microsoft Purview Data Loss Prevention (DLP) content evaluation is always required; sharing is blocked if the service is unreachable.
|
|
76139
|
+
*/
|
|
76140
|
+
required: 2,
|
|
76141
|
+
unknownFutureValue: 3,
|
|
76142
|
+
}
|
|
76143
|
+
|
|
75758
76144
|
/**
|
|
75759
76145
|
* An admin initiated action to be applied on a managed app.
|
|
75760
76146
|
*/
|
|
@@ -77457,6 +77843,15 @@ within the time frame of their original request.
|
|
|
77457
77843
|
coorganizer: 4,
|
|
77458
77844
|
}
|
|
77459
77845
|
|
|
77846
|
+
enum onlineMeetingType {
|
|
77847
|
+
adhoc: 0,
|
|
77848
|
+
scheduled: 1,
|
|
77849
|
+
recurring: 2,
|
|
77850
|
+
broadcast: 3,
|
|
77851
|
+
meetnow: 4,
|
|
77852
|
+
unknownFutureValue: 5,
|
|
77853
|
+
}
|
|
77854
|
+
|
|
77460
77855
|
@graphFlags
|
|
77461
77856
|
enum onlineMeetingVideoDisabledReason {
|
|
77462
77857
|
watermarkProtection: 1,
|
|
@@ -83554,7 +83949,10 @@ within the time frame of their original request.
|
|
|
83554
83949
|
downloadText: 3,
|
|
83555
83950
|
downloadFile: 4,
|
|
83556
83951
|
copyToClipboard: 7,
|
|
83557
|
-
|
|
83952
|
+
pasteFromClipboard: 8,
|
|
83953
|
+
print: 9,
|
|
83954
|
+
accessDebugTools: 10,
|
|
83955
|
+
unknownFutureValue: 11,
|
|
83558
83956
|
}
|
|
83559
83957
|
|
|
83560
83958
|
@graphFlags
|
|
@@ -83565,7 +83963,10 @@ within the time frame of their original request.
|
|
|
83565
83963
|
downloadText: 4,
|
|
83566
83964
|
downloadFile: 8,
|
|
83567
83965
|
copyToClipboard: 16,
|
|
83568
|
-
|
|
83966
|
+
pasteFromClipboard: 32,
|
|
83967
|
+
print: 64,
|
|
83968
|
+
accessDebugTools: 128,
|
|
83969
|
+
unknownFutureValue: 256,
|
|
83569
83970
|
}
|
|
83570
83971
|
|
|
83571
83972
|
enum userDefaultAuthenticationMethod {
|
|
@@ -84974,6 +85375,29 @@ within the time frame of their original request.
|
|
|
84974
85375
|
unknownFutureValue: 9,
|
|
84975
85376
|
}
|
|
84976
85377
|
|
|
85378
|
+
/**
|
|
85379
|
+
* Indicates whether app-in-use detection is enabled before app enforcement, and if enabled, the action to take when the app is detected to be in-use.
|
|
85380
|
+
*/
|
|
85381
|
+
enum win32LobAppInUseActionType {
|
|
85382
|
+
/**
|
|
85383
|
+
* Default. Indicates that no in-use detection will be evaluated before an app enforcement.
|
|
85384
|
+
*/
|
|
85385
|
+
notEnabled: 0,
|
|
85386
|
+
/**
|
|
85387
|
+
* Indicates that the in-use detection will occur immediately before app enforcement. Enforcement will not occur if the app is detected to be in-use, and an error status will be reported for the app.
|
|
85388
|
+
*/
|
|
85389
|
+
fail: 1,
|
|
85390
|
+
/**
|
|
85391
|
+
* Indicates that in-use detection will occur immediately before app enforcement. If the app is detected to be in-use, the processes specified in the corresponding process detection rules will be terminated, and app enforcement will commence.
|
|
85392
|
+
*/
|
|
85393
|
+
terminateWithoutUserInteraction: 2,
|
|
85394
|
+
/**
|
|
85395
|
+
* Indicates that in-use detection will occur immediately before app enforcement. If the app is detected to be in-use, the end user will be prompted according to the configured deferral and countdown settings, and the processes specified in the corresponding process detection rules will be terminated before app enforcement is commenced. If any of the processes cannot be terminated, the app will not be enforced, and an error status will be reported for the app.
|
|
85396
|
+
*/
|
|
85397
|
+
terminateWithUserInteraction: 3,
|
|
85398
|
+
unknownFutureValue: 4,
|
|
85399
|
+
}
|
|
85400
|
+
|
|
84977
85401
|
/**
|
|
84978
85402
|
* Indicates the package type of an MSI Win32LobApp.
|
|
84979
85403
|
*/
|
|
@@ -85082,6 +85506,21 @@ within the time frame of their original request.
|
|
|
85082
85506
|
`boolean`: 6,
|
|
85083
85507
|
}
|
|
85084
85508
|
|
|
85509
|
+
/**
|
|
85510
|
+
* A list of possible operations for rules used to make determinations about whether an application is in-use based on process state.
|
|
85511
|
+
*/
|
|
85512
|
+
enum win32LobAppProcessOperationType {
|
|
85513
|
+
/**
|
|
85514
|
+
* Default. Not configured.
|
|
85515
|
+
*/
|
|
85516
|
+
notConfigured: 0,
|
|
85517
|
+
/**
|
|
85518
|
+
* Indicates that the rule evaluates whether the specified process exists (is running) on the device.
|
|
85519
|
+
*/
|
|
85520
|
+
exists: 1,
|
|
85521
|
+
unknownFutureValue: 2,
|
|
85522
|
+
}
|
|
85523
|
+
|
|
85085
85524
|
/**
|
|
85086
85525
|
* Contains all supported registry data detection type.
|
|
85087
85526
|
*/
|
|
@@ -88151,6 +88590,31 @@ namespace reference.`microsoft.graph.cloudLicensing` {
|
|
|
88151
88590
|
}
|
|
88152
88591
|
@publicNamespace("microsoft.graph.copilot")
|
|
88153
88592
|
namespace reference.`microsoft.graph.copilot` {
|
|
88593
|
+
}
|
|
88594
|
+
@publicNamespace("microsoft.graph.customdataprovidedresourcepayloads")
|
|
88595
|
+
namespace reference.`microsoft.graph.customDataProvidedResourcePayloads` {
|
|
88596
|
+
@complex model accessReviewContextData extends accessReviewContextDataBase {
|
|
88597
|
+
}
|
|
88598
|
+
|
|
88599
|
+
@abstract
|
|
88600
|
+
@complex model accessReviewContextDataBase extends data {
|
|
88601
|
+
reviewDefinitionId: string;
|
|
88602
|
+
reviewInstanceId: string;
|
|
88603
|
+
}
|
|
88604
|
+
|
|
88605
|
+
@complex model applyDecisionContextData extends accessReviewContextDataBase {
|
|
88606
|
+
}
|
|
88607
|
+
|
|
88608
|
+
@complex model calloutRequest {
|
|
88609
|
+
catalogId: string;
|
|
88610
|
+
resourceId: string;
|
|
88611
|
+
source: string;
|
|
88612
|
+
}
|
|
88613
|
+
|
|
88614
|
+
@abstract
|
|
88615
|
+
@complex model data {
|
|
88616
|
+
}
|
|
88617
|
+
|
|
88154
88618
|
}
|
|
88155
88619
|
@deprecatedDefinition("ruleThreshold", "<ChangeLogCategory>", "2023-09-05", "2023-12-31", "The ruleThreshold complex type is deprecated and will not be supported starting Dec 31, 2023. This property will not be included as part of the API response.")
|
|
88156
88620
|
@deprecatedDefinition("threshold", "<ChangeLogCategory>", "2023-09-05", "2023-12-31", "The threshold property is deprecated and will not be supported starting Dec 31, 2023. This property will not be included as part of the API response.")
|
|
@@ -89075,6 +89539,7 @@ namespace reference.`microsoft.graph.externalConnectors` {
|
|
|
89075
89539
|
personLanguages: 54,
|
|
89076
89540
|
personPublications: 55,
|
|
89077
89541
|
personPatents: 56,
|
|
89542
|
+
personWorkPositions: 57,
|
|
89078
89543
|
}
|
|
89079
89544
|
|
|
89080
89545
|
enum propertyType {
|
|
@@ -89255,6 +89720,17 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
89255
89720
|
triggerAttributes: triggerAttribute[];
|
|
89256
89721
|
}
|
|
89257
89722
|
|
|
89723
|
+
@complex model attributeSetEntry {
|
|
89724
|
+
name: string;
|
|
89725
|
+
value: string | null;
|
|
89726
|
+
}
|
|
89727
|
+
|
|
89728
|
+
@complex model awaitedWorkflowProcessingResult {
|
|
89729
|
+
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
89730
|
+
statusReasons: string[];
|
|
89731
|
+
subject: workflowSubject | null;
|
|
89732
|
+
}
|
|
89733
|
+
|
|
89258
89734
|
@complex model cancelRunsScope extends cancelScope {
|
|
89259
89735
|
@references runs: run[];
|
|
89260
89736
|
}
|
|
@@ -89272,12 +89748,19 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
89272
89748
|
}
|
|
89273
89749
|
|
|
89274
89750
|
@complex model customTaskExtensionCalloutData extends reference.`microsoft.graph`.customExtensionData {
|
|
89751
|
+
targetSubject: workflowSubject | null;
|
|
89275
89752
|
@references subject: reference.`microsoft.graph`.user | null;
|
|
89276
89753
|
@references task: task | null;
|
|
89277
89754
|
@references taskProcessingresult: taskProcessingResult | null;
|
|
89278
89755
|
@references workflow: workflow | null;
|
|
89279
89756
|
}
|
|
89280
89757
|
|
|
89758
|
+
@complex model customTaskExtensionResponseData extends reference.`microsoft.graph`.customExtensionData {
|
|
89759
|
+
operationStatus: customTaskExtensionOperationStatus;
|
|
89760
|
+
statusReasons: string[];
|
|
89761
|
+
targetSubject: workflowSubject | null;
|
|
89762
|
+
}
|
|
89763
|
+
|
|
89281
89764
|
@complex model groupBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
89282
89765
|
@references groups: reference.`microsoft.graph`.group[];
|
|
89283
89766
|
}
|
|
@@ -89302,6 +89785,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
89302
89785
|
taskId: string;
|
|
89303
89786
|
}
|
|
89304
89787
|
|
|
89788
|
+
@complex model provisioningAttributeMapping extends workflowExecutionConditions {
|
|
89789
|
+
}
|
|
89790
|
+
|
|
89791
|
+
@complex model provisioningObjectWorkflowSubject extends workflowSubject {
|
|
89792
|
+
attributeSetEntries: attributeSetEntry[];
|
|
89793
|
+
id: string;
|
|
89794
|
+
}
|
|
89795
|
+
|
|
89305
89796
|
@complex model ruleBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
89306
89797
|
rule: string;
|
|
89307
89798
|
}
|
|
@@ -89412,10 +89903,15 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
89412
89903
|
totalUsers: int32;
|
|
89413
89904
|
}
|
|
89414
89905
|
|
|
89906
|
+
@abstract
|
|
89907
|
+
@complex model workflowSubject {
|
|
89908
|
+
}
|
|
89909
|
+
|
|
89415
89910
|
@entity model customTaskExtension extends reference.`microsoft.graph`.customCalloutExtension {
|
|
89416
89911
|
callbackConfiguration: reference.`microsoft.graph`.customExtensionCallbackConfiguration | null;
|
|
89417
89912
|
@computed createdDateTime: offsetDateTime | null;
|
|
89418
89913
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
89914
|
+
replyMode: customTaskExtensionReplyMode;
|
|
89419
89915
|
@references createdBy: reference.`microsoft.graph`.user | null;
|
|
89420
89916
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
89421
89917
|
}
|
|
@@ -89453,10 +89949,26 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
89453
89949
|
totalUsersCount: int32;
|
|
89454
89950
|
workflowExecutionType: workflowExecutionType;
|
|
89455
89951
|
@references reprocessedRuns: run[];
|
|
89952
|
+
@contains subjectProcessingResults: subjectProcessingResult[];
|
|
89456
89953
|
@contains taskProcessingResults: taskProcessingResult[];
|
|
89457
89954
|
@contains userProcessingResults: userProcessingResult[];
|
|
89458
89955
|
}
|
|
89459
89956
|
|
|
89957
|
+
@entity model subjectProcessingResult extends reference.`microsoft.graph`.entity {
|
|
89958
|
+
completedDateTime: offsetDateTime | null;
|
|
89959
|
+
failedTasksCount: int32;
|
|
89960
|
+
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
89961
|
+
scheduledDateTime: offsetDateTime;
|
|
89962
|
+
startedDateTime: offsetDateTime | null;
|
|
89963
|
+
subject: workflowSubject;
|
|
89964
|
+
totalTasksCount: int32;
|
|
89965
|
+
totalUnprocessedTasksCount: int32;
|
|
89966
|
+
workflowExecutionType: workflowExecutionType;
|
|
89967
|
+
workflowVersion: int32;
|
|
89968
|
+
@references reprocessedRuns: run[];
|
|
89969
|
+
@contains taskProcessingResults: taskProcessingResult[];
|
|
89970
|
+
}
|
|
89971
|
+
|
|
89460
89972
|
@entity model task extends reference.`microsoft.graph`.entity {
|
|
89461
89973
|
arguments: reference.`microsoft.graph`.keyValuePair[];
|
|
89462
89974
|
category: lifecycleTaskCategory;
|
|
@@ -89485,6 +89997,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
89485
89997
|
processingInfo: string | null;
|
|
89486
89998
|
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
89487
89999
|
startedDateTime: offsetDateTime | null;
|
|
90000
|
+
workflowSubject: workflowSubject | null;
|
|
89488
90001
|
@references subject: reference.`microsoft.graph`.user;
|
|
89489
90002
|
@references task: task;
|
|
89490
90003
|
}
|
|
@@ -89529,6 +90042,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
89529
90042
|
@privatePreview("organizationalUnit")
|
|
89530
90043
|
@references previewScope: reference.`microsoft.graph`.directoryObject[];
|
|
89531
90044
|
@contains runs: run[];
|
|
90045
|
+
@contains subjectProcessingResults: subjectProcessingResult[];
|
|
89532
90046
|
@contains taskReports: taskReport[];
|
|
89533
90047
|
@contains userProcessingResults: userProcessingResult[];
|
|
89534
90048
|
@contains versions: workflowVersion[];
|
|
@@ -89580,12 +90094,20 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
89580
90094
|
unknownFutureValue: 2,
|
|
89581
90095
|
}
|
|
89582
90096
|
|
|
90097
|
+
enum customTaskExtensionReplyMode {
|
|
90098
|
+
none: 0,
|
|
90099
|
+
callback: 1,
|
|
90100
|
+
response: 2,
|
|
90101
|
+
unknownFutureValue: 3,
|
|
90102
|
+
}
|
|
90103
|
+
|
|
89583
90104
|
@graphFlags
|
|
89584
90105
|
enum lifecycleTaskCategory {
|
|
89585
90106
|
joiner: 1,
|
|
89586
90107
|
leaver: 2,
|
|
89587
90108
|
unknownFutureValue: 4,
|
|
89588
90109
|
mover: 8,
|
|
90110
|
+
extensibility: 16,
|
|
89589
90111
|
}
|
|
89590
90112
|
|
|
89591
90113
|
enum lifecycleWorkflowCategory {
|
|
@@ -89593,6 +90115,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
89593
90115
|
leaver: 1,
|
|
89594
90116
|
unknownFutureValue: 2,
|
|
89595
90117
|
mover: 3,
|
|
90118
|
+
extensibility: 4,
|
|
89596
90119
|
}
|
|
89597
90120
|
|
|
89598
90121
|
enum lifecycleWorkflowProcessingStatus {
|
|
@@ -89628,6 +90151,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
89628
90151
|
activatedWithScope: 3,
|
|
89629
90152
|
@privatePreview("organizationalUnit")
|
|
89630
90153
|
preview: 4,
|
|
90154
|
+
extensibilityOnDemand: 5,
|
|
89631
90155
|
}
|
|
89632
90156
|
|
|
89633
90157
|
enum workflowTriggerTimeBasedAttribute {
|
|
@@ -92387,6 +92911,8 @@ namespace reference.`microsoft.graph.networkaccess` {
|
|
|
92387
92911
|
expired: 5,
|
|
92388
92912
|
enabled: 6,
|
|
92389
92913
|
disabled: 7,
|
|
92914
|
+
creating: 9,
|
|
92915
|
+
revoked: 10,
|
|
92390
92916
|
}
|
|
92391
92917
|
|
|
92392
92918
|
enum tlsStatus {
|
|
@@ -92799,6 +93325,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
92799
93325
|
identityProvider: identityProvider;
|
|
92800
93326
|
}
|
|
92801
93327
|
|
|
93328
|
+
@complex model accountObjectIdAction extends automatedAction {
|
|
93329
|
+
accountObjectIdColumn: string;
|
|
93330
|
+
}
|
|
93331
|
+
|
|
93332
|
+
@complex model accountSidAction extends automatedAction {
|
|
93333
|
+
accountSidColumn: string;
|
|
93334
|
+
}
|
|
93335
|
+
|
|
92802
93336
|
@complex model activeDirectoryDomainEvidence extends alertEvidence {
|
|
92803
93337
|
activeDirectoryDomainName: string | null;
|
|
92804
93338
|
trustedDomains: activeDirectoryDomainEvidence[];
|
|
@@ -92954,6 +93488,10 @@ namespace reference.`microsoft.graph.security` {
|
|
|
92954
93488
|
@computed createdDateTime: offsetDateTime;
|
|
92955
93489
|
}
|
|
92956
93490
|
|
|
93491
|
+
@open
|
|
93492
|
+
@complex model alertCustomDetails extends dictionary {
|
|
93493
|
+
}
|
|
93494
|
+
|
|
92957
93495
|
@complex model alertEvidence {
|
|
92958
93496
|
@computed createdDateTime: offsetDateTime;
|
|
92959
93497
|
detailedRoles: string[] | null;
|
|
@@ -92964,16 +93502,8 @@ namespace reference.`microsoft.graph.security` {
|
|
|
92964
93502
|
verdict: evidenceVerdict;
|
|
92965
93503
|
}
|
|
92966
93504
|
|
|
92967
|
-
|
|
92968
|
-
|
|
92969
|
-
description: string;
|
|
92970
|
-
impactedAssets: impactedAsset[];
|
|
92971
|
-
mitreTechniques: string[] | null;
|
|
92972
|
-
recommendedActions: string | null;
|
|
92973
|
-
severity: alertSeverity;
|
|
92974
|
-
title: string;
|
|
92975
|
-
}
|
|
92976
|
-
|
|
93505
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
93506
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
92977
93507
|
@complex model allowFileResponseAction extends responseAction {
|
|
92978
93508
|
deviceGroupNames: string[] | null;
|
|
92979
93509
|
identifier: fileEntityIdentifier;
|
|
@@ -93118,6 +93648,29 @@ namespace reference.`microsoft.graph.security` {
|
|
|
93118
93648
|
@complex model auditSearchAuditRecord extends auditData {
|
|
93119
93649
|
}
|
|
93120
93650
|
|
|
93651
|
+
@abstract
|
|
93652
|
+
@complex model automatedAction {
|
|
93653
|
+
}
|
|
93654
|
+
|
|
93655
|
+
@complex model automatedActionSet {
|
|
93656
|
+
allowFiles: fileAction[] | null;
|
|
93657
|
+
blockFiles: fileAction[] | null;
|
|
93658
|
+
collectInvestigationPackages: deviceAction[] | null;
|
|
93659
|
+
disableUsers: accountSidAction[] | null;
|
|
93660
|
+
forceUserPasswordResets: accountSidAction[] | null;
|
|
93661
|
+
hardDeleteEmails: emailAction[] | null;
|
|
93662
|
+
initiateInvestigations: deviceAction[] | null;
|
|
93663
|
+
isolateDevices: isolateDeviceAction[] | null;
|
|
93664
|
+
markUsersAsCompromised: accountObjectIdAction[] | null;
|
|
93665
|
+
moveEmailsToDeletedItems: emailAction[] | null;
|
|
93666
|
+
moveEmailsToInbox: emailAction[] | null;
|
|
93667
|
+
moveEmailsToJunk: emailAction[] | null;
|
|
93668
|
+
restrictAppExecutions: deviceAction[] | null;
|
|
93669
|
+
runAntivirusScans: deviceAction[] | null;
|
|
93670
|
+
softDeleteEmails: emailAction[] | null;
|
|
93671
|
+
stopAndQuarantineFiles: stopAndQuarantineFileAction[] | null;
|
|
93672
|
+
}
|
|
93673
|
+
|
|
93121
93674
|
@complex model autonomousSystem {
|
|
93122
93675
|
name: string;
|
|
93123
93676
|
number: int32;
|
|
@@ -93181,6 +93734,8 @@ namespace reference.`microsoft.graph.security` {
|
|
|
93181
93734
|
url: string | null;
|
|
93182
93735
|
}
|
|
93183
93736
|
|
|
93737
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
93738
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
93184
93739
|
@complex model blockFileResponseAction extends responseAction {
|
|
93185
93740
|
deviceGroupNames: string[] | null;
|
|
93186
93741
|
identifier: fileEntityIdentifier;
|
|
@@ -93310,9 +93865,12 @@ namespace reference.`microsoft.graph.security` {
|
|
|
93310
93865
|
@complex model cloudUpdateTenantConfigAuditRecord extends auditData {
|
|
93311
93866
|
}
|
|
93312
93867
|
|
|
93868
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
93313
93869
|
@complex model collectInvestigationPackageIncidentTaskResponseAction extends incidentTaskResponseAction {
|
|
93314
93870
|
}
|
|
93315
93871
|
|
|
93872
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
93873
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
93316
93874
|
@complex model collectInvestigationPackageResponseAction extends responseAction {
|
|
93317
93875
|
identifier: deviceIdEntityIdentifier;
|
|
93318
93876
|
}
|
|
@@ -93653,12 +94211,6 @@ namespace reference.`microsoft.graph.security` {
|
|
|
93653
94211
|
deploymentAccessKey: string;
|
|
93654
94212
|
}
|
|
93655
94213
|
|
|
93656
|
-
@complex model detectionAction {
|
|
93657
|
-
alertTemplate: alertTemplate;
|
|
93658
|
-
organizationalScope: organizationalScope | null;
|
|
93659
|
-
responseActions: responseAction[] | null;
|
|
93660
|
-
}
|
|
93661
|
-
|
|
93662
94214
|
@graphDeprecated("Tasks_And_Plans")
|
|
93663
94215
|
@complex model detonationBehaviourDetails {
|
|
93664
94216
|
actionStatus: string | null;
|
|
@@ -93699,6 +94251,10 @@ namespace reference.`microsoft.graph.security` {
|
|
|
93699
94251
|
droppedfiles: string[] | null;
|
|
93700
94252
|
}
|
|
93701
94253
|
|
|
94254
|
+
@complex model deviceAction extends automatedAction {
|
|
94255
|
+
deviceIdColumn: string;
|
|
94256
|
+
}
|
|
94257
|
+
|
|
93702
94258
|
/**
|
|
93703
94259
|
* Audit data for Device Discovery Settings Authenticated Scans events.
|
|
93704
94260
|
*/
|
|
@@ -93746,9 +94302,12 @@ namespace reference.`microsoft.graph.security` {
|
|
|
93746
94302
|
@complex model dictionary {
|
|
93747
94303
|
}
|
|
93748
94304
|
|
|
94305
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
93749
94306
|
@complex model disableUserIncidentTaskResponseAction extends incidentTaskResponseAction {
|
|
93750
94307
|
}
|
|
93751
94308
|
|
|
94309
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
94310
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
93752
94311
|
@complex model disableUserResponseAction extends responseAction {
|
|
93753
94312
|
identifier: disableUserEntityIdentifier;
|
|
93754
94313
|
}
|
|
@@ -93805,12 +94364,18 @@ namespace reference.`microsoft.graph.security` {
|
|
|
93805
94364
|
@complex model ehrConnectorAuditBaseRecord extends auditData {
|
|
93806
94365
|
}
|
|
93807
94366
|
|
|
94367
|
+
@complex model emailAction extends automatedAction {
|
|
94368
|
+
networkMessageIdColumn: string;
|
|
94369
|
+
recipientColumn: string;
|
|
94370
|
+
}
|
|
94371
|
+
|
|
93808
94372
|
@complex model emailSender {
|
|
93809
94373
|
displayName: string | null;
|
|
93810
94374
|
domainName: string | null;
|
|
93811
94375
|
emailAddress: string | null;
|
|
93812
94376
|
}
|
|
93813
94377
|
|
|
94378
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
93814
94379
|
@complex model enableUserIncidentTaskResponseAction extends incidentTaskResponseAction {
|
|
93815
94380
|
}
|
|
93816
94381
|
|
|
@@ -93868,6 +94433,12 @@ namespace reference.`microsoft.graph.security` {
|
|
|
93868
94433
|
@complex model fabricAuditRecord extends auditData {
|
|
93869
94434
|
}
|
|
93870
94435
|
|
|
94436
|
+
@complex model fileAction extends automatedAction {
|
|
94437
|
+
deviceGroupNames: string[] | null;
|
|
94438
|
+
sha1Column: string | null;
|
|
94439
|
+
sha256Column: string | null;
|
|
94440
|
+
}
|
|
94441
|
+
|
|
93871
94442
|
@complex model fileDetails {
|
|
93872
94443
|
fileName: string | null;
|
|
93873
94444
|
filePath: string | null;
|
|
@@ -93922,9 +94493,12 @@ namespace reference.`microsoft.graph.security` {
|
|
|
93922
94493
|
@complex model filePlanSubcategory extends filePlanDescriptorBase {
|
|
93923
94494
|
}
|
|
93924
94495
|
|
|
94496
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
93925
94497
|
@complex model forceUserPasswordResetIncidentTaskResponseAction extends incidentTaskResponseAction {
|
|
93926
94498
|
}
|
|
93927
94499
|
|
|
94500
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
94501
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
93928
94502
|
@complex model forceUserPasswordResetResponseAction extends responseAction {
|
|
93929
94503
|
identifier: forceUserPasswordResetEntityIdentifier;
|
|
93930
94504
|
}
|
|
@@ -93977,9 +94551,12 @@ namespace reference.`microsoft.graph.security` {
|
|
|
93977
94551
|
resourceType: string | null;
|
|
93978
94552
|
}
|
|
93979
94553
|
|
|
94554
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
93980
94555
|
@complex model hardDeleteEmailIncidentTaskResponseAction extends incidentTaskResponseAction {
|
|
93981
94556
|
}
|
|
93982
94557
|
|
|
94558
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
94559
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
93983
94560
|
@complex model hardDeleteResponseAction extends responseAction {
|
|
93984
94561
|
identifier: emailEntityIdentifier;
|
|
93985
94562
|
}
|
|
@@ -94107,22 +94684,30 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94107
94684
|
url: string;
|
|
94108
94685
|
}
|
|
94109
94686
|
|
|
94687
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
94110
94688
|
@abstract
|
|
94111
94689
|
@complex model impactedAsset {
|
|
94112
94690
|
}
|
|
94113
94691
|
|
|
94692
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
94693
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
94114
94694
|
@complex model impactedDeviceAsset extends impactedAsset {
|
|
94115
94695
|
identifier: deviceAssetIdentifier;
|
|
94116
94696
|
}
|
|
94117
94697
|
|
|
94698
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
94699
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
94118
94700
|
@complex model impactedMailboxAsset extends impactedAsset {
|
|
94119
94701
|
identifier: mailboxAssetIdentifier;
|
|
94120
94702
|
}
|
|
94121
94703
|
|
|
94704
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
94705
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
94122
94706
|
@complex model impactedUserAsset extends impactedAsset {
|
|
94123
94707
|
identifier: userAssetIdentifier;
|
|
94124
94708
|
}
|
|
94125
94709
|
|
|
94710
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
94126
94711
|
@abstract
|
|
94127
94712
|
@complex model incidentTaskResponseAction extends responseAction {
|
|
94128
94713
|
identifierValue: string;
|
|
@@ -94144,6 +94729,8 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94144
94729
|
@complex model informationWorkerProtectionAuditRecord extends auditData {
|
|
94145
94730
|
}
|
|
94146
94731
|
|
|
94732
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
94733
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
94147
94734
|
@complex model initiateInvestigationResponseAction extends responseAction {
|
|
94148
94735
|
identifier: deviceIdEntityIdentifier;
|
|
94149
94736
|
}
|
|
@@ -94232,10 +94819,17 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94232
94819
|
@complex model irmUserDefinedDetectionRecord extends auditData {
|
|
94233
94820
|
}
|
|
94234
94821
|
|
|
94822
|
+
@complex model isolateDeviceAction extends deviceAction {
|
|
94823
|
+
isolationType: isolationType;
|
|
94824
|
+
}
|
|
94825
|
+
|
|
94826
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
94235
94827
|
@complex model isolateDeviceIncidentTaskResponseAction extends incidentTaskResponseAction {
|
|
94236
94828
|
isolationType: isolationType;
|
|
94237
94829
|
}
|
|
94238
94830
|
|
|
94831
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
94832
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
94239
94833
|
@complex model isolateDeviceResponseAction extends responseAction {
|
|
94240
94834
|
identifier: deviceIdEntityIdentifier;
|
|
94241
94835
|
isolationType: isolationType;
|
|
@@ -94447,9 +95041,12 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94447
95041
|
@complex model mapgRemediationAuditRecord extends auditData {
|
|
94448
95042
|
}
|
|
94449
95043
|
|
|
95044
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
94450
95045
|
@complex model markUserAsCompromisedIncidentTaskResponseAction extends incidentTaskResponseAction {
|
|
94451
95046
|
}
|
|
94452
95047
|
|
|
95048
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
95049
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
94453
95050
|
@complex model markUserAsCompromisedResponseAction extends responseAction {
|
|
94454
95051
|
identifier: markUserAsCompromisedEntityIdentifier;
|
|
94455
95052
|
}
|
|
@@ -94720,20 +95317,36 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94720
95317
|
@complex model mipLabelAuditRecord extends auditData {
|
|
94721
95318
|
}
|
|
94722
95319
|
|
|
95320
|
+
@complex model mitreTactic {
|
|
95321
|
+
tactic: string;
|
|
95322
|
+
techniques: mitreTechnique[];
|
|
95323
|
+
}
|
|
95324
|
+
|
|
95325
|
+
@complex model mitreTechnique {
|
|
95326
|
+
subTechniques: string[] | null;
|
|
95327
|
+
technique: string;
|
|
95328
|
+
}
|
|
95329
|
+
|
|
94723
95330
|
/**
|
|
94724
95331
|
* Audit data for MOS Agent Info events.
|
|
94725
95332
|
*/
|
|
94726
95333
|
@complex model mosAgentInfoRecord extends auditData {
|
|
94727
95334
|
}
|
|
94728
95335
|
|
|
95336
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
95337
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
94729
95338
|
@complex model moveToDeletedItemsResponseAction extends responseAction {
|
|
94730
95339
|
identifier: emailEntityIdentifier;
|
|
94731
95340
|
}
|
|
94732
95341
|
|
|
95342
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
95343
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
94733
95344
|
@complex model moveToInboxResponseAction extends responseAction {
|
|
94734
95345
|
identifier: emailEntityIdentifier;
|
|
94735
95346
|
}
|
|
94736
95347
|
|
|
95348
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
95349
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
94737
95350
|
@complex model moveToJunkResponseAction extends responseAction {
|
|
94738
95351
|
identifier: emailEntityIdentifier;
|
|
94739
95352
|
}
|
|
@@ -94880,7 +95493,12 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94880
95493
|
}
|
|
94881
95494
|
|
|
94882
95495
|
@complex model organizationalScope {
|
|
95496
|
+
deviceGroups: string[] | null;
|
|
95497
|
+
|
|
95498
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
94883
95499
|
scopeNames: string[] | null;
|
|
95500
|
+
|
|
95501
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
94884
95502
|
scopeType: scopeType;
|
|
94885
95503
|
}
|
|
94886
95504
|
|
|
@@ -95262,6 +95880,8 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95262
95880
|
}
|
|
95263
95881
|
|
|
95264
95882
|
@complex model queryCondition {
|
|
95883
|
+
|
|
95884
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
95265
95885
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
95266
95886
|
queryText: string;
|
|
95267
95887
|
}
|
|
@@ -95337,6 +95957,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95337
95957
|
@complex model reportSubmissionResultDetail extends auditData {
|
|
95338
95958
|
}
|
|
95339
95959
|
|
|
95960
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
95340
95961
|
@complex model requireSignInIncidentTaskResponseAction extends incidentTaskResponseAction {
|
|
95341
95962
|
}
|
|
95342
95963
|
|
|
@@ -95347,13 +95968,17 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95347
95968
|
resourceIdentifier: string | null;
|
|
95348
95969
|
}
|
|
95349
95970
|
|
|
95971
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
95350
95972
|
@abstract
|
|
95351
95973
|
@complex model responseAction {
|
|
95352
95974
|
}
|
|
95353
95975
|
|
|
95976
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
95354
95977
|
@complex model restrictAppExecutionIncidentTaskResponseAction extends incidentTaskResponseAction {
|
|
95355
95978
|
}
|
|
95356
95979
|
|
|
95980
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
95981
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
95357
95982
|
@complex model restrictAppExecutionResponseAction extends responseAction {
|
|
95358
95983
|
identifier: deviceIdEntityIdentifier;
|
|
95359
95984
|
}
|
|
@@ -95393,17 +96018,26 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95393
96018
|
}
|
|
95394
96019
|
|
|
95395
96020
|
@complex model ruleSchedule {
|
|
96021
|
+
frequency: duration;
|
|
96022
|
+
|
|
96023
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
95396
96024
|
nextRunDateTime: offsetDateTime | null;
|
|
95397
|
-
|
|
96025
|
+
|
|
96026
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
96027
|
+
period: string | null;
|
|
95398
96028
|
}
|
|
95399
96029
|
|
|
96030
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
95400
96031
|
@complex model runAntivirusScanIncidentTaskResponseAction extends incidentTaskResponseAction {
|
|
95401
96032
|
}
|
|
95402
96033
|
|
|
96034
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
96035
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
95403
96036
|
@complex model runAntivirusScanResponseAction extends responseAction {
|
|
95404
96037
|
identifier: deviceIdEntityIdentifier;
|
|
95405
96038
|
}
|
|
95406
96039
|
|
|
96040
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
95407
96041
|
@complex model runDetails {
|
|
95408
96042
|
errorCode: huntingRuleErrorCode | null;
|
|
95409
96043
|
failureReason: string | null;
|
|
@@ -95692,9 +96326,12 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95692
96326
|
@complex model skypeForBusinessUsersBlockedAuditRecord extends auditData {
|
|
95693
96327
|
}
|
|
95694
96328
|
|
|
96329
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
95695
96330
|
@complex model softDeleteIncidentTaskResponseAction extends incidentTaskResponseAction {
|
|
95696
96331
|
}
|
|
95697
96332
|
|
|
96333
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
96334
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
95698
96335
|
@complex model softDeleteResponseAction extends responseAction {
|
|
95699
96336
|
identifier: emailEntityIdentifier;
|
|
95700
96337
|
}
|
|
@@ -95717,10 +96354,18 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95717
96354
|
surname: string | null;
|
|
95718
96355
|
}
|
|
95719
96356
|
|
|
96357
|
+
@complex model stopAndQuarantineFileAction extends automatedAction {
|
|
96358
|
+
deviceIdColumn: string;
|
|
96359
|
+
sha1Column: string;
|
|
96360
|
+
}
|
|
96361
|
+
|
|
96362
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
95720
96363
|
@complex model stopAndQuarantineFileIncidentTaskResponseAction extends incidentTaskResponseAction {
|
|
95721
96364
|
deviceId: string | null;
|
|
95722
96365
|
}
|
|
95723
96366
|
|
|
96367
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
96368
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
95724
96369
|
@complex model stopAndQuarantineFileResponseAction extends responseAction {
|
|
95725
96370
|
identifier: stopAndQuarantineFileEntityIdentifier;
|
|
95726
96371
|
}
|
|
@@ -95965,6 +96610,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95965
96610
|
@complex model unifiedSimulationSummaryAuditRecord extends auditData {
|
|
95966
96611
|
}
|
|
95967
96612
|
|
|
96613
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
95968
96614
|
@complex model unIsolateDeviceIncidentTaskResponseAction extends incidentTaskResponseAction {
|
|
95969
96615
|
}
|
|
95970
96616
|
|
|
@@ -95980,6 +96626,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95980
96626
|
@complex model universalPrintPrintJobAuditRecord extends auditData {
|
|
95981
96627
|
}
|
|
95982
96628
|
|
|
96629
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
95983
96630
|
@complex model unRestrictAppExecutionIncidentTaskResponseAction extends incidentTaskResponseAction {
|
|
95984
96631
|
}
|
|
95985
96632
|
|
|
@@ -96252,6 +96899,16 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96252
96899
|
@complex model yammerUserHidingAuditRecord extends auditData {
|
|
96253
96900
|
}
|
|
96254
96901
|
|
|
96902
|
+
@entity model accountEntityMapping extends entityMapping {
|
|
96903
|
+
aadUserIdColumn: string | null;
|
|
96904
|
+
dnsDomainColumn: string | null;
|
|
96905
|
+
nameColumn: string | null;
|
|
96906
|
+
ntDomainColumn: string | null;
|
|
96907
|
+
sidColumn: string | null;
|
|
96908
|
+
upnColumn: string | null;
|
|
96909
|
+
upnSuffixColumn: string | null;
|
|
96910
|
+
}
|
|
96911
|
+
|
|
96255
96912
|
@entity model aggregatedEnvironment extends MsGraph.SharedModels.entity {
|
|
96256
96913
|
count: int32;
|
|
96257
96914
|
@computed @key kind: string;
|
|
@@ -96297,6 +96954,29 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96297
96954
|
title: string | null;
|
|
96298
96955
|
}
|
|
96299
96956
|
|
|
96957
|
+
@entity model alertTemplate extends reference.`microsoft.graph`.entity {
|
|
96958
|
+
|
|
96959
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
96960
|
+
category: string | null;
|
|
96961
|
+
customDetails: alertCustomDetails | null;
|
|
96962
|
+
description: string;
|
|
96963
|
+
|
|
96964
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
96965
|
+
impactedAssets: impactedAsset[];
|
|
96966
|
+
|
|
96967
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
96968
|
+
mitreTechniques: string[] | null;
|
|
96969
|
+
recommendedActions: string | null;
|
|
96970
|
+
severity: alertSeverity;
|
|
96971
|
+
tactics: mitreTactic[] | null;
|
|
96972
|
+
title: string;
|
|
96973
|
+
@contains entityMappings: entityMappingConfiguration;
|
|
96974
|
+
}
|
|
96975
|
+
|
|
96976
|
+
@entity model amazonResourceEntityMapping extends entityMapping {
|
|
96977
|
+
amazonResourceIdColumn: string;
|
|
96978
|
+
}
|
|
96979
|
+
|
|
96300
96980
|
@entity model analyzedEmail extends reference.`microsoft.graph`.entity {
|
|
96301
96981
|
alertIds: string[] | null;
|
|
96302
96982
|
attachments: analyzedEmailAttachment[] | null;
|
|
@@ -96407,6 +97087,10 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96407
97087
|
isAutomatic: boolean;
|
|
96408
97088
|
}
|
|
96409
97089
|
|
|
97090
|
+
@entity model azureResourceEntityMapping extends entityMapping {
|
|
97091
|
+
resourceIdColumn: string;
|
|
97092
|
+
}
|
|
97093
|
+
|
|
96410
97094
|
@abstract
|
|
96411
97095
|
@entity model case extends reference.`microsoft.graph`.entity {
|
|
96412
97096
|
@computed createdDateTime: offsetDateTime | null;
|
|
@@ -96456,6 +97140,11 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96456
97140
|
supportedTrafficTypes: trafficType[];
|
|
96457
97141
|
}
|
|
96458
97142
|
|
|
97143
|
+
@entity model cloudApplicationEntityMapping extends entityMapping {
|
|
97144
|
+
appIdColumn: string | null;
|
|
97145
|
+
nameColumn: string | null;
|
|
97146
|
+
}
|
|
97147
|
+
|
|
96459
97148
|
@abstract
|
|
96460
97149
|
@entity model collaborationRoot extends reference.`microsoft.graph`.entity {
|
|
96461
97150
|
@contains analyzedEmails: analyzedEmail[];
|
|
@@ -96498,12 +97187,35 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96498
97187
|
@entity model departmentTemplate extends filePlanDescriptorTemplate {
|
|
96499
97188
|
}
|
|
96500
97189
|
|
|
96501
|
-
@entity model
|
|
96502
|
-
|
|
97190
|
+
@entity model detectionAction extends reference.`microsoft.graph`.entity {
|
|
97191
|
+
automatedActions: automatedActionSet | null;
|
|
97192
|
+
organizationalScope: organizationalScope | null;
|
|
97193
|
+
|
|
97194
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
97195
|
+
responseActions: responseAction[] | null;
|
|
97196
|
+
@contains alertTemplate: alertTemplate;
|
|
97197
|
+
}
|
|
97198
|
+
|
|
97199
|
+
@entity model detectionRule extends reference.`microsoft.graph`.entity {
|
|
97200
|
+
createdBy: string;
|
|
97201
|
+
@computed createdDateTime: offsetDateTime;
|
|
97202
|
+
description: string | null;
|
|
97203
|
+
|
|
97204
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
96503
97205
|
detectorId: string | null;
|
|
97206
|
+
displayName: string;
|
|
97207
|
+
|
|
97208
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
97209
|
+
isEnabled: boolean;
|
|
97210
|
+
lastModifiedBy: string;
|
|
97211
|
+
@computed lastModifiedDateTime: offsetDateTime;
|
|
97212
|
+
|
|
97213
|
+
// Warning: Malformed version string '2025-01' detected.
|
|
96504
97214
|
lastRunDetails: runDetails | null;
|
|
96505
|
-
queryCondition: queryCondition
|
|
96506
|
-
schedule: ruleSchedule
|
|
97215
|
+
queryCondition: queryCondition;
|
|
97216
|
+
schedule: ruleSchedule;
|
|
97217
|
+
status: detectionRuleStatus;
|
|
97218
|
+
@contains detectionAction: detectionAction | null;
|
|
96507
97219
|
}
|
|
96508
97220
|
|
|
96509
97221
|
@entity model discoveredCloudAppDetail extends reference.`microsoft.graph`.entity {
|
|
@@ -96629,6 +97341,12 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96629
97341
|
@computed @key stageNumber: string;
|
|
96630
97342
|
}
|
|
96631
97343
|
|
|
97344
|
+
@entity model dnsEntityMapping extends entityMapping {
|
|
97345
|
+
domainNameColumn: string;
|
|
97346
|
+
hostIpAddressColumn: string;
|
|
97347
|
+
serverIpColumn: string;
|
|
97348
|
+
}
|
|
97349
|
+
|
|
96632
97350
|
@entity model ediscoveryAddToReviewSetOperation extends caseOperation {
|
|
96633
97351
|
additionalDataOptions: additionalDataOptions | null;
|
|
96634
97352
|
cloudAttachmentVersion: cloudAttachmentVersion | null;
|
|
@@ -96822,6 +97540,37 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96822
97540
|
@contains devices: discoveredCloudAppDevice[];
|
|
96823
97541
|
}
|
|
96824
97542
|
|
|
97543
|
+
@entity model entityDefinitionInput extends MsGraph.SharedModels.entity {
|
|
97544
|
+
@computed @key entityIdentifier: string;
|
|
97545
|
+
entityType: manualAlertEntityType;
|
|
97546
|
+
identifierValue: string;
|
|
97547
|
+
role: entityDefinitionInputRole;
|
|
97548
|
+
}
|
|
97549
|
+
|
|
97550
|
+
@abstract
|
|
97551
|
+
@entity model entityMapping extends reference.`microsoft.graph`.entity {
|
|
97552
|
+
}
|
|
97553
|
+
|
|
97554
|
+
@entity model entityMappingConfiguration extends reference.`microsoft.graph`.entity {
|
|
97555
|
+
@contains accounts: accountEntityMapping[];
|
|
97556
|
+
@contains amazonResources: amazonResourceEntityMapping[];
|
|
97557
|
+
@contains azureResources: azureResourceEntityMapping[];
|
|
97558
|
+
@contains cloudApplications: cloudApplicationEntityMapping[];
|
|
97559
|
+
@contains dns: dnsEntityMapping[];
|
|
97560
|
+
@contains files: fileEntityMapping[];
|
|
97561
|
+
@contains googleCloudResources: googleCloudResourceEntityMapping[];
|
|
97562
|
+
@contains hosts: hostEntityMapping[];
|
|
97563
|
+
@contains ips: ipEntityMapping[];
|
|
97564
|
+
@contains mailboxes: mailboxEntityMapping[];
|
|
97565
|
+
@contains mailClusters: mailClusterEntityMapping[];
|
|
97566
|
+
@contains mailMessages: mailMessageEntityMapping[];
|
|
97567
|
+
@contains oAuthApplications: oAuthApplicationEntityMapping[];
|
|
97568
|
+
@contains processes: processEntityMapping[];
|
|
97569
|
+
@contains registryValues: registryValueEntityMapping[];
|
|
97570
|
+
@contains securityGroups: securityGroupEntityMapping[];
|
|
97571
|
+
@contains urls: urlEntityMapping[];
|
|
97572
|
+
}
|
|
97573
|
+
|
|
96825
97574
|
@entity model environment extends reference.`microsoft.graph`.entity {
|
|
96826
97575
|
kind: environmentKind;
|
|
96827
97576
|
}
|
|
@@ -96845,6 +97594,12 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96845
97594
|
fileContent: string;
|
|
96846
97595
|
}
|
|
96847
97596
|
|
|
97597
|
+
@entity model fileEntityMapping extends entityMapping {
|
|
97598
|
+
nameColumn: string | null;
|
|
97599
|
+
sha1Column: string | null;
|
|
97600
|
+
sha256Column: string | null;
|
|
97601
|
+
}
|
|
97602
|
+
|
|
96848
97603
|
@entity model filePlanDescriptor extends reference.`microsoft.graph`.entity {
|
|
96849
97604
|
authority: filePlanAuthority | null;
|
|
96850
97605
|
category: filePlanAppliedCategory | null;
|
|
@@ -96875,6 +97630,10 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96875
97630
|
fileUrl: string;
|
|
96876
97631
|
}
|
|
96877
97632
|
|
|
97633
|
+
@entity model googleCloudResourceEntityMapping extends entityMapping {
|
|
97634
|
+
fullResourceNameColumn: string;
|
|
97635
|
+
}
|
|
97636
|
+
|
|
96878
97637
|
@entity model healthIssue extends reference.`microsoft.graph`.entity {
|
|
96879
97638
|
additionalInformation: string[];
|
|
96880
97639
|
@computed createdDateTime: offsetDateTime;
|
|
@@ -96927,6 +97686,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
96927
97686
|
@references host: host;
|
|
96928
97687
|
}
|
|
96929
97688
|
|
|
97689
|
+
@entity model hostEntityMapping extends entityMapping {
|
|
97690
|
+
deviceIdColumn: string | null;
|
|
97691
|
+
dnsDomainColumn: string | null;
|
|
97692
|
+
nameColumn: string | null;
|
|
97693
|
+
netBiosNameColumn: string | null;
|
|
97694
|
+
ntDomainColumn: string | null;
|
|
97695
|
+
}
|
|
97696
|
+
|
|
96930
97697
|
@entity model hostname extends host {
|
|
96931
97698
|
registrant: string | null;
|
|
96932
97699
|
registrar: string | null;
|
|
@@ -97079,6 +97846,11 @@ namespace reference.`microsoft.graph.security` {
|
|
|
97079
97846
|
netblock: string | null;
|
|
97080
97847
|
}
|
|
97081
97848
|
|
|
97849
|
+
@entity model ipEntityMapping extends entityMapping {
|
|
97850
|
+
addressColumn: string | null;
|
|
97851
|
+
scopeColumn: string | null;
|
|
97852
|
+
}
|
|
97853
|
+
|
|
97082
97854
|
@entity model labelsRoot extends reference.`microsoft.graph`.entity {
|
|
97083
97855
|
@contains authorities: authorityTemplate[];
|
|
97084
97856
|
@contains categories: categoryTemplate[];
|
|
@@ -97088,11 +97860,38 @@ namespace reference.`microsoft.graph.security` {
|
|
|
97088
97860
|
@contains retentionLabels: retentionLabel[];
|
|
97089
97861
|
}
|
|
97090
97862
|
|
|
97863
|
+
@entity model mailboxEntityMapping extends entityMapping {
|
|
97864
|
+
primaryAddressColumn: string;
|
|
97865
|
+
}
|
|
97866
|
+
|
|
97867
|
+
@entity model mailClusterEntityMapping extends entityMapping {
|
|
97868
|
+
queryColumn: string;
|
|
97869
|
+
sourceColumn: string;
|
|
97870
|
+
}
|
|
97871
|
+
|
|
97872
|
+
@entity model mailMessageEntityMapping extends entityMapping {
|
|
97873
|
+
networkMessageIdColumn: string;
|
|
97874
|
+
recipientColumn: string;
|
|
97875
|
+
senderColumn: string;
|
|
97876
|
+
subjectColumn: string;
|
|
97877
|
+
}
|
|
97878
|
+
|
|
97879
|
+
@entity model manualAlert extends alert {
|
|
97880
|
+
isExcludedFromCorrelation: boolean;
|
|
97881
|
+
linkToIncident: int64 | null;
|
|
97882
|
+
sentinelWorkspace: string | null;
|
|
97883
|
+
@contains entityDefinitions: entityDefinitionInput[];
|
|
97884
|
+
}
|
|
97885
|
+
|
|
97091
97886
|
@entity model networkAdapter extends reference.`microsoft.graph`.entity {
|
|
97092
97887
|
isEnabled: boolean | null;
|
|
97093
97888
|
name: string | null;
|
|
97094
97889
|
}
|
|
97095
97890
|
|
|
97891
|
+
@entity model oAuthApplicationEntityMapping extends entityMapping {
|
|
97892
|
+
oAuthAppIdColumn: string;
|
|
97893
|
+
}
|
|
97894
|
+
|
|
97096
97895
|
@entity model passiveDnsRecord extends artifact {
|
|
97097
97896
|
collectedDateTime: offsetDateTime;
|
|
97098
97897
|
firstSeenDateTime: offsetDateTime;
|
|
@@ -97113,14 +97912,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
97113
97912
|
status: policyStatus | null;
|
|
97114
97913
|
}
|
|
97115
97914
|
|
|
97116
|
-
@
|
|
97117
|
-
|
|
97118
|
-
|
|
97119
|
-
|
|
97120
|
-
|
|
97121
|
-
|
|
97122
|
-
|
|
97123
|
-
|
|
97915
|
+
@entity model processEntityMapping extends entityMapping {
|
|
97916
|
+
sha1Column: string | null;
|
|
97917
|
+
sha256Column: string | null;
|
|
97918
|
+
}
|
|
97919
|
+
|
|
97920
|
+
@entity model registryValueEntityMapping extends entityMapping {
|
|
97921
|
+
keyColumn: string;
|
|
97922
|
+
valueNameColumn: string;
|
|
97124
97923
|
}
|
|
97125
97924
|
|
|
97126
97925
|
@entity model retentionEvent extends reference.`microsoft.graph`.entity {
|
|
@@ -97186,6 +97985,12 @@ namespace reference.`microsoft.graph.security` {
|
|
|
97186
97985
|
@contains informationProtection: informationProtection | null;
|
|
97187
97986
|
}
|
|
97188
97987
|
|
|
97988
|
+
@entity model securityGroupEntityMapping extends entityMapping {
|
|
97989
|
+
distinguishedNameColumn: string | null;
|
|
97990
|
+
objectIdColumn: string | null;
|
|
97991
|
+
sidColumn: string | null;
|
|
97992
|
+
}
|
|
97993
|
+
|
|
97189
97994
|
@entity model sensitivityLabel extends reference.`microsoft.graph`.entity {
|
|
97190
97995
|
color: string | null;
|
|
97191
97996
|
contentFormats: string[] | null;
|
|
@@ -97333,6 +98138,10 @@ namespace reference.`microsoft.graph.security` {
|
|
|
97333
98138
|
@references group: reference.`microsoft.graph`.group;
|
|
97334
98139
|
}
|
|
97335
98140
|
|
|
98141
|
+
@entity model urlEntityMapping extends entityMapping {
|
|
98142
|
+
addressColumn: string;
|
|
98143
|
+
}
|
|
98144
|
+
|
|
97336
98145
|
@entity model urlThreatSubmission extends threatSubmission {
|
|
97337
98146
|
webUrl: string;
|
|
97338
98147
|
}
|
|
@@ -97447,6 +98256,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
97447
98256
|
messageConversationExpansion: 64,
|
|
97448
98257
|
locationsWithoutHits: 256,
|
|
97449
98258
|
allItemsInFolder: 512,
|
|
98259
|
+
cloudNativeHtmlConversion: 1024,
|
|
97450
98260
|
}
|
|
97451
98261
|
|
|
97452
98262
|
@graphFlags
|
|
@@ -98358,6 +99168,13 @@ namespace reference.`microsoft.graph.security` {
|
|
|
98358
99168
|
unknownFutureValue: 10,
|
|
98359
99169
|
}
|
|
98360
99170
|
|
|
99171
|
+
enum detectionRuleStatus {
|
|
99172
|
+
enabled: 0,
|
|
99173
|
+
disabled: 1,
|
|
99174
|
+
autoDisabled: 2,
|
|
99175
|
+
unknownFutureValue: 3,
|
|
99176
|
+
}
|
|
99177
|
+
|
|
98361
99178
|
enum detectionSource {
|
|
98362
99179
|
`unknown`: 0,
|
|
98363
99180
|
microsoftDefenderForEndpoint: 1,
|
|
@@ -98474,6 +99291,12 @@ namespace reference.`microsoft.graph.security` {
|
|
|
98474
99291
|
unknownFutureValue: 4,
|
|
98475
99292
|
}
|
|
98476
99293
|
|
|
99294
|
+
enum entityDefinitionInputRole {
|
|
99295
|
+
impacted: 0,
|
|
99296
|
+
related: 1,
|
|
99297
|
+
unknownFutureValue: 99,
|
|
99298
|
+
}
|
|
99299
|
+
|
|
98477
99300
|
enum entityType {
|
|
98478
99301
|
userName: 1,
|
|
98479
99302
|
ipAddress: 2,
|
|
@@ -98959,6 +99782,27 @@ namespace reference.`microsoft.graph.security` {
|
|
|
98959
99782
|
unknownFutureValue: 31,
|
|
98960
99783
|
}
|
|
98961
99784
|
|
|
99785
|
+
enum manualAlertEntityType {
|
|
99786
|
+
user: 0,
|
|
99787
|
+
device: 1,
|
|
99788
|
+
file: 2,
|
|
99789
|
+
ip: 3,
|
|
99790
|
+
url: 4,
|
|
99791
|
+
cloudApplication: 5,
|
|
99792
|
+
mailbox: 6,
|
|
99793
|
+
securityGroup: 7,
|
|
99794
|
+
azureResource: 8,
|
|
99795
|
+
amazonResource: 9,
|
|
99796
|
+
googleCloudResource: 10,
|
|
99797
|
+
oAuthApplication: 11,
|
|
99798
|
+
emailMessage: 12,
|
|
99799
|
+
emailCluster: 13,
|
|
99800
|
+
process: 14,
|
|
99801
|
+
registryKey: 15,
|
|
99802
|
+
registryValue: 16,
|
|
99803
|
+
unknownFutureValue: 99,
|
|
99804
|
+
}
|
|
99805
|
+
|
|
98962
99806
|
@graphFlags
|
|
98963
99807
|
enum markUserAsCompromisedEntityIdentifier {
|
|
98964
99808
|
accountObjectId: 1,
|
|
@@ -99116,6 +99960,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
99116
99960
|
microsoftSentinel: 512,
|
|
99117
99961
|
microsoftInsiderRiskManagement: 1024,
|
|
99118
99962
|
microsoftThreatIntelligence: 2048,
|
|
99963
|
+
microsoftSecurityForAI: 4096,
|
|
99119
99964
|
}
|
|
99120
99965
|
|
|
99121
99966
|
enum serviceStatus {
|
|
@@ -100143,11 +100988,13 @@ namespace reference.`microsoft.graph.teamsAdministration` {
|
|
|
100143
100988
|
@publicNamespace("microsoft.graph.tenantgovernanceservices")
|
|
100144
100989
|
namespace reference.`microsoft.graph.tenantGovernanceServices` {
|
|
100145
100990
|
@complex model delegatedAdministrationRoleAssignment {
|
|
100991
|
+
groupDisplayName: string | null;
|
|
100146
100992
|
roleTemplates: roleTemplate[];
|
|
100147
100993
|
@references group: reference.`microsoft.graph`.group | null;
|
|
100148
100994
|
}
|
|
100149
100995
|
|
|
100150
100996
|
@complex model delegatedAdministrationRoleAssignmentSnapshot {
|
|
100997
|
+
groupDisplayName: string | null;
|
|
100151
100998
|
groupId: string;
|
|
100152
100999
|
roleTemplates: roleTemplate[];
|
|
100153
101000
|
}
|