@microsoft/typespec-msgraph-reference 1.0.9 → 1.0.11
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 +18 -0
- package/lib/Bleu/Beta/main.tsp +1011 -52
- package/lib/Bleu/V1.0/main.tsp +27 -2
- package/lib/Delos/Beta/main.tsp +1704 -51
- package/lib/Delos/V1.0/main.tsp +468 -1
- package/lib/Fairfax/Beta/main.tsp +865 -55
- package/lib/Fairfax/V1.0/main.tsp +93 -3
- package/lib/GovSG/Beta/main.tsp +28 -0
- package/lib/Mooncake/Beta/main.tsp +709 -52
- package/lib/Mooncake/V1.0/main.tsp +103 -3
- package/lib/Prod/Beta/main.tsp +1190 -332
- package/lib/Prod/V1.0/main.tsp +310 -2
- package/lib/USNat/Beta/main.tsp +145 -9
- package/lib/USNat/V1.0/main.tsp +91 -1
- package/lib/USSec/Beta/main.tsp +145 -9
- package/lib/USSec/V1.0/main.tsp +91 -1
- package/package.json +2 -2
package/lib/Delos/Beta/main.tsp
CHANGED
|
@@ -18,6 +18,8 @@ scalar binary; //TODO: Enables support for Edm.Binary
|
|
|
18
18
|
@privatePreviewDefinition("AgenticSP", "2025-04-14", "2025-07-13", "<theOwner>")
|
|
19
19
|
@deprecatedDefinition("beta:DisplayNameRename", "<ChangeLogCategory>", "2026-04-28", "2027-04-28", "The agentDisplayName property is deprecated. Use displayName instead.")
|
|
20
20
|
@deprecatedDefinition("beta:IdentityIDRename", "<ChangeLogCategory>", "2026-04-28", "2027-04-28", "The agentId property is deprecated. Use identityId instead.")
|
|
21
|
+
@deprecatedDefinition("Rv1MigrationDeprecation", "<ChangeLogCategory>", "2026-04-03", "2026-07-07", "This API is deprecated and will stop returning data on July 7, 2026. Use POST /deviceManagement/reports/getConfigurationPolicyDeviceSummaryReport instead.")
|
|
22
|
+
// Metadata item DeprecatedDefinition_Rv1MigrationDeprecation was already defined with a different value.
|
|
21
23
|
@deprecatedDefinition("DirectoryFeatureRolloutPolicies", "<ChangeLogCategory>", "2021-03-05", "2021-06-30", "Feature Rollout Policies have been grouped with other policies under /policies. The existing /directory/featureRolloutPolicies is deprecated and will stop returning data on 06/30/2021. Please use /policies/featureRolloutPolicies.")
|
|
22
24
|
@deprecatedDefinition("Removal", "<ChangeLogCategory>", "2023-12-05", "2025-12-05", "The users enum value is deprecated. Use specificPeople instead.")
|
|
23
25
|
// Metadata item DeprecatedDefinition_Removal was already defined with a different value.
|
|
@@ -916,6 +918,23 @@ namespace reference.`microsoft.graph` {
|
|
|
916
918
|
value: string | null;
|
|
917
919
|
}
|
|
918
920
|
|
|
921
|
+
@complex model approvalSettings {
|
|
922
|
+
approvalMode: string | null;
|
|
923
|
+
approvalStages: approvalStage[] | null;
|
|
924
|
+
isApprovalRequired: boolean | null;
|
|
925
|
+
isApprovalRequiredForExtension: boolean | null;
|
|
926
|
+
isRequestorJustificationRequired: boolean | null;
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
@complex model approvalStage {
|
|
930
|
+
approvalStageTimeOutInDays: int32 | null;
|
|
931
|
+
escalationApprovers: userSet[] | null;
|
|
932
|
+
escalationTimeInMinutes: int32 | null;
|
|
933
|
+
isApproverJustificationRequired: boolean | null;
|
|
934
|
+
isEscalationEnabled: boolean | null;
|
|
935
|
+
primaryApprovers: userSet[] | null;
|
|
936
|
+
}
|
|
937
|
+
|
|
919
938
|
@complex model assignedLabel {
|
|
920
939
|
displayName: string | null;
|
|
921
940
|
labelId: string | null;
|
|
@@ -926,6 +945,11 @@ namespace reference.`microsoft.graph` {
|
|
|
926
945
|
skuId: guid | null;
|
|
927
946
|
}
|
|
928
947
|
|
|
948
|
+
@complex model assignedPlaceMode extends placeMode {
|
|
949
|
+
assignedUserEmailAddress: string | null;
|
|
950
|
+
assignedUserId: string | null;
|
|
951
|
+
}
|
|
952
|
+
|
|
929
953
|
@complex model assignedPlan {
|
|
930
954
|
assignedDateTime: offsetDateTime | null;
|
|
931
955
|
capabilityStatus: string | null;
|
|
@@ -2135,6 +2159,20 @@ namespace reference.`microsoft.graph` {
|
|
|
2135
2159
|
value: string | null;
|
|
2136
2160
|
}
|
|
2137
2161
|
|
|
2162
|
+
/**
|
|
2163
|
+
* Represents an individual health check result for an NDES connector, containing the metric name and its current status.
|
|
2164
|
+
*/
|
|
2165
|
+
@complex model connectorHealthCheck {
|
|
2166
|
+
/**
|
|
2167
|
+
* The name of the health check metric being evaluated.
|
|
2168
|
+
*/
|
|
2169
|
+
metricName: connectorHealthCheckMetricName;
|
|
2170
|
+
/**
|
|
2171
|
+
* The current health status for this specific metric, based on error rate thresholds computed from recent connector uploads.
|
|
2172
|
+
*/
|
|
2173
|
+
status: ndesConnectorHealthStatus;
|
|
2174
|
+
}
|
|
2175
|
+
|
|
2138
2176
|
/**
|
|
2139
2177
|
* Represent connector status
|
|
2140
2178
|
*/
|
|
@@ -2230,6 +2268,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2230
2268
|
* Remote help - response we provide back to the helper after successfully creating an ACS session
|
|
2231
2269
|
*/
|
|
2232
2270
|
@complex model createRemoteHelpSessionResponse {
|
|
2271
|
+
/**
|
|
2272
|
+
* The current state of session recording. Null when the tenant is not flighted for session recording.
|
|
2273
|
+
*/
|
|
2274
|
+
remoteHelpRecordingState: remoteHelpRecordingState | null;
|
|
2233
2275
|
/**
|
|
2234
2276
|
* The unique identifier for a session
|
|
2235
2277
|
*/
|
|
@@ -2789,6 +2831,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2789
2831
|
* 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.
|
|
2790
2832
|
*/
|
|
2791
2833
|
rulesContent: binary | null;
|
|
2834
|
+
/**
|
|
2835
|
+
* Indicates the interval, in minutes, at which the custom compliance script is evaluated on the device. Allowed range from 1 to 480. Nullable.
|
|
2836
|
+
*/
|
|
2837
|
+
runIntervalInMinutes: int32 | null;
|
|
2792
2838
|
}
|
|
2793
2839
|
|
|
2794
2840
|
/**
|
|
@@ -4931,6 +4977,9 @@ namespace reference.`microsoft.graph` {
|
|
|
4931
4977
|
objectId: string | null;
|
|
4932
4978
|
}
|
|
4933
4979
|
|
|
4980
|
+
@complex model dropInPlaceMode extends placeMode {
|
|
4981
|
+
}
|
|
4982
|
+
|
|
4934
4983
|
/**
|
|
4935
4984
|
* The home button configuration base class used to identify the available options
|
|
4936
4985
|
*/
|
|
@@ -5055,6 +5104,11 @@ namespace reference.`microsoft.graph` {
|
|
|
5055
5104
|
name: string | null;
|
|
5056
5105
|
}
|
|
5057
5106
|
|
|
5107
|
+
@open
|
|
5108
|
+
@complex model emailIdentity extends identity {
|
|
5109
|
+
email: string | null;
|
|
5110
|
+
}
|
|
5111
|
+
|
|
5058
5112
|
/**
|
|
5059
5113
|
* The embedded SIM activation code as provided by the mobile operator.
|
|
5060
5114
|
*/
|
|
@@ -5257,6 +5311,12 @@ namespace reference.`microsoft.graph` {
|
|
|
5257
5311
|
qualityUpdateRelease: string;
|
|
5258
5312
|
}
|
|
5259
5313
|
|
|
5314
|
+
@complex model expirationPattern {
|
|
5315
|
+
`duration`: duration | null;
|
|
5316
|
+
endDateTime: offsetDateTime | null;
|
|
5317
|
+
type: expirationPatternType | null;
|
|
5318
|
+
}
|
|
5319
|
+
|
|
5260
5320
|
@complex model expressionEvaluationDetails {
|
|
5261
5321
|
expression: string | null;
|
|
5262
5322
|
expressionEvaluationDetails: expressionEvaluationDetails[] | null;
|
|
@@ -5387,12 +5447,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5387
5447
|
itemMajorVersionLimit: int32 | null;
|
|
5388
5448
|
}
|
|
5389
5449
|
|
|
5390
|
-
@complex model fileStorageContainerTypeAgentSettings {
|
|
5391
|
-
chatEmbedAllowedHosts: string[];
|
|
5392
|
-
}
|
|
5393
|
-
|
|
5394
5450
|
@complex model fileStorageContainerTypeRegistrationSettings {
|
|
5395
|
-
agent: fileStorageContainerTypeAgentSettings | null;
|
|
5396
5451
|
isDiscoverabilityEnabled: boolean | null;
|
|
5397
5452
|
isItemVersioningEnabled: boolean | null;
|
|
5398
5453
|
isSearchEnabled: boolean | null;
|
|
@@ -5404,7 +5459,6 @@ namespace reference.`microsoft.graph` {
|
|
|
5404
5459
|
}
|
|
5405
5460
|
|
|
5406
5461
|
@complex model fileStorageContainerTypeSettings {
|
|
5407
|
-
agent: fileStorageContainerTypeAgentSettings | null;
|
|
5408
5462
|
consumingTenantOverridables: fileStorageContainerTypeSettingsOverride | null;
|
|
5409
5463
|
isDiscoverabilityEnabled: boolean | null;
|
|
5410
5464
|
isItemVersioningEnabled: boolean | null;
|
|
@@ -5507,6 +5561,11 @@ namespace reference.`microsoft.graph` {
|
|
|
5507
5561
|
mailNickname: string | null;
|
|
5508
5562
|
}
|
|
5509
5563
|
|
|
5564
|
+
@complex model groupMembers extends userSet {
|
|
5565
|
+
description: string | null;
|
|
5566
|
+
id: string | null;
|
|
5567
|
+
}
|
|
5568
|
+
|
|
5510
5569
|
@complex model groupPolicyPresentationDropdownListItem {
|
|
5511
5570
|
/**
|
|
5512
5571
|
* Localized display name for the drop-down list item.
|
|
@@ -5802,6 +5861,10 @@ namespace reference.`microsoft.graph` {
|
|
|
5802
5861
|
enableIdTokenIssuance: boolean | null;
|
|
5803
5862
|
}
|
|
5804
5863
|
|
|
5864
|
+
@complex model importBuildingMapSetting {
|
|
5865
|
+
isDryRun: boolean;
|
|
5866
|
+
}
|
|
5867
|
+
|
|
5805
5868
|
@complex model importedWindowsAutopilotDeviceIdentityState {
|
|
5806
5869
|
/**
|
|
5807
5870
|
* Device error code reported by Device Directory Service(DDS).
|
|
@@ -6143,10 +6206,18 @@ namespace reference.`microsoft.graph` {
|
|
|
6143
6206
|
* 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.
|
|
6144
6207
|
*/
|
|
6145
6208
|
associatedDomainsDirectDownloadAllowed: boolean | null;
|
|
6209
|
+
cellularSliceConfigurationId: string | null;
|
|
6210
|
+
contentFilterConfigurationId: string | null;
|
|
6211
|
+
/**
|
|
6212
|
+
* The unique identifier of the DDM app configuration to associate with the app.
|
|
6213
|
+
*/
|
|
6214
|
+
ddmAppConfigId: guid | null;
|
|
6215
|
+
dnsProxyConfigurationId: string | null;
|
|
6146
6216
|
/**
|
|
6147
6217
|
* 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.
|
|
6148
6218
|
*/
|
|
6149
6219
|
preventManagedAppBackup: boolean | null;
|
|
6220
|
+
relayConfigurationId: string | null;
|
|
6150
6221
|
/**
|
|
6151
6222
|
* 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.
|
|
6152
6223
|
*/
|
|
@@ -6157,6 +6228,122 @@ namespace reference.`microsoft.graph` {
|
|
|
6157
6228
|
vpnConfigurationId: string | null;
|
|
6158
6229
|
}
|
|
6159
6230
|
|
|
6231
|
+
/**
|
|
6232
|
+
* Contains properties used to assign an iOS Declarative Device Management (DDM) Store App to a group.
|
|
6233
|
+
*/
|
|
6234
|
+
@complex model iosDdmStoreAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
6235
|
+
/**
|
|
6236
|
+
* Specifies whether the app may be downloaded over cellular connections. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
6237
|
+
*/
|
|
6238
|
+
allowDownloadsOverCellular: ddmAppAllowDownloadsOverCellular | null;
|
|
6239
|
+
/**
|
|
6240
|
+
* Domain names to associate with the app
|
|
6241
|
+
*/
|
|
6242
|
+
associatedDomains: string[] | null;
|
|
6243
|
+
/**
|
|
6244
|
+
* 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.
|
|
6245
|
+
*/
|
|
6246
|
+
associatedDomainsDirectDownloadAllowed: boolean | null;
|
|
6247
|
+
/**
|
|
6248
|
+
* Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
6249
|
+
*/
|
|
6250
|
+
automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
|
|
6251
|
+
/**
|
|
6252
|
+
* 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'.
|
|
6253
|
+
*/
|
|
6254
|
+
cellularSliceConfigurationId: string | null;
|
|
6255
|
+
/**
|
|
6256
|
+
* The unique identifier of the content filter to associate with the app.
|
|
6257
|
+
*/
|
|
6258
|
+
contentFilterConfigurationId: string | null;
|
|
6259
|
+
/**
|
|
6260
|
+
* The unique identifier of the DNS proxy to associate with the app.
|
|
6261
|
+
*/
|
|
6262
|
+
dnsProxyConfigurationId: string | null;
|
|
6263
|
+
/**
|
|
6264
|
+
* 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.
|
|
6265
|
+
*/
|
|
6266
|
+
preventManagedAppBackup: boolean | null;
|
|
6267
|
+
/**
|
|
6268
|
+
* The unique identifier of the relay to associate with the app.
|
|
6269
|
+
*/
|
|
6270
|
+
relayConfigurationId: string | null;
|
|
6271
|
+
/**
|
|
6272
|
+
* 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.
|
|
6273
|
+
*/
|
|
6274
|
+
tapToPayScreenLockEnabled: boolean | null;
|
|
6275
|
+
/**
|
|
6276
|
+
* 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.
|
|
6277
|
+
*/
|
|
6278
|
+
version: int32 | null;
|
|
6279
|
+
/**
|
|
6280
|
+
* The unique identifier of the VPN Configuration to apply to the app.
|
|
6281
|
+
*/
|
|
6282
|
+
vpnConfigurationId: string | null;
|
|
6283
|
+
}
|
|
6284
|
+
|
|
6285
|
+
/**
|
|
6286
|
+
* Contains properties used to assign an iOS Declarative Device Management (DDM) VPP mobile app to a group.
|
|
6287
|
+
*/
|
|
6288
|
+
@complex model iosDdmVppAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
6289
|
+
/**
|
|
6290
|
+
* Specifies whether the app may be downloaded over cellular connections. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
6291
|
+
*/
|
|
6292
|
+
allowDownloadsOverCellular: ddmAppAllowDownloadsOverCellular | null;
|
|
6293
|
+
/**
|
|
6294
|
+
* Domain names to associate with the app
|
|
6295
|
+
*/
|
|
6296
|
+
associatedDomains: string[] | null;
|
|
6297
|
+
/**
|
|
6298
|
+
* 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.
|
|
6299
|
+
*/
|
|
6300
|
+
associatedDomainsDirectDownloadAllowed: boolean | null;
|
|
6301
|
+
/**
|
|
6302
|
+
* Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
6303
|
+
*/
|
|
6304
|
+
automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
|
|
6305
|
+
/**
|
|
6306
|
+
* 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'.
|
|
6307
|
+
*/
|
|
6308
|
+
cellularSliceConfigurationId: string | null;
|
|
6309
|
+
/**
|
|
6310
|
+
* The unique identifier of the content filter to associate with the app.
|
|
6311
|
+
*/
|
|
6312
|
+
contentFilterConfigurationId: string | null;
|
|
6313
|
+
/**
|
|
6314
|
+
* The unique identifier of the DDM app configuration to associate with the app.
|
|
6315
|
+
*/
|
|
6316
|
+
ddmAppConfigId: guid | null;
|
|
6317
|
+
/**
|
|
6318
|
+
* The unique identifier of the DNS proxy to associate with the app.
|
|
6319
|
+
*/
|
|
6320
|
+
dnsProxyConfigurationId: string | null;
|
|
6321
|
+
/**
|
|
6322
|
+
* 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.
|
|
6323
|
+
*/
|
|
6324
|
+
preventManagedAppBackup: boolean | null;
|
|
6325
|
+
/**
|
|
6326
|
+
* The unique identifier of the relay to associate with the app.
|
|
6327
|
+
*/
|
|
6328
|
+
relayConfigurationId: string | null;
|
|
6329
|
+
/**
|
|
6330
|
+
* 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.
|
|
6331
|
+
*/
|
|
6332
|
+
tapToPayScreenLockEnabled: boolean | null;
|
|
6333
|
+
/**
|
|
6334
|
+
* Whether or not to use device licensing.
|
|
6335
|
+
*/
|
|
6336
|
+
useDeviceLicensing: boolean;
|
|
6337
|
+
/**
|
|
6338
|
+
* 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.
|
|
6339
|
+
*/
|
|
6340
|
+
version: int32 | null;
|
|
6341
|
+
/**
|
|
6342
|
+
* The unique identifier of the VPN Configuration to apply to the app.
|
|
6343
|
+
*/
|
|
6344
|
+
vpnConfigurationId: string | null;
|
|
6345
|
+
}
|
|
6346
|
+
|
|
6160
6347
|
/**
|
|
6161
6348
|
* Contains properties of the possible iOS device types the mobile app can run on.
|
|
6162
6349
|
*/
|
|
@@ -7268,6 +7455,32 @@ namespace reference.`microsoft.graph` {
|
|
|
7268
7455
|
teamIdentifier: string;
|
|
7269
7456
|
}
|
|
7270
7457
|
|
|
7458
|
+
/**
|
|
7459
|
+
* Contains properties used to assign a macOS Declarative Device Management (DDM) VPP mobile app to a group.
|
|
7460
|
+
*/
|
|
7461
|
+
@complex model macOsDdmVppAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
7462
|
+
/**
|
|
7463
|
+
* Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
7464
|
+
*/
|
|
7465
|
+
automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
|
|
7466
|
+
/**
|
|
7467
|
+
* The unique identifier of the DDM app configuration to associate with the app.
|
|
7468
|
+
*/
|
|
7469
|
+
ddmAppConfigId: guid | null;
|
|
7470
|
+
/**
|
|
7471
|
+
* 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.
|
|
7472
|
+
*/
|
|
7473
|
+
isIosApp: boolean | null;
|
|
7474
|
+
/**
|
|
7475
|
+
* 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.
|
|
7476
|
+
*/
|
|
7477
|
+
useDeviceLicensing: boolean;
|
|
7478
|
+
/**
|
|
7479
|
+
* 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.
|
|
7480
|
+
*/
|
|
7481
|
+
version: int32 | null;
|
|
7482
|
+
}
|
|
7483
|
+
|
|
7271
7484
|
/**
|
|
7272
7485
|
* Properties related to macOS-specific configured and Intune-managed local administrator account
|
|
7273
7486
|
*/
|
|
@@ -7795,6 +8008,11 @@ namespace reference.`microsoft.graph` {
|
|
|
7795
8008
|
userId: string | null;
|
|
7796
8009
|
}
|
|
7797
8010
|
|
|
8011
|
+
@complex model mailboxDetails {
|
|
8012
|
+
emailAddress: string | null;
|
|
8013
|
+
externalDirectoryObjectId: string | null;
|
|
8014
|
+
}
|
|
8015
|
+
|
|
7798
8016
|
@complex model mailboxSettings {
|
|
7799
8017
|
archiveFolder: string | null;
|
|
7800
8018
|
automaticRepliesSetting: automaticRepliesSetting | null;
|
|
@@ -8477,6 +8695,13 @@ namespace reference.`microsoft.graph` {
|
|
|
8477
8695
|
networkType: networkType | null;
|
|
8478
8696
|
}
|
|
8479
8697
|
|
|
8698
|
+
@complex model nistClassification {
|
|
8699
|
+
category: string;
|
|
8700
|
+
description: string | null;
|
|
8701
|
+
function: string | null;
|
|
8702
|
+
name: string;
|
|
8703
|
+
}
|
|
8704
|
+
|
|
8480
8705
|
@complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
8481
8706
|
}
|
|
8482
8707
|
|
|
@@ -8668,8 +8893,26 @@ namespace reference.`microsoft.graph` {
|
|
|
8668
8893
|
internalUrl: string | null;
|
|
8669
8894
|
}
|
|
8670
8895
|
|
|
8896
|
+
@complex model onPremisesCurrentExportData {
|
|
8897
|
+
clientMachineName: string | null;
|
|
8898
|
+
pendingObjectsAddition: int32 | null;
|
|
8899
|
+
pendingObjectsDeletion: int32 | null;
|
|
8900
|
+
pendingObjectsUpdate: int32 | null;
|
|
8901
|
+
serviceAccount: string | null;
|
|
8902
|
+
successfulLinksProvisioningCount: int64 | null;
|
|
8903
|
+
successfulObjectsProvisioningCount: int32 | null;
|
|
8904
|
+
totalConnectorSpaceObjects: int32 | null;
|
|
8905
|
+
}
|
|
8906
|
+
|
|
8671
8907
|
@complex model onPremisesDirectorySynchronizationConfiguration {
|
|
8672
8908
|
accidentalDeletionPrevention: onPremisesAccidentalDeletionPrevention | null;
|
|
8909
|
+
anchorAttribute: string | null;
|
|
8910
|
+
applicationId: string | null;
|
|
8911
|
+
currentExportData: onPremisesCurrentExportData | null;
|
|
8912
|
+
customerRequestedSynchronizationInterval: duration | null;
|
|
8913
|
+
synchronizationClientVersion: string | null;
|
|
8914
|
+
synchronizationInterval: duration | null;
|
|
8915
|
+
writebackConfiguration: onPremisesWritebackConfiguration | null;
|
|
8673
8916
|
}
|
|
8674
8917
|
|
|
8675
8918
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
@@ -8730,6 +8973,7 @@ namespace reference.`microsoft.graph` {
|
|
|
8730
8973
|
isAccessibleViaZTNAClient: boolean | null;
|
|
8731
8974
|
isBackendCertificateValidationEnabled: boolean | null;
|
|
8732
8975
|
isContinuousAccessEvaluationEnabled: boolean | null;
|
|
8976
|
+
isDeviceAccessEnabled: boolean;
|
|
8733
8977
|
isDnsResolutionEnabled: boolean | null;
|
|
8734
8978
|
isHttpOnlyCookieEnabled: boolean | null;
|
|
8735
8979
|
isOnPremPublishingEnabled: boolean | null;
|
|
@@ -8756,6 +9000,11 @@ namespace reference.`microsoft.graph` {
|
|
|
8756
9000
|
singleSignOnMode: singleSignOnMode | null;
|
|
8757
9001
|
}
|
|
8758
9002
|
|
|
9003
|
+
@complex model onPremisesWritebackConfiguration {
|
|
9004
|
+
unifiedGroupContainer: string | null;
|
|
9005
|
+
userContainer: string | null;
|
|
9006
|
+
}
|
|
9007
|
+
|
|
8759
9008
|
@complex model openIdConnectSetting {
|
|
8760
9009
|
clientId: string;
|
|
8761
9010
|
discoveryUrl: string;
|
|
@@ -9103,6 +9352,22 @@ namespace reference.`microsoft.graph` {
|
|
|
9103
9352
|
street: string | null;
|
|
9104
9353
|
}
|
|
9105
9354
|
|
|
9355
|
+
@complex model placeExecutionResult {
|
|
9356
|
+
children: placeExecutionResult[] | null;
|
|
9357
|
+
error: publicError | null;
|
|
9358
|
+
@references succeededPlace: place | null;
|
|
9359
|
+
}
|
|
9360
|
+
|
|
9361
|
+
@abstract
|
|
9362
|
+
@complex model placeMode {
|
|
9363
|
+
}
|
|
9364
|
+
|
|
9365
|
+
@complex model placeOperationProgress {
|
|
9366
|
+
failedPlaceCount: int32 | null;
|
|
9367
|
+
succeededPlaceCount: int32 | null;
|
|
9368
|
+
totalPlaceCount: int32 | null;
|
|
9369
|
+
}
|
|
9370
|
+
|
|
9106
9371
|
@open
|
|
9107
9372
|
@complex model plannerAppliedCategories {
|
|
9108
9373
|
}
|
|
@@ -9932,6 +10197,12 @@ namespace reference.`microsoft.graph` {
|
|
|
9932
10197
|
sessionKey: string;
|
|
9933
10198
|
}
|
|
9934
10199
|
|
|
10200
|
+
@complex model requestSchedule {
|
|
10201
|
+
expiration: expirationPattern | null;
|
|
10202
|
+
recurrence: patternedRecurrence | null;
|
|
10203
|
+
startDateTime: offsetDateTime | null;
|
|
10204
|
+
}
|
|
10205
|
+
|
|
9935
10206
|
@complex model requestSignatureVerification {
|
|
9936
10207
|
allowedWeakAlgorithms: weakAlgorithms | null;
|
|
9937
10208
|
isSignedRequestRequired: boolean;
|
|
@@ -9942,6 +10213,9 @@ namespace reference.`microsoft.graph` {
|
|
|
9942
10213
|
resourceAppId: string;
|
|
9943
10214
|
}
|
|
9944
10215
|
|
|
10216
|
+
@complex model reservablePlaceMode extends placeMode {
|
|
10217
|
+
}
|
|
10218
|
+
|
|
9945
10219
|
/**
|
|
9946
10220
|
* Reset passcode action result
|
|
9947
10221
|
*/
|
|
@@ -9979,6 +10253,12 @@ namespace reference.`microsoft.graph` {
|
|
|
9979
10253
|
@complex model resourceData {
|
|
9980
10254
|
}
|
|
9981
10255
|
|
|
10256
|
+
@complex model resourceLink {
|
|
10257
|
+
linkType: resourceLinkType;
|
|
10258
|
+
name: string | null;
|
|
10259
|
+
value: string | null;
|
|
10260
|
+
}
|
|
10261
|
+
|
|
9982
10262
|
@complex model resourcePermission {
|
|
9983
10263
|
type: string;
|
|
9984
10264
|
value: string;
|
|
@@ -10679,6 +10959,11 @@ namespace reference.`microsoft.graph` {
|
|
|
10679
10959
|
@complex model singleSignOnExtension {
|
|
10680
10960
|
}
|
|
10681
10961
|
|
|
10962
|
+
@complex model singleUser extends userSet {
|
|
10963
|
+
description: string | null;
|
|
10964
|
+
id: string | null;
|
|
10965
|
+
}
|
|
10966
|
+
|
|
10682
10967
|
@complex model siteArchivalDetails {
|
|
10683
10968
|
archivedBy: identitySet | null;
|
|
10684
10969
|
archivedDateTime: offsetDateTime | null;
|
|
@@ -10747,6 +11032,10 @@ namespace reference.`microsoft.graph` {
|
|
|
10747
11032
|
upgradeAvailable: boolean | null;
|
|
10748
11033
|
}
|
|
10749
11034
|
|
|
11035
|
+
@open
|
|
11036
|
+
@complex model stringDictionary extends Dictionary {
|
|
11037
|
+
}
|
|
11038
|
+
|
|
10750
11039
|
@complex model stringKeyAttributeMappingSourceValuePair {
|
|
10751
11040
|
key: string | null;
|
|
10752
11041
|
value: attributeMappingSource | null;
|
|
@@ -10976,6 +11265,11 @@ namespace reference.`microsoft.graph` {
|
|
|
10976
11265
|
@complex model thumbnailColumn {
|
|
10977
11266
|
}
|
|
10978
11267
|
|
|
11268
|
+
@complex model ticketInfo {
|
|
11269
|
+
ticketNumber: string | null;
|
|
11270
|
+
ticketSystem: string | null;
|
|
11271
|
+
}
|
|
11272
|
+
|
|
10979
11273
|
@complex model timeConstraint {
|
|
10980
11274
|
activityDomain: activityDomain | null;
|
|
10981
11275
|
recurrence: patternedRecurrence | null;
|
|
@@ -11079,6 +11373,19 @@ namespace reference.`microsoft.graph` {
|
|
|
11079
11373
|
type: emailType | null;
|
|
11080
11374
|
}
|
|
11081
11375
|
|
|
11376
|
+
@complex model unavailablePlaceMode extends placeMode {
|
|
11377
|
+
reason: string | null;
|
|
11378
|
+
}
|
|
11379
|
+
|
|
11380
|
+
@complex model unifiedRoleManagementPolicyRuleTarget {
|
|
11381
|
+
caller: string | null;
|
|
11382
|
+
enforcedSettings: string[] | null;
|
|
11383
|
+
inheritableSettings: string[] | null;
|
|
11384
|
+
level: string | null;
|
|
11385
|
+
operations: string[] | null;
|
|
11386
|
+
@references targetObjects: directoryObject[];
|
|
11387
|
+
}
|
|
11388
|
+
|
|
11082
11389
|
@complex model unifiedRolePermission {
|
|
11083
11390
|
allowedResourceActions: string[];
|
|
11084
11391
|
condition: string | null;
|
|
@@ -11458,6 +11765,11 @@ namespace reference.`microsoft.graph` {
|
|
|
11458
11765
|
userTypes: includedUserTypes | null;
|
|
11459
11766
|
}
|
|
11460
11767
|
|
|
11768
|
+
@abstract
|
|
11769
|
+
@complex model userSet {
|
|
11770
|
+
isBackup: boolean | null;
|
|
11771
|
+
}
|
|
11772
|
+
|
|
11461
11773
|
@complex model userSignIn extends signInIdentity {
|
|
11462
11774
|
externalTenantId: string | null;
|
|
11463
11775
|
externalUserType: conditionalAccessGuestOrExternalUserTypes;
|
|
@@ -13735,6 +14047,71 @@ namespace reference.`microsoft.graph` {
|
|
|
13735
14047
|
timeZone: timeZoneBase | null;
|
|
13736
14048
|
}
|
|
13737
14049
|
|
|
14050
|
+
@complex model workplaceSensor {
|
|
14051
|
+
/**
|
|
14052
|
+
* The display name of the sensor.
|
|
14053
|
+
*/
|
|
14054
|
+
displayName: string | null;
|
|
14055
|
+
/**
|
|
14056
|
+
* The unique identifier of the place served by the sensor. Only needs to be provided if the sensor serves a different place than the device's location.
|
|
14057
|
+
*/
|
|
14058
|
+
placeId: string | null;
|
|
14059
|
+
/**
|
|
14060
|
+
* The unique identifier of a sensor within the device. If the sensor Id is not provided, the sensorType will be used as sensorId.
|
|
14061
|
+
*/
|
|
14062
|
+
sensorId: string | null;
|
|
14063
|
+
/**
|
|
14064
|
+
* The type of the sensor. Possible values are occupancy, peopleCount.
|
|
14065
|
+
*/
|
|
14066
|
+
sensorType: workplaceSensorType;
|
|
14067
|
+
}
|
|
14068
|
+
|
|
14069
|
+
@complex model workplaceSensorDeviceTelemetry {
|
|
14070
|
+
/**
|
|
14071
|
+
* The value of the sensor.
|
|
14072
|
+
*/
|
|
14073
|
+
boolValue: boolean | null;
|
|
14074
|
+
/**
|
|
14075
|
+
* The unique identifier of the device.
|
|
14076
|
+
*/
|
|
14077
|
+
deviceId: string;
|
|
14078
|
+
/**
|
|
14079
|
+
* The extra values associate with badge signal.
|
|
14080
|
+
*/
|
|
14081
|
+
eventValue: workplaceSensorEventValue | null;
|
|
14082
|
+
/**
|
|
14083
|
+
* The value of the sensor.
|
|
14084
|
+
*/
|
|
14085
|
+
intValue: int32 | null;
|
|
14086
|
+
/**
|
|
14087
|
+
* The additional information to indicate the location of the device.
|
|
14088
|
+
*/
|
|
14089
|
+
locationHint: string | null;
|
|
14090
|
+
/**
|
|
14091
|
+
* The unique identifier of a sensor within the device. If the sensor Id is not provided, the sensorType will be used as sensorId.
|
|
14092
|
+
*/
|
|
14093
|
+
sensorId: string | null;
|
|
14094
|
+
/**
|
|
14095
|
+
* The type of the sensor. Possible values are occupancy, peopleCount.
|
|
14096
|
+
*/
|
|
14097
|
+
sensorType: workplaceSensorType;
|
|
14098
|
+
/**
|
|
14099
|
+
* The timestamp at which the sensor value was observed.
|
|
14100
|
+
*/
|
|
14101
|
+
timestamp: offsetDateTime;
|
|
14102
|
+
}
|
|
14103
|
+
|
|
14104
|
+
@complex model workplaceSensorEventValue {
|
|
14105
|
+
/**
|
|
14106
|
+
* The type of the event.
|
|
14107
|
+
*/
|
|
14108
|
+
eventType: workplaceSensorEventType | null;
|
|
14109
|
+
/**
|
|
14110
|
+
* The unique identifier of an user. It could be email or aad id.
|
|
14111
|
+
*/
|
|
14112
|
+
user: emailIdentity | null;
|
|
14113
|
+
}
|
|
14114
|
+
|
|
13738
14115
|
@complex model writebackConfiguration {
|
|
13739
14116
|
isEnabled: boolean | null;
|
|
13740
14117
|
}
|
|
@@ -13950,6 +14327,8 @@ namespace reference.`microsoft.graph` {
|
|
|
13950
14327
|
}
|
|
13951
14328
|
|
|
13952
14329
|
@entity model admin extends MsGraph.SharedModels.entity {
|
|
14330
|
+
@contains cloudLicensing: reference.`microsoft.graph.cloudLicensing`.adminCloudLicensing | null;
|
|
14331
|
+
@contains entra: entra | null;
|
|
13953
14332
|
@contains people: peopleAdminSettings | null;
|
|
13954
14333
|
@contains serviceAnnouncement: serviceAnnouncement | null;
|
|
13955
14334
|
@contains sharepoint: sharepoint | null;
|
|
@@ -14068,6 +14447,9 @@ namespace reference.`microsoft.graph` {
|
|
|
14068
14447
|
@entity model agentIdentity extends servicePrincipal {
|
|
14069
14448
|
agentIdentityBlueprintId: string;
|
|
14070
14449
|
@computed createdDateTime: offsetDateTime | null;
|
|
14450
|
+
managerApplications: guid;
|
|
14451
|
+
@references inheritedAppRoleAssignments: appRoleAssignment[];
|
|
14452
|
+
@references inheritedOauth2PermissionGrants: oAuth2PermissionGrant[];
|
|
14071
14453
|
@references sponsors: directoryObject[];
|
|
14072
14454
|
}
|
|
14073
14455
|
|
|
@@ -14079,6 +14461,7 @@ namespace reference.`microsoft.graph` {
|
|
|
14079
14461
|
|
|
14080
14462
|
@open
|
|
14081
14463
|
@entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
|
|
14464
|
+
managerApplications: guid;
|
|
14082
14465
|
@references sponsors: directoryObject[];
|
|
14083
14466
|
}
|
|
14084
14467
|
|
|
@@ -16649,6 +17032,10 @@ namespace reference.`microsoft.graph` {
|
|
|
16649
17032
|
* Defines a managed app behavior, either warn or block, if the specified Android SafetyNet Attestation requirement fails.
|
|
16650
17033
|
*/
|
|
16651
17034
|
appActionIfAndroidSafetyNetDeviceAttestationFailed: managedAppRemediationAction;
|
|
17035
|
+
/**
|
|
17036
|
+
* Defines a managed app behavior, either warn, block, or wipe, if Developer Options are enabled on the Android device. If the admin does not set this action, the default is null, which indicates this setting is not configured.
|
|
17037
|
+
*/
|
|
17038
|
+
appActionIfDeveloperOptionsEnabled: managedAppRemediationAction | null;
|
|
16652
17039
|
/**
|
|
16653
17040
|
* Defines a managed app behavior, either warn, block or wipe, if the screen lock is required on android device but is not set.
|
|
16654
17041
|
*/
|
|
@@ -18329,10 +18716,18 @@ namespace reference.`microsoft.graph` {
|
|
|
18329
18716
|
* Domains that are accessed through the public internet instead of through VPN, even when per-app VPN is activated
|
|
18330
18717
|
*/
|
|
18331
18718
|
excludedDomains: string[] | null;
|
|
18719
|
+
/**
|
|
18720
|
+
* 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.
|
|
18721
|
+
*/
|
|
18722
|
+
excludeLocalNetworks: boolean | null;
|
|
18332
18723
|
/**
|
|
18333
18724
|
* 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
|
|
18334
18725
|
*/
|
|
18335
18726
|
identifier: string | null;
|
|
18727
|
+
/**
|
|
18728
|
+
* 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.
|
|
18729
|
+
*/
|
|
18730
|
+
includeAllNetworks: boolean | null;
|
|
18336
18731
|
/**
|
|
18337
18732
|
* Login group or domain when connection type is set to Dell SonicWALL Mobile Connection.
|
|
18338
18733
|
*/
|
|
@@ -18503,6 +18898,21 @@ namespace reference.`microsoft.graph` {
|
|
|
18503
18898
|
resourceId: guid | null;
|
|
18504
18899
|
}
|
|
18505
18900
|
|
|
18901
|
+
@entity model approval extends entity {
|
|
18902
|
+
@references request: request | null;
|
|
18903
|
+
@contains steps: approvalStep[];
|
|
18904
|
+
}
|
|
18905
|
+
|
|
18906
|
+
@entity model approvalStep extends entity {
|
|
18907
|
+
assignedToMe: boolean | null;
|
|
18908
|
+
displayName: string | null;
|
|
18909
|
+
justification: string | null;
|
|
18910
|
+
reviewedBy: identity | null;
|
|
18911
|
+
reviewedDateTime: offsetDateTime | null;
|
|
18912
|
+
reviewResult: string | null;
|
|
18913
|
+
status: string | null;
|
|
18914
|
+
}
|
|
18915
|
+
|
|
18506
18916
|
@entity model approvedClientApp extends entity {
|
|
18507
18917
|
displayName: string | null;
|
|
18508
18918
|
}
|
|
@@ -18809,6 +19219,11 @@ namespace reference.`microsoft.graph` {
|
|
|
18809
19219
|
publication: publicationFacet | null;
|
|
18810
19220
|
}
|
|
18811
19221
|
|
|
19222
|
+
@abstract
|
|
19223
|
+
@entity model baseMapFeature extends entity {
|
|
19224
|
+
properties: string | null;
|
|
19225
|
+
}
|
|
19226
|
+
|
|
18812
19227
|
@entity model baseSitePage extends baseItem {
|
|
18813
19228
|
pageLayout: pageLayoutType | null;
|
|
18814
19229
|
publishingState: publicationFacet | null;
|
|
@@ -18826,6 +19241,19 @@ namespace reference.`microsoft.graph` {
|
|
|
18826
19241
|
volumeType: volumeType | null;
|
|
18827
19242
|
}
|
|
18828
19243
|
|
|
19244
|
+
@entity model building extends place {
|
|
19245
|
+
hasWiFi: boolean;
|
|
19246
|
+
resourceLinks: resourceLink[];
|
|
19247
|
+
wifiState: placeFeatureEnablement;
|
|
19248
|
+
@contains map: buildingMap | null;
|
|
19249
|
+
}
|
|
19250
|
+
|
|
19251
|
+
@entity model buildingMap extends baseMapFeature {
|
|
19252
|
+
placeId: string | null;
|
|
19253
|
+
@contains footprints: footprintMap[];
|
|
19254
|
+
@contains levels: levelMap[];
|
|
19255
|
+
}
|
|
19256
|
+
|
|
18829
19257
|
@entity model bulkUpload extends entity {
|
|
18830
19258
|
}
|
|
18831
19259
|
|
|
@@ -18982,6 +19410,12 @@ namespace reference.`microsoft.graph` {
|
|
|
18982
19410
|
machineName: string | null;
|
|
18983
19411
|
}
|
|
18984
19412
|
|
|
19413
|
+
@entity model checkInClaim extends MsGraph.SharedModels.entity {
|
|
19414
|
+
@computed @key calendarEventId: string;
|
|
19415
|
+
checkInMethod: checkInMethod;
|
|
19416
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
19417
|
+
}
|
|
19418
|
+
|
|
18985
19419
|
/**
|
|
18986
19420
|
* Entity that represents a Chromebook tenant settings
|
|
18987
19421
|
*/
|
|
@@ -20616,6 +21050,13 @@ namespace reference.`microsoft.graph` {
|
|
|
20616
21050
|
@entity model depVisionOSEnrollmentProfile extends enrollmentProfile {
|
|
20617
21051
|
}
|
|
20618
21052
|
|
|
21053
|
+
@entity model desk extends place {
|
|
21054
|
+
displayDeviceName: string | null;
|
|
21055
|
+
heightAdjustableState: placeFeatureEnablement;
|
|
21056
|
+
mailboxDetails: mailboxDetails | null;
|
|
21057
|
+
mode: placeMode | null;
|
|
21058
|
+
}
|
|
21059
|
+
|
|
20619
21060
|
/**
|
|
20620
21061
|
* A managed or unmanaged app that is installed on a managed device. Unmanaged apps will only appear for devices marked as corporate owned.
|
|
20621
21062
|
*/
|
|
@@ -20760,7 +21201,7 @@ namespace reference.`microsoft.graph` {
|
|
|
20760
21201
|
/**
|
|
20761
21202
|
* Singleton entity that acts as a container for all device app management functionality.
|
|
20762
21203
|
*/
|
|
20763
|
-
@entity model deviceAppManagement extends entity {
|
|
21204
|
+
@entity model deviceAppManagement extends MsGraph.SharedModels.entity {
|
|
20764
21205
|
/**
|
|
20765
21206
|
* Whether the account is enabled for syncing applications from the Microsoft Store for Business.
|
|
20766
21207
|
*/
|
|
@@ -21334,7 +21775,7 @@ namespace reference.`microsoft.graph` {
|
|
|
21334
21775
|
*/
|
|
21335
21776
|
@computed lastModifiedDateTime: offsetDateTime;
|
|
21336
21777
|
/**
|
|
21337
|
-
* Indicates the
|
|
21778
|
+
* Indicates the device platform on which the device compliance script will be executed. Possible values are: windows10AndLater (default), linux. The default value is windows10AndLater.
|
|
21338
21779
|
*/
|
|
21339
21780
|
platform: deviceComplianceScriptPlatformType | null;
|
|
21340
21781
|
/**
|
|
@@ -21346,7 +21787,7 @@ namespace reference.`microsoft.graph` {
|
|
|
21346
21787
|
*/
|
|
21347
21788
|
roleScopeTagIds: string[] | null;
|
|
21348
21789
|
/**
|
|
21349
|
-
*
|
|
21790
|
+
* Indicate whether PowerShell script(s) should run as 32-bit
|
|
21350
21791
|
*/
|
|
21351
21792
|
runAs32Bit: boolean;
|
|
21352
21793
|
/**
|
|
@@ -21860,6 +22301,7 @@ namespace reference.`microsoft.graph` {
|
|
|
21860
22301
|
successCount: int32;
|
|
21861
22302
|
}
|
|
21862
22303
|
|
|
22304
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
21863
22305
|
@entity model deviceConfigurationUserStateSummary extends entity {
|
|
21864
22306
|
/**
|
|
21865
22307
|
* Number of compliant users
|
|
@@ -22830,6 +23272,8 @@ namespace reference.`microsoft.graph` {
|
|
|
22830
23272
|
/**
|
|
22831
23273
|
* The device configuration user state summary for this account.
|
|
22832
23274
|
*/
|
|
23275
|
+
|
|
23276
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
22833
23277
|
@contains deviceConfigurationUserStateSummaries: deviceConfigurationUserStateSummary | null;
|
|
22834
23278
|
/**
|
|
22835
23279
|
* The list of device custom attribute shell scripts associated with the tenant.
|
|
@@ -25638,6 +26082,9 @@ namespace reference.`microsoft.graph` {
|
|
|
25638
26082
|
@computed @key id: string;
|
|
25639
26083
|
}
|
|
25640
26084
|
|
|
26085
|
+
@entity model entra extends entity {
|
|
26086
|
+
}
|
|
26087
|
+
|
|
25641
26088
|
@open
|
|
25642
26089
|
@entity model event extends outlookItem {
|
|
25643
26090
|
allowNewTimeProposals: boolean | null;
|
|
@@ -25837,6 +26284,17 @@ namespace reference.`microsoft.graph` {
|
|
|
25837
26284
|
supportedAttributeTypes: attributeType[];
|
|
25838
26285
|
}
|
|
25839
26286
|
|
|
26287
|
+
@entity model fixtureMap extends baseMapFeature {
|
|
26288
|
+
placeId: string | null;
|
|
26289
|
+
}
|
|
26290
|
+
|
|
26291
|
+
@entity model floor extends place {
|
|
26292
|
+
sortOrder: int32 | null;
|
|
26293
|
+
}
|
|
26294
|
+
|
|
26295
|
+
@entity model footprintMap extends baseMapFeature {
|
|
26296
|
+
}
|
|
26297
|
+
|
|
25840
26298
|
@abstract
|
|
25841
26299
|
@entity model governanceInsight extends entity {
|
|
25842
26300
|
}
|
|
@@ -25849,6 +26307,7 @@ namespace reference.`microsoft.graph` {
|
|
|
25849
26307
|
assignedLicenses: assignedLicense[] | null;
|
|
25850
26308
|
autoSubscribeNewMembers: boolean | null;
|
|
25851
26309
|
classification: string | null;
|
|
26310
|
+
cloudLicensing: reference.`microsoft.graph.cloudLicensing`.groupCloudLicensing | null;
|
|
25852
26311
|
createdByAppId: string | null;
|
|
25853
26312
|
@computed createdDateTime: offsetDateTime | null;
|
|
25854
26313
|
description: string | null;
|
|
@@ -26963,6 +27422,8 @@ namespace reference.`microsoft.graph` {
|
|
|
26963
27422
|
}
|
|
26964
27423
|
|
|
26965
27424
|
@entity model identityGovernance extends MsGraph.SharedModels.entity {
|
|
27425
|
+
@contains privilegedAccess: privilegedAccessRoot | null;
|
|
27426
|
+
@contains roleManagementAlerts: roleManagementAlert | null;
|
|
26966
27427
|
}
|
|
26967
27428
|
|
|
26968
27429
|
@entity model identityProtectionRoot extends MsGraph.SharedModels.entity {
|
|
@@ -26998,6 +27459,7 @@ namespace reference.`microsoft.graph` {
|
|
|
26998
27459
|
resourceType: string;
|
|
26999
27460
|
status: recommendationStatus;
|
|
27000
27461
|
subjectId: string;
|
|
27462
|
+
@contains tags: recommendationTag[];
|
|
27001
27463
|
}
|
|
27002
27464
|
|
|
27003
27465
|
/**
|
|
@@ -27370,6 +27832,13 @@ namespace reference.`microsoft.graph` {
|
|
|
27370
27832
|
target: deviceAndAppManagementAssignmentTarget | null;
|
|
27371
27833
|
}
|
|
27372
27834
|
|
|
27835
|
+
@entity model invalidLicenseAlertConfiguration extends unifiedRoleManagementAlertConfiguration {
|
|
27836
|
+
}
|
|
27837
|
+
|
|
27838
|
+
@entity model invalidLicenseAlertIncident extends unifiedRoleManagementAlertIncident {
|
|
27839
|
+
tenantLicenseStatus: string | null;
|
|
27840
|
+
}
|
|
27841
|
+
|
|
27373
27842
|
@entity model invitation extends entity {
|
|
27374
27843
|
invitedUserDisplayName: string | null;
|
|
27375
27844
|
invitedUserEmailAddress: string;
|
|
@@ -29006,6 +29475,7 @@ namespace reference.`microsoft.graph` {
|
|
|
29006
29475
|
* Contains properties and inherited properties for iOS store apps.
|
|
29007
29476
|
*/
|
|
29008
29477
|
@entity model iosStoreApp extends mobileApp {
|
|
29478
|
+
appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol | null;
|
|
29009
29479
|
/**
|
|
29010
29480
|
* The iOS architecture for which this app can run on.
|
|
29011
29481
|
*/
|
|
@@ -29173,6 +29643,7 @@ namespace reference.`microsoft.graph` {
|
|
|
29173
29643
|
* Contains properties and inherited properties for iOS Volume-Purchased Program (VPP) Apps.
|
|
29174
29644
|
*/
|
|
29175
29645
|
@entity model iosVppApp extends mobileApp {
|
|
29646
|
+
appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol | null;
|
|
29176
29647
|
/**
|
|
29177
29648
|
* The applicable iOS Device Type.
|
|
29178
29649
|
*/
|
|
@@ -29541,6 +30012,13 @@ namespace reference.`microsoft.graph` {
|
|
|
29541
30012
|
written: languageProficiencyLevel | null;
|
|
29542
30013
|
}
|
|
29543
30014
|
|
|
30015
|
+
@entity model levelMap extends baseMapFeature {
|
|
30016
|
+
placeId: string | null;
|
|
30017
|
+
@contains fixtures: fixtureMap[];
|
|
30018
|
+
@contains sections: sectionMap[];
|
|
30019
|
+
@contains units: unitMap[];
|
|
30020
|
+
}
|
|
30021
|
+
|
|
29544
30022
|
@entity model licenseDetails extends entity {
|
|
29545
30023
|
servicePlans: servicePlanInfo[];
|
|
29546
30024
|
skuId: guid | null;
|
|
@@ -30819,6 +31297,10 @@ namespace reference.`microsoft.graph` {
|
|
|
30819
31297
|
* Contains properties and inherited properties for MacOS Volume-Purchased Program (VPP) Apps.
|
|
30820
31298
|
*/
|
|
30821
31299
|
@entity model macOsVppApp extends mobileApp {
|
|
31300
|
+
/**
|
|
31301
|
+
* 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.
|
|
31302
|
+
*/
|
|
31303
|
+
appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol;
|
|
30822
31304
|
/**
|
|
30823
31305
|
* The store URL.
|
|
30824
31306
|
*/
|
|
@@ -30957,6 +31439,10 @@ namespace reference.`microsoft.graph` {
|
|
|
30957
31439
|
* This is the name of the Wi-Fi network that is broadcast to all devices.
|
|
30958
31440
|
*/
|
|
30959
31441
|
ssid: string;
|
|
31442
|
+
/**
|
|
31443
|
+
* 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.
|
|
31444
|
+
*/
|
|
31445
|
+
wifiRequirePhysicalMacAddressEnabled: boolean | null;
|
|
30960
31446
|
/**
|
|
30961
31447
|
* Indicates whether the Wi-Fi endpoint uses an EAP-based security type. Possible values are: open, wpaPersonal, wpaEnterprise, wep, wpa2Personal, and wpa2Enterprise
|
|
30962
31448
|
*/
|
|
@@ -31979,6 +32465,8 @@ namespace reference.`microsoft.graph` {
|
|
|
31979
32465
|
/**
|
|
31980
32466
|
* Security baseline states for this device.
|
|
31981
32467
|
*/
|
|
32468
|
+
|
|
32469
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
31982
32470
|
@contains securityBaselineStates: securityBaselineState[];
|
|
31983
32471
|
/**
|
|
31984
32472
|
* The primary users associated with the managed device.
|
|
@@ -33246,6 +33734,10 @@ namespace reference.`microsoft.graph` {
|
|
|
33246
33734
|
* Indicates the size of the file after encryption, in bytes.
|
|
33247
33735
|
*/
|
|
33248
33736
|
sizeEncrypted: int64;
|
|
33737
|
+
/**
|
|
33738
|
+
* Indicates optional error details when uploadState is indicating an error. For example, when uploadState has commitFileFailed value, this field may have the error code of apkIsInvalid. Read-only.
|
|
33739
|
+
*/
|
|
33740
|
+
uploadErrorCode: mobileAppContentFileUploadErrorCode | null;
|
|
33249
33741
|
/**
|
|
33250
33742
|
* Indicates the state of the current upload request. Possible values are: success, transientError, error, unknown, azureStorageUriRequestSuccess, azureStorageUriRequestPending, azureStorageUriRequestFailed, azureStorageUriRequestTimedOut, azureStorageUriRenewalSuccess, azureStorageUriRenewalPending, azureStorageUriRenewalFailed, azureStorageUriRenewalTimedOut, commitFileSuccess, commitFilePending, commitFileFailed, commitFileTimedOut. Default value is success. This property is read-only.
|
|
33251
33743
|
*/
|
|
@@ -33695,6 +34187,14 @@ namespace reference.`microsoft.graph` {
|
|
|
33695
34187
|
* Timestamp when on-prem certificate connector was enrolled in Intune.
|
|
33696
34188
|
*/
|
|
33697
34189
|
enrolledDateTime: offsetDateTime;
|
|
34190
|
+
/**
|
|
34191
|
+
* The collection of individual health check results for this connector. Each entry represents an independent health metric with its current status. Empty when the connector is disconnected or when health has not been evaluated yet. Read-only.
|
|
34192
|
+
*/
|
|
34193
|
+
healthChecks: connectorHealthCheck[] | null;
|
|
34194
|
+
/**
|
|
34195
|
+
* The overall health status of the connector, representing the worst status across all individual health checks. This value is pre-computed on each connector upload and may be overridden to disconnected at read time if the connector has not connected recently. Read-only.
|
|
34196
|
+
*/
|
|
34197
|
+
healthStatus: ndesConnectorHealthStatus | null;
|
|
33698
34198
|
/**
|
|
33699
34199
|
* Last connection time for the Ndes Connector
|
|
33700
34200
|
*/
|
|
@@ -33719,6 +34219,14 @@ namespace reference.`microsoft.graph` {
|
|
|
33719
34219
|
newsWebUrl: string | null;
|
|
33720
34220
|
}
|
|
33721
34221
|
|
|
34222
|
+
@entity model noMfaOnRoleActivationAlertConfiguration extends unifiedRoleManagementAlertConfiguration {
|
|
34223
|
+
}
|
|
34224
|
+
|
|
34225
|
+
@entity model noMfaOnRoleActivationAlertIncident extends unifiedRoleManagementAlertIncident {
|
|
34226
|
+
roleDisplayName: string | null;
|
|
34227
|
+
roleTemplateId: string | null;
|
|
34228
|
+
}
|
|
34229
|
+
|
|
33722
34230
|
/**
|
|
33723
34231
|
* Notification messages are messages that are sent to end users who are determined to be not-compliant with the compliance policies defined by the administrator. Administrators choose notifications and configure them in the Intune Admin Console using the compliance policy creation page under the “Actions for non-compliance” section. Use the notificationMessageTemplate object to create your own custom notifications for administrators to choose while configuring actions for non-compliance.
|
|
33724
34232
|
*/
|
|
@@ -34327,7 +34835,27 @@ namespace reference.`microsoft.graph` {
|
|
|
34327
34835
|
webUrl: string | null;
|
|
34328
34836
|
}
|
|
34329
34837
|
|
|
34330
|
-
@
|
|
34838
|
+
@abstract
|
|
34839
|
+
@entity model place extends entity {
|
|
34840
|
+
address: physicalAddress | null;
|
|
34841
|
+
displayName: string;
|
|
34842
|
+
geoCoordinates: outlookGeoCoordinates | null;
|
|
34843
|
+
isWheelChairAccessible: boolean;
|
|
34844
|
+
label: string | null;
|
|
34845
|
+
parentId: string | null;
|
|
34846
|
+
phone: string | null;
|
|
34847
|
+
tags: string[];
|
|
34848
|
+
@contains checkIns: checkInClaim[];
|
|
34849
|
+
@references children: place[];
|
|
34850
|
+
}
|
|
34851
|
+
|
|
34852
|
+
@entity model placeOperation extends entity {
|
|
34853
|
+
details: placeExecutionResult[] | null;
|
|
34854
|
+
progress: placeOperationProgress | null;
|
|
34855
|
+
status: placeOperationStatus;
|
|
34856
|
+
}
|
|
34857
|
+
|
|
34858
|
+
@entity model planner extends MsGraph.SharedModels.entity {
|
|
34331
34859
|
@contains buckets: plannerBucket[];
|
|
34332
34860
|
@contains plans: plannerPlan[];
|
|
34333
34861
|
@contains rosters: plannerRoster[];
|
|
@@ -34502,6 +35030,8 @@ namespace reference.`microsoft.graph` {
|
|
|
34502
35030
|
@contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
|
|
34503
35031
|
@contains permissionGrantPolicies: permissionGrantPolicy[];
|
|
34504
35032
|
@contains permissionGrantPreApprovalPolicies: permissionGrantPreApprovalPolicy[];
|
|
35033
|
+
@contains roleManagementPolicies: unifiedRoleManagementPolicy[];
|
|
35034
|
+
@contains roleManagementPolicyAssignments: unifiedRoleManagementPolicyAssignment[];
|
|
34505
35035
|
@contains tokenIssuancePolicies: tokenIssuancePolicy[];
|
|
34506
35036
|
@contains tokenLifetimePolicies: tokenLifetimePolicy[];
|
|
34507
35037
|
}
|
|
@@ -34631,6 +35161,106 @@ namespace reference.`microsoft.graph` {
|
|
|
34631
35161
|
version: string;
|
|
34632
35162
|
}
|
|
34633
35163
|
|
|
35164
|
+
@entity model privilegedAccessGroup extends entity {
|
|
35165
|
+
@contains assignmentScheduleInstances: privilegedAccessGroupAssignmentScheduleInstance[];
|
|
35166
|
+
@contains assignmentScheduleRequests: privilegedAccessGroupAssignmentScheduleRequest[];
|
|
35167
|
+
@contains assignmentSchedules: privilegedAccessGroupAssignmentSchedule[];
|
|
35168
|
+
@contains eligibilityScheduleInstances: privilegedAccessGroupEligibilityScheduleInstance[];
|
|
35169
|
+
@contains eligibilityScheduleRequests: privilegedAccessGroupEligibilityScheduleRequest[];
|
|
35170
|
+
@contains eligibilitySchedules: privilegedAccessGroupEligibilitySchedule[];
|
|
35171
|
+
}
|
|
35172
|
+
|
|
35173
|
+
@entity model privilegedAccessGroupAssignmentSchedule extends privilegedAccessSchedule {
|
|
35174
|
+
accessId: privilegedAccessGroupRelationships | null;
|
|
35175
|
+
assignmentType: privilegedAccessGroupAssignmentType | null;
|
|
35176
|
+
groupId: string | null;
|
|
35177
|
+
memberType: privilegedAccessGroupMemberType | null;
|
|
35178
|
+
principalId: string | null;
|
|
35179
|
+
@references activatedUsing: privilegedAccessGroupEligibilitySchedule | null;
|
|
35180
|
+
@references group: group | null;
|
|
35181
|
+
@references principal: directoryObject | null;
|
|
35182
|
+
}
|
|
35183
|
+
|
|
35184
|
+
@entity model privilegedAccessGroupAssignmentScheduleInstance extends privilegedAccessScheduleInstance {
|
|
35185
|
+
accessId: privilegedAccessGroupRelationships | null;
|
|
35186
|
+
assignmentScheduleId: string | null;
|
|
35187
|
+
assignmentType: privilegedAccessGroupAssignmentType | null;
|
|
35188
|
+
groupId: string | null;
|
|
35189
|
+
memberType: privilegedAccessGroupMemberType | null;
|
|
35190
|
+
principalId: string | null;
|
|
35191
|
+
@references activatedUsing: privilegedAccessGroupEligibilityScheduleInstance | null;
|
|
35192
|
+
@references group: group | null;
|
|
35193
|
+
@references principal: directoryObject | null;
|
|
35194
|
+
}
|
|
35195
|
+
|
|
35196
|
+
@entity model privilegedAccessGroupAssignmentScheduleRequest extends privilegedAccessScheduleRequest {
|
|
35197
|
+
accessId: privilegedAccessGroupRelationships | null;
|
|
35198
|
+
groupId: string | null;
|
|
35199
|
+
principalId: string | null;
|
|
35200
|
+
targetScheduleId: string | null;
|
|
35201
|
+
@references activatedUsing: privilegedAccessGroupEligibilitySchedule | null;
|
|
35202
|
+
@references group: group | null;
|
|
35203
|
+
@references principal: directoryObject | null;
|
|
35204
|
+
@references targetSchedule: privilegedAccessGroupEligibilitySchedule | null;
|
|
35205
|
+
}
|
|
35206
|
+
|
|
35207
|
+
@entity model privilegedAccessGroupEligibilitySchedule extends privilegedAccessSchedule {
|
|
35208
|
+
accessId: privilegedAccessGroupRelationships | null;
|
|
35209
|
+
groupId: string | null;
|
|
35210
|
+
memberType: privilegedAccessGroupMemberType | null;
|
|
35211
|
+
principalId: string | null;
|
|
35212
|
+
@references group: group | null;
|
|
35213
|
+
@references principal: directoryObject | null;
|
|
35214
|
+
}
|
|
35215
|
+
|
|
35216
|
+
@entity model privilegedAccessGroupEligibilityScheduleInstance extends privilegedAccessScheduleInstance {
|
|
35217
|
+
accessId: privilegedAccessGroupRelationships | null;
|
|
35218
|
+
eligibilityScheduleId: string | null;
|
|
35219
|
+
groupId: string | null;
|
|
35220
|
+
memberType: privilegedAccessGroupMemberType | null;
|
|
35221
|
+
principalId: string | null;
|
|
35222
|
+
@references group: group | null;
|
|
35223
|
+
@references principal: directoryObject | null;
|
|
35224
|
+
}
|
|
35225
|
+
|
|
35226
|
+
@entity model privilegedAccessGroupEligibilityScheduleRequest extends privilegedAccessScheduleRequest {
|
|
35227
|
+
accessId: privilegedAccessGroupRelationships | null;
|
|
35228
|
+
groupId: string | null;
|
|
35229
|
+
principalId: string | null;
|
|
35230
|
+
targetScheduleId: string | null;
|
|
35231
|
+
@references group: group | null;
|
|
35232
|
+
@references principal: directoryObject | null;
|
|
35233
|
+
@references targetSchedule: privilegedAccessGroupEligibilitySchedule | null;
|
|
35234
|
+
}
|
|
35235
|
+
|
|
35236
|
+
@entity model privilegedAccessRoot extends entity {
|
|
35237
|
+
@contains group: privilegedAccessGroup | null;
|
|
35238
|
+
}
|
|
35239
|
+
|
|
35240
|
+
@abstract
|
|
35241
|
+
@entity model privilegedAccessSchedule extends entity {
|
|
35242
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
35243
|
+
createdUsing: string | null;
|
|
35244
|
+
modifiedDateTime: offsetDateTime | null;
|
|
35245
|
+
scheduleInfo: requestSchedule | null;
|
|
35246
|
+
status: string | null;
|
|
35247
|
+
}
|
|
35248
|
+
|
|
35249
|
+
@abstract
|
|
35250
|
+
@entity model privilegedAccessScheduleInstance extends entity {
|
|
35251
|
+
endDateTime: offsetDateTime | null;
|
|
35252
|
+
startDateTime: offsetDateTime | null;
|
|
35253
|
+
}
|
|
35254
|
+
|
|
35255
|
+
@abstract
|
|
35256
|
+
@entity model privilegedAccessScheduleRequest extends request {
|
|
35257
|
+
action: scheduleRequestActions | null;
|
|
35258
|
+
isValidationOnly: boolean | null;
|
|
35259
|
+
justification: string | null;
|
|
35260
|
+
scheduleInfo: requestSchedule | null;
|
|
35261
|
+
ticketInfo: ticketInfo | null;
|
|
35262
|
+
}
|
|
35263
|
+
|
|
34634
35264
|
/**
|
|
34635
35265
|
* The endpoint privilege management elevation result entity representing a single elevation action on a client device.
|
|
34636
35266
|
*/
|
|
@@ -34893,7 +35523,13 @@ namespace reference.`microsoft.graph` {
|
|
|
34893
35523
|
@entity model rbacApplication extends entity {
|
|
34894
35524
|
@contains resourceNamespaces: unifiedRbacResourceNamespace[];
|
|
34895
35525
|
@contains roleAssignments: unifiedRoleAssignment[];
|
|
35526
|
+
@contains roleAssignmentScheduleInstances: unifiedRoleAssignmentScheduleInstance[];
|
|
35527
|
+
@contains roleAssignmentScheduleRequests: unifiedRoleAssignmentScheduleRequest[];
|
|
35528
|
+
@contains roleAssignmentSchedules: unifiedRoleAssignmentSchedule[];
|
|
34896
35529
|
@contains roleDefinitions: unifiedRoleDefinition[];
|
|
35530
|
+
@contains roleEligibilityScheduleInstances: unifiedRoleEligibilityScheduleInstance[];
|
|
35531
|
+
@contains roleEligibilityScheduleRequests: unifiedRoleEligibilityScheduleRequest[];
|
|
35532
|
+
@contains roleEligibilitySchedules: unifiedRoleEligibilitySchedule[];
|
|
34897
35533
|
@contains transitiveRoleAssignments: unifiedRoleAssignment[];
|
|
34898
35534
|
}
|
|
34899
35535
|
|
|
@@ -34910,9 +35546,13 @@ namespace reference.`microsoft.graph` {
|
|
|
34910
35546
|
actionSteps: actionStep[] | null;
|
|
34911
35547
|
benefits: string | null;
|
|
34912
35548
|
category: recommendationCategory;
|
|
35549
|
+
categoryGroup: recommendationCategoryGroup;
|
|
35550
|
+
completedBySystemDateTime: offsetDateTime | null;
|
|
35551
|
+
completedByUserDateTime: offsetDateTime | null;
|
|
34913
35552
|
@computed createdDateTime: offsetDateTime;
|
|
34914
35553
|
currentScore: float64 | null;
|
|
34915
35554
|
displayName: string;
|
|
35555
|
+
failedReviewDateTime: offsetDateTime | null;
|
|
34916
35556
|
featureAreas: recommendationFeatureAreas[] | null;
|
|
34917
35557
|
impactStartDateTime: offsetDateTime | null;
|
|
34918
35558
|
impactType: string | null;
|
|
@@ -34921,14 +35561,23 @@ namespace reference.`microsoft.graph` {
|
|
|
34921
35561
|
lastModifiedBy: string | null;
|
|
34922
35562
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
34923
35563
|
maxScore: float64 | null;
|
|
35564
|
+
needsMoreActionResourceCount: int32 | null;
|
|
35565
|
+
nistClassifications: nistClassification[];
|
|
34924
35566
|
postponeUntilDateTime: offsetDateTime | null;
|
|
34925
35567
|
priority: recommendationPriority;
|
|
34926
35568
|
recommendationType: recommendationType | null;
|
|
34927
35569
|
releaseType: string | null;
|
|
35570
|
+
remediatedDateTime: offsetDateTime | null;
|
|
34928
35571
|
remediationImpact: string | null;
|
|
34929
35572
|
requiredLicenses: requiredLicenses | null;
|
|
34930
35573
|
status: recommendationStatus;
|
|
35574
|
+
@computed statusModifiedDateTime: offsetDateTime | null;
|
|
34931
35575
|
@contains impactedResources: impactedResource[];
|
|
35576
|
+
@contains tags: recommendationTag[];
|
|
35577
|
+
}
|
|
35578
|
+
|
|
35579
|
+
@entity model recommendationTag extends entity {
|
|
35580
|
+
displayName: string;
|
|
34932
35581
|
}
|
|
34933
35582
|
|
|
34934
35583
|
@open
|
|
@@ -34944,6 +35593,20 @@ namespace reference.`microsoft.graph` {
|
|
|
34944
35593
|
size: int64 | null;
|
|
34945
35594
|
}
|
|
34946
35595
|
|
|
35596
|
+
@entity model redundantAssignmentAlertConfiguration extends unifiedRoleManagementAlertConfiguration {
|
|
35597
|
+
`duration`: duration | null;
|
|
35598
|
+
}
|
|
35599
|
+
|
|
35600
|
+
@entity model redundantAssignmentAlertIncident extends unifiedRoleManagementAlertIncident {
|
|
35601
|
+
assigneeDisplayName: string | null;
|
|
35602
|
+
assigneeId: string | null;
|
|
35603
|
+
assigneeUserPrincipalName: string | null;
|
|
35604
|
+
@computed lastActivationDateTime: offsetDateTime | null;
|
|
35605
|
+
roleDefinitionId: string | null;
|
|
35606
|
+
roleDisplayName: string | null;
|
|
35607
|
+
roleTemplateId: string | null;
|
|
35608
|
+
}
|
|
35609
|
+
|
|
34947
35610
|
@entity model referenceAttachment extends attachment {
|
|
34948
35611
|
isFolder: boolean | null;
|
|
34949
35612
|
permission: referenceAttachmentPermission | null;
|
|
@@ -35071,6 +35734,15 @@ namespace reference.`microsoft.graph` {
|
|
|
35071
35734
|
@contains userInsights: userInsightsRoot | null;
|
|
35072
35735
|
}
|
|
35073
35736
|
|
|
35737
|
+
@entity model request extends entity {
|
|
35738
|
+
approvalId: string | null;
|
|
35739
|
+
completedDateTime: offsetDateTime | null;
|
|
35740
|
+
createdBy: identitySet | null;
|
|
35741
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
35742
|
+
customData: string | null;
|
|
35743
|
+
status: string;
|
|
35744
|
+
}
|
|
35745
|
+
|
|
35074
35746
|
/**
|
|
35075
35747
|
* Describes the resourceOperation resource (entity) of the Microsoft Graph API (REST), which supports Intune workflows related to role-based access control (RBAC).
|
|
35076
35748
|
*/
|
|
@@ -35191,6 +35863,9 @@ namespace reference.`microsoft.graph` {
|
|
|
35191
35863
|
riskState: riskState;
|
|
35192
35864
|
}
|
|
35193
35865
|
|
|
35866
|
+
@entity model riskyAgentDiscoveredAgentIdentity extends riskyAgent {
|
|
35867
|
+
}
|
|
35868
|
+
|
|
35194
35869
|
@entity model riskyAgentIdentity extends riskyAgent {
|
|
35195
35870
|
@references agentIdentity: agentIdentity | null;
|
|
35196
35871
|
}
|
|
@@ -35317,6 +35992,27 @@ namespace reference.`microsoft.graph` {
|
|
|
35317
35992
|
*/
|
|
35318
35993
|
@contains deviceManagement: rbacApplicationMultiple | null;
|
|
35319
35994
|
@contains directory: rbacApplication | null;
|
|
35995
|
+
@contains enterpriseApps: rbacApplication[];
|
|
35996
|
+
}
|
|
35997
|
+
|
|
35998
|
+
@entity model roleManagementAlert extends entity {
|
|
35999
|
+
@contains alertConfigurations: unifiedRoleManagementAlertConfiguration[];
|
|
36000
|
+
@contains alertDefinitions: unifiedRoleManagementAlertDefinition[];
|
|
36001
|
+
@contains alerts: unifiedRoleManagementAlert[];
|
|
36002
|
+
@contains operations: longRunningOperation[];
|
|
36003
|
+
}
|
|
36004
|
+
|
|
36005
|
+
@entity model rolesAssignedOutsidePrivilegedIdentityManagementAlertConfiguration extends unifiedRoleManagementAlertConfiguration {
|
|
36006
|
+
}
|
|
36007
|
+
|
|
36008
|
+
@entity model rolesAssignedOutsidePrivilegedIdentityManagementAlertIncident extends unifiedRoleManagementAlertIncident {
|
|
36009
|
+
assigneeDisplayName: string | null;
|
|
36010
|
+
assigneeId: string | null;
|
|
36011
|
+
assigneeUserPrincipalName: string | null;
|
|
36012
|
+
assignmentCreatedDateTime: offsetDateTime | null;
|
|
36013
|
+
roleDefinitionId: string | null;
|
|
36014
|
+
roleDisplayName: string | null;
|
|
36015
|
+
roleTemplateId: string | null;
|
|
35320
36016
|
}
|
|
35321
36017
|
|
|
35322
36018
|
/**
|
|
@@ -35351,6 +36047,28 @@ namespace reference.`microsoft.graph` {
|
|
|
35351
36047
|
target: deviceAndAppManagementAssignmentTarget | null;
|
|
35352
36048
|
}
|
|
35353
36049
|
|
|
36050
|
+
@entity model room extends place {
|
|
36051
|
+
audioDeviceName: string | null;
|
|
36052
|
+
bookingType: bookingType | null;
|
|
36053
|
+
building: string | null;
|
|
36054
|
+
capacity: int32 | null;
|
|
36055
|
+
displayDeviceName: string | null;
|
|
36056
|
+
emailAddress: string | null;
|
|
36057
|
+
floorLabel: string | null;
|
|
36058
|
+
floorNumber: int32 | null;
|
|
36059
|
+
isTeamsEnabled: boolean;
|
|
36060
|
+
nickname: string;
|
|
36061
|
+
placeId: string | null;
|
|
36062
|
+
teamsEnabledState: placeFeatureEnablement;
|
|
36063
|
+
videoDeviceName: string | null;
|
|
36064
|
+
}
|
|
36065
|
+
|
|
36066
|
+
@entity model roomList extends place {
|
|
36067
|
+
emailAddress: string | null;
|
|
36068
|
+
@contains rooms: room[];
|
|
36069
|
+
@contains workspaces: workspace[];
|
|
36070
|
+
}
|
|
36071
|
+
|
|
35354
36072
|
@entity model samlOrWsFedExternalDomainFederation extends samlOrWsFedProvider {
|
|
35355
36073
|
@contains domains: externalDomainName[];
|
|
35356
36074
|
}
|
|
@@ -35378,9 +36096,18 @@ namespace reference.`microsoft.graph` {
|
|
|
35378
36096
|
roleMemberInfo: identity;
|
|
35379
36097
|
}
|
|
35380
36098
|
|
|
36099
|
+
@entity model section extends place {
|
|
36100
|
+
}
|
|
36101
|
+
|
|
36102
|
+
@entity model sectionMap extends baseMapFeature {
|
|
36103
|
+
placeId: string | null;
|
|
36104
|
+
}
|
|
36105
|
+
|
|
35381
36106
|
/**
|
|
35382
36107
|
* The security baseline per category compliance state summary for the security baseline of the account.
|
|
35383
36108
|
*/
|
|
36109
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
36110
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
35384
36111
|
@entity model securityBaselineCategoryStateSummary extends securityBaselineStateSummary {
|
|
35385
36112
|
/**
|
|
35386
36113
|
* The category name
|
|
@@ -35391,6 +36118,7 @@ namespace reference.`microsoft.graph` {
|
|
|
35391
36118
|
/**
|
|
35392
36119
|
* The security baseline compliance state summary of the security baseline for a device.
|
|
35393
36120
|
*/
|
|
36121
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
35394
36122
|
@entity model securityBaselineDeviceState extends entity {
|
|
35395
36123
|
/**
|
|
35396
36124
|
* Display name of the device
|
|
@@ -35417,6 +36145,7 @@ namespace reference.`microsoft.graph` {
|
|
|
35417
36145
|
/**
|
|
35418
36146
|
* The security baseline compliance state of a setting for a device
|
|
35419
36147
|
*/
|
|
36148
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
35420
36149
|
@entity model securityBaselineSettingState extends entity {
|
|
35421
36150
|
/**
|
|
35422
36151
|
* The policies that contribute to this setting instance
|
|
@@ -35455,6 +36184,7 @@ namespace reference.`microsoft.graph` {
|
|
|
35455
36184
|
/**
|
|
35456
36185
|
* Security baseline state for a device.
|
|
35457
36186
|
*/
|
|
36187
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
35458
36188
|
@entity model securityBaselineState extends entity {
|
|
35459
36189
|
/**
|
|
35460
36190
|
* The display name of the security baseline
|
|
@@ -35475,12 +36205,15 @@ namespace reference.`microsoft.graph` {
|
|
|
35475
36205
|
/**
|
|
35476
36206
|
* The security baseline state for different settings for a device
|
|
35477
36207
|
*/
|
|
36208
|
+
|
|
36209
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
35478
36210
|
@contains settingStates: securityBaselineSettingState[];
|
|
35479
36211
|
}
|
|
35480
36212
|
|
|
35481
36213
|
/**
|
|
35482
36214
|
* The security baseline compliance state summary for the security baseline of the account.
|
|
35483
36215
|
*/
|
|
36216
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
35484
36217
|
@entity model securityBaselineStateSummary extends entity {
|
|
35485
36218
|
/**
|
|
35486
36219
|
* Number of conflict devices
|
|
@@ -35515,14 +36248,20 @@ namespace reference.`microsoft.graph` {
|
|
|
35515
36248
|
/**
|
|
35516
36249
|
* The security baseline per category device state summary
|
|
35517
36250
|
*/
|
|
36251
|
+
|
|
36252
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
35518
36253
|
@contains categoryDeviceStateSummaries: securityBaselineCategoryStateSummary[];
|
|
35519
36254
|
/**
|
|
35520
36255
|
* The security baseline device states
|
|
35521
36256
|
*/
|
|
36257
|
+
|
|
36258
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
35522
36259
|
@contains deviceStates: securityBaselineDeviceState[];
|
|
35523
36260
|
/**
|
|
35524
36261
|
* The security baseline device state summary
|
|
35525
36262
|
*/
|
|
36263
|
+
|
|
36264
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
35526
36265
|
@contains deviceStateSummary: securityBaselineStateSummary | null;
|
|
35527
36266
|
}
|
|
35528
36267
|
|
|
@@ -35560,6 +36299,23 @@ namespace reference.`microsoft.graph` {
|
|
|
35560
36299
|
@references managedDevices: vulnerableManagedDevice[];
|
|
35561
36300
|
}
|
|
35562
36301
|
|
|
36302
|
+
@entity model sequentialActivationRenewalsAlertConfiguration extends unifiedRoleManagementAlertConfiguration {
|
|
36303
|
+
sequentialActivationCounterThreshold: int32 | null;
|
|
36304
|
+
timeIntervalBetweenActivations: duration | null;
|
|
36305
|
+
}
|
|
36306
|
+
|
|
36307
|
+
@entity model sequentialActivationRenewalsAlertIncident extends unifiedRoleManagementAlertIncident {
|
|
36308
|
+
activationCount: int32 | null;
|
|
36309
|
+
assigneeDisplayName: string | null;
|
|
36310
|
+
assigneeId: string | null;
|
|
36311
|
+
assigneeUserPrincipalName: string | null;
|
|
36312
|
+
roleDefinitionId: string | null;
|
|
36313
|
+
roleDisplayName: string | null;
|
|
36314
|
+
roleTemplateId: string | null;
|
|
36315
|
+
sequenceEndDateTime: offsetDateTime | null;
|
|
36316
|
+
sequenceStartDateTime: offsetDateTime | null;
|
|
36317
|
+
}
|
|
36318
|
+
|
|
35563
36319
|
@entity model serviceActivity extends entity {
|
|
35564
36320
|
}
|
|
35565
36321
|
|
|
@@ -36245,6 +37001,21 @@ namespace reference.`microsoft.graph` {
|
|
|
36245
37001
|
unknownUserCount: int32;
|
|
36246
37002
|
}
|
|
36247
37003
|
|
|
37004
|
+
@entity model staleSignInAlertConfiguration extends unifiedRoleManagementAlertConfiguration {
|
|
37005
|
+
`duration`: duration | null;
|
|
37006
|
+
}
|
|
37007
|
+
|
|
37008
|
+
@entity model staleSignInAlertIncident extends unifiedRoleManagementAlertIncident {
|
|
37009
|
+
assigneeDisplayName: string | null;
|
|
37010
|
+
assigneeId: string | null;
|
|
37011
|
+
assigneeUserPrincipalName: string | null;
|
|
37012
|
+
assignmentCreatedDateTime: offsetDateTime | null;
|
|
37013
|
+
@computed lastSignInDateTime: offsetDateTime | null;
|
|
37014
|
+
roleDefinitionId: string | null;
|
|
37015
|
+
roleDisplayName: string | null;
|
|
37016
|
+
roleTemplateId: string | null;
|
|
37017
|
+
}
|
|
37018
|
+
|
|
36248
37019
|
@entity model standardWebPart extends webPart {
|
|
36249
37020
|
containerTextWebPartId: string | null;
|
|
36250
37021
|
data: webPartData | null;
|
|
@@ -36617,6 +37388,17 @@ namespace reference.`microsoft.graph` {
|
|
|
36617
37388
|
@entity model tokenLifetimePolicy extends stsPolicy {
|
|
36618
37389
|
}
|
|
36619
37390
|
|
|
37391
|
+
@entity model tooManyGlobalAdminsAssignedToTenantAlertConfiguration extends unifiedRoleManagementAlertConfiguration {
|
|
37392
|
+
globalAdminCountThreshold: int32 | null;
|
|
37393
|
+
percentageOfGlobalAdminsOutOfRolesThreshold: int32 | null;
|
|
37394
|
+
}
|
|
37395
|
+
|
|
37396
|
+
@entity model tooManyGlobalAdminsAssignedToTenantAlertIncident extends unifiedRoleManagementAlertIncident {
|
|
37397
|
+
assigneeDisplayName: string | null;
|
|
37398
|
+
assigneeId: string | null;
|
|
37399
|
+
assigneeUserPrincipalName: string | null;
|
|
37400
|
+
}
|
|
37401
|
+
|
|
36620
37402
|
@abstract
|
|
36621
37403
|
@entity model trustedCertificateAuthorityAsEntityBase extends directoryObject {
|
|
36622
37404
|
@contains trustedCertificateAuthorities: certificateAuthorityAsEntity[];
|
|
@@ -36673,6 +37455,42 @@ namespace reference.`microsoft.graph` {
|
|
|
36673
37455
|
@references roleDefinition: unifiedRoleDefinition | null;
|
|
36674
37456
|
}
|
|
36675
37457
|
|
|
37458
|
+
@entity model unifiedRoleAssignmentSchedule extends unifiedRoleScheduleBase {
|
|
37459
|
+
assignmentType: string | null;
|
|
37460
|
+
memberType: string | null;
|
|
37461
|
+
scheduleInfo: requestSchedule | null;
|
|
37462
|
+
@references activatedUsing: unifiedRoleEligibilitySchedule | null;
|
|
37463
|
+
}
|
|
37464
|
+
|
|
37465
|
+
@entity model unifiedRoleAssignmentScheduleInstance extends unifiedRoleScheduleInstanceBase {
|
|
37466
|
+
assignmentType: string | null;
|
|
37467
|
+
endDateTime: offsetDateTime | null;
|
|
37468
|
+
memberType: string | null;
|
|
37469
|
+
roleAssignmentOriginId: string | null;
|
|
37470
|
+
roleAssignmentScheduleId: string | null;
|
|
37471
|
+
startDateTime: offsetDateTime | null;
|
|
37472
|
+
@references activatedUsing: unifiedRoleEligibilityScheduleInstance | null;
|
|
37473
|
+
}
|
|
37474
|
+
|
|
37475
|
+
@entity model unifiedRoleAssignmentScheduleRequest extends request {
|
|
37476
|
+
action: string | null;
|
|
37477
|
+
appScopeId: string | null;
|
|
37478
|
+
directoryScopeId: string | null;
|
|
37479
|
+
isValidationOnly: boolean | null;
|
|
37480
|
+
justification: string | null;
|
|
37481
|
+
principalId: string | null;
|
|
37482
|
+
roleDefinitionId: string | null;
|
|
37483
|
+
scheduleInfo: requestSchedule | null;
|
|
37484
|
+
targetScheduleId: string | null;
|
|
37485
|
+
ticketInfo: ticketInfo | null;
|
|
37486
|
+
@references activatedUsing: unifiedRoleEligibilitySchedule | null;
|
|
37487
|
+
@references appScope: appScope | null;
|
|
37488
|
+
@references directoryScope: directoryObject | null;
|
|
37489
|
+
@references principal: directoryObject | null;
|
|
37490
|
+
@references roleDefinition: unifiedRoleDefinition | null;
|
|
37491
|
+
@references targetSchedule: unifiedRoleAssignmentSchedule | null;
|
|
37492
|
+
}
|
|
37493
|
+
|
|
36676
37494
|
@entity model unifiedRoleDefinition extends entity {
|
|
36677
37495
|
allowedPrincipalTypes: allowedRolePrincipalTypes | null;
|
|
36678
37496
|
description: string | null;
|
|
@@ -36687,6 +37505,156 @@ namespace reference.`microsoft.graph` {
|
|
|
36687
37505
|
@contains inheritsPermissionsFrom: unifiedRoleDefinition[];
|
|
36688
37506
|
}
|
|
36689
37507
|
|
|
37508
|
+
@entity model unifiedRoleEligibilitySchedule extends unifiedRoleScheduleBase {
|
|
37509
|
+
memberType: string | null;
|
|
37510
|
+
scheduleInfo: requestSchedule | null;
|
|
37511
|
+
}
|
|
37512
|
+
|
|
37513
|
+
@entity model unifiedRoleEligibilityScheduleInstance extends unifiedRoleScheduleInstanceBase {
|
|
37514
|
+
endDateTime: offsetDateTime | null;
|
|
37515
|
+
memberType: string | null;
|
|
37516
|
+
roleEligibilityScheduleId: string | null;
|
|
37517
|
+
startDateTime: offsetDateTime | null;
|
|
37518
|
+
}
|
|
37519
|
+
|
|
37520
|
+
@entity model unifiedRoleEligibilityScheduleRequest extends request {
|
|
37521
|
+
action: string | null;
|
|
37522
|
+
appScopeId: string | null;
|
|
37523
|
+
directoryScopeId: string | null;
|
|
37524
|
+
isValidationOnly: boolean | null;
|
|
37525
|
+
justification: string | null;
|
|
37526
|
+
principalId: string | null;
|
|
37527
|
+
roleDefinitionId: string | null;
|
|
37528
|
+
scheduleInfo: requestSchedule | null;
|
|
37529
|
+
targetScheduleId: string | null;
|
|
37530
|
+
ticketInfo: ticketInfo | null;
|
|
37531
|
+
@references appScope: appScope | null;
|
|
37532
|
+
@references directoryScope: directoryObject | null;
|
|
37533
|
+
@references principal: directoryObject | null;
|
|
37534
|
+
@references roleDefinition: unifiedRoleDefinition | null;
|
|
37535
|
+
@references targetSchedule: unifiedRoleEligibilitySchedule | null;
|
|
37536
|
+
}
|
|
37537
|
+
|
|
37538
|
+
@entity model unifiedRoleManagementAlert extends entity {
|
|
37539
|
+
alertDefinitionId: string | null;
|
|
37540
|
+
incidentCount: int32 | null;
|
|
37541
|
+
isActive: boolean | null;
|
|
37542
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
37543
|
+
@computed lastScannedDateTime: offsetDateTime | null;
|
|
37544
|
+
scopeId: string | null;
|
|
37545
|
+
scopeType: string | null;
|
|
37546
|
+
@references alertConfiguration: unifiedRoleManagementAlertConfiguration | null;
|
|
37547
|
+
@references alertDefinition: unifiedRoleManagementAlertDefinition | null;
|
|
37548
|
+
@contains alertIncidents: unifiedRoleManagementAlertIncident[];
|
|
37549
|
+
}
|
|
37550
|
+
|
|
37551
|
+
@abstract
|
|
37552
|
+
@entity model unifiedRoleManagementAlertConfiguration extends entity {
|
|
37553
|
+
alertDefinitionId: string | null;
|
|
37554
|
+
isEnabled: boolean | null;
|
|
37555
|
+
scopeId: string | null;
|
|
37556
|
+
scopeType: string | null;
|
|
37557
|
+
@references alertDefinition: unifiedRoleManagementAlertDefinition | null;
|
|
37558
|
+
}
|
|
37559
|
+
|
|
37560
|
+
@entity model unifiedRoleManagementAlertDefinition extends entity {
|
|
37561
|
+
description: string | null;
|
|
37562
|
+
displayName: string | null;
|
|
37563
|
+
howToPrevent: string | null;
|
|
37564
|
+
isConfigurable: boolean | null;
|
|
37565
|
+
isRemediatable: boolean | null;
|
|
37566
|
+
mitigationSteps: string | null;
|
|
37567
|
+
scopeId: string | null;
|
|
37568
|
+
scopeType: string | null;
|
|
37569
|
+
securityImpact: string | null;
|
|
37570
|
+
severityLevel: alertSeverity | null;
|
|
37571
|
+
}
|
|
37572
|
+
|
|
37573
|
+
@abstract
|
|
37574
|
+
@entity model unifiedRoleManagementAlertIncident extends entity {
|
|
37575
|
+
}
|
|
37576
|
+
|
|
37577
|
+
@entity model unifiedRoleManagementPolicy extends entity {
|
|
37578
|
+
description: string;
|
|
37579
|
+
displayName: string;
|
|
37580
|
+
isOrganizationDefault: boolean | null;
|
|
37581
|
+
lastModifiedBy: identity | null;
|
|
37582
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
37583
|
+
scopeId: string;
|
|
37584
|
+
scopeType: string;
|
|
37585
|
+
@contains effectiveRules: unifiedRoleManagementPolicyRule[];
|
|
37586
|
+
@contains rules: unifiedRoleManagementPolicyRule[];
|
|
37587
|
+
}
|
|
37588
|
+
|
|
37589
|
+
@entity model unifiedRoleManagementPolicyApprovalRule extends unifiedRoleManagementPolicyRule {
|
|
37590
|
+
setting: approvalSettings | null;
|
|
37591
|
+
}
|
|
37592
|
+
|
|
37593
|
+
@entity model unifiedRoleManagementPolicyAssignment extends entity {
|
|
37594
|
+
policyId: string;
|
|
37595
|
+
roleDefinitionId: string | null;
|
|
37596
|
+
scopeId: string;
|
|
37597
|
+
scopeType: string;
|
|
37598
|
+
@references policy: unifiedRoleManagementPolicy | null;
|
|
37599
|
+
}
|
|
37600
|
+
|
|
37601
|
+
@entity model unifiedRoleManagementPolicyAuthenticationContextRule extends unifiedRoleManagementPolicyRule {
|
|
37602
|
+
claimValue: string | null;
|
|
37603
|
+
isEnabled: boolean | null;
|
|
37604
|
+
}
|
|
37605
|
+
|
|
37606
|
+
@entity model unifiedRoleManagementPolicyEnablementRule extends unifiedRoleManagementPolicyRule {
|
|
37607
|
+
enabledRules: string[] | null;
|
|
37608
|
+
}
|
|
37609
|
+
|
|
37610
|
+
@entity model unifiedRoleManagementPolicyExpirationRule extends unifiedRoleManagementPolicyRule {
|
|
37611
|
+
isExpirationRequired: boolean | null;
|
|
37612
|
+
maximumDuration: duration | null;
|
|
37613
|
+
}
|
|
37614
|
+
|
|
37615
|
+
@entity model unifiedRoleManagementPolicyNotificationRule extends unifiedRoleManagementPolicyRule {
|
|
37616
|
+
isDefaultRecipientsEnabled: boolean | null;
|
|
37617
|
+
notificationLevel: string | null;
|
|
37618
|
+
notificationRecipients: string[] | null;
|
|
37619
|
+
notificationType: string | null;
|
|
37620
|
+
recipientType: string | null;
|
|
37621
|
+
}
|
|
37622
|
+
|
|
37623
|
+
@abstract
|
|
37624
|
+
@entity model unifiedRoleManagementPolicyRule extends entity {
|
|
37625
|
+
target: unifiedRoleManagementPolicyRuleTarget | null;
|
|
37626
|
+
}
|
|
37627
|
+
|
|
37628
|
+
@entity model unifiedRoleScheduleBase extends entity {
|
|
37629
|
+
appScopeId: string | null;
|
|
37630
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
37631
|
+
createdUsing: string | null;
|
|
37632
|
+
directoryScopeId: string | null;
|
|
37633
|
+
modifiedDateTime: offsetDateTime | null;
|
|
37634
|
+
principalId: string | null;
|
|
37635
|
+
roleDefinitionId: string | null;
|
|
37636
|
+
status: string | null;
|
|
37637
|
+
@references appScope: appScope | null;
|
|
37638
|
+
@references directoryScope: directoryObject | null;
|
|
37639
|
+
@references principal: directoryObject | null;
|
|
37640
|
+
@references roleDefinition: unifiedRoleDefinition | null;
|
|
37641
|
+
}
|
|
37642
|
+
|
|
37643
|
+
@entity model unifiedRoleScheduleInstanceBase extends entity {
|
|
37644
|
+
appScopeId: string | null;
|
|
37645
|
+
directoryScopeId: string | null;
|
|
37646
|
+
principalId: string | null;
|
|
37647
|
+
roleDefinitionId: string | null;
|
|
37648
|
+
@references appScope: appScope | null;
|
|
37649
|
+
@references directoryScope: directoryObject | null;
|
|
37650
|
+
@references principal: directoryObject | null;
|
|
37651
|
+
@references roleDefinition: unifiedRoleDefinition | null;
|
|
37652
|
+
}
|
|
37653
|
+
|
|
37654
|
+
@entity model unitMap extends baseMapFeature {
|
|
37655
|
+
placeId: string | null;
|
|
37656
|
+
}
|
|
37657
|
+
|
|
36690
37658
|
/**
|
|
36691
37659
|
* This task derived type represents a list of unmanaged devices discovered in the network.
|
|
36692
37660
|
*/
|
|
@@ -36744,6 +37712,7 @@ namespace reference.`microsoft.graph` {
|
|
|
36744
37712
|
birthday: offsetDateTime;
|
|
36745
37713
|
businessPhones: string[];
|
|
36746
37714
|
city: string | null;
|
|
37715
|
+
cloudLicensing: reference.`microsoft.graph.cloudLicensing`.userCloudLicensing | null;
|
|
36747
37716
|
cloudRealtimeCommunicationInfo: cloudRealtimeCommunicationInfo | null;
|
|
36748
37717
|
companyName: string | null;
|
|
36749
37718
|
consentProvidedForMinor: string | null;
|
|
@@ -38877,6 +39846,10 @@ namespace reference.`microsoft.graph` {
|
|
|
38877
39846
|
os: string | null;
|
|
38878
39847
|
}
|
|
38879
39848
|
|
|
39849
|
+
@entity model uxSetting extends entity {
|
|
39850
|
+
restrictNonAdminAccess: nonAdminSetting;
|
|
39851
|
+
}
|
|
39852
|
+
|
|
38880
39853
|
@entity model verticalSection extends entity {
|
|
38881
39854
|
emphasis: sectionEmphasisType | null;
|
|
38882
39855
|
@contains webparts: webPart[];
|
|
@@ -43712,7 +44685,11 @@ namespace reference.`microsoft.graph` {
|
|
|
43712
44685
|
*/
|
|
43713
44686
|
@entity model windowsManagedAppProtection extends managedAppPolicy {
|
|
43714
44687
|
/**
|
|
43715
|
-
*
|
|
44688
|
+
* When allowedInboundDataTransferSources is set to selectedApps, this property indicates the location from which data is allowed to be received into the org context. Data from the selected source will be treated as org data and subject to Intune app protection policy.
|
|
44689
|
+
*/
|
|
44690
|
+
allowedInboundDataTransferSourceApps: windowsManagedAppDataTransferLocations;
|
|
44691
|
+
/**
|
|
44692
|
+
* Indicates the sources from which data is allowed to be transferred. Some possible values are allApps, none, or selectedApps.
|
|
43716
44693
|
*/
|
|
43717
44694
|
allowedInboundDataTransferSources: windowsManagedAppDataTransferLevel;
|
|
43718
44695
|
/**
|
|
@@ -43720,7 +44697,11 @@ namespace reference.`microsoft.graph` {
|
|
|
43720
44697
|
*/
|
|
43721
44698
|
allowedOutboundClipboardSharingLevel: windowsManagedAppClipboardSharingLevel;
|
|
43722
44699
|
/**
|
|
43723
|
-
*
|
|
44700
|
+
* When allowedOutboundDataTransferDestinations is set to selectedApps, this property indicates the location to which org data is allowed to be transferred. Data shared with the selected destination is not protected by Intune app protection policy.
|
|
44701
|
+
*/
|
|
44702
|
+
allowedOutboundDataTransferDestinationApps: windowsManagedAppDataTransferLocations;
|
|
44703
|
+
/**
|
|
44704
|
+
* Indicates the destinations to which data is allowed to be transferred. Some possible values are allApps, none, or selectedApps.
|
|
43724
44705
|
*/
|
|
43725
44706
|
allowedOutboundDataTransferDestinations: windowsManagedAppDataTransferLevel;
|
|
43726
44707
|
/**
|
|
@@ -45263,6 +46244,53 @@ namespace reference.`microsoft.graph` {
|
|
|
45263
46244
|
packageIdentifier: string | null;
|
|
45264
46245
|
}
|
|
45265
46246
|
|
|
46247
|
+
@entity model workplace extends MsGraph.SharedModels.entity {
|
|
46248
|
+
@contains sensorDevices: workplaceSensorDevice[];
|
|
46249
|
+
}
|
|
46250
|
+
|
|
46251
|
+
@entity model workplaceSensorDevice extends entity {
|
|
46252
|
+
/**
|
|
46253
|
+
* The description of the device.
|
|
46254
|
+
*/
|
|
46255
|
+
description: string | null;
|
|
46256
|
+
/**
|
|
46257
|
+
* The unique identifier of the device set by the user.
|
|
46258
|
+
*/
|
|
46259
|
+
deviceId: string;
|
|
46260
|
+
/**
|
|
46261
|
+
* The display name of the device.
|
|
46262
|
+
*/
|
|
46263
|
+
displayName: string | null;
|
|
46264
|
+
/**
|
|
46265
|
+
* The IPv4 Address of the device.
|
|
46266
|
+
*/
|
|
46267
|
+
ipV4Address: string | null;
|
|
46268
|
+
/**
|
|
46269
|
+
* The IPv6 Address of the device.
|
|
46270
|
+
*/
|
|
46271
|
+
ipV6Address: string | null;
|
|
46272
|
+
/**
|
|
46273
|
+
* The MAC address of the device.
|
|
46274
|
+
*/
|
|
46275
|
+
macAddress: string | null;
|
|
46276
|
+
/**
|
|
46277
|
+
* The manufacturer of the device.
|
|
46278
|
+
*/
|
|
46279
|
+
manufacturer: string;
|
|
46280
|
+
/**
|
|
46281
|
+
* The unique identifier of the place where the device is located.
|
|
46282
|
+
*/
|
|
46283
|
+
placeId: string | null;
|
|
46284
|
+
/**
|
|
46285
|
+
* A list of sensors associated with the device. Sensors can measure physical quantities such as temperature, humidity, occupancy, etc.
|
|
46286
|
+
*/
|
|
46287
|
+
sensors: workplaceSensor[];
|
|
46288
|
+
/**
|
|
46289
|
+
* A list of custom tags associated with the device.
|
|
46290
|
+
*/
|
|
46291
|
+
tags: string[] | null;
|
|
46292
|
+
}
|
|
46293
|
+
|
|
45266
46294
|
@entity model workPosition extends itemFacet {
|
|
45267
46295
|
categories: string[] | null;
|
|
45268
46296
|
colleagues: relatedPerson[] | null;
|
|
@@ -45271,6 +46299,18 @@ namespace reference.`microsoft.graph` {
|
|
|
45271
46299
|
manager: relatedPerson | null;
|
|
45272
46300
|
}
|
|
45273
46301
|
|
|
46302
|
+
@entity model workspace extends place {
|
|
46303
|
+
building: string | null;
|
|
46304
|
+
capacity: int32 | null;
|
|
46305
|
+
displayDeviceName: string | null;
|
|
46306
|
+
emailAddress: string | null;
|
|
46307
|
+
floorLabel: string | null;
|
|
46308
|
+
floorNumber: int32 | null;
|
|
46309
|
+
mode: placeMode | null;
|
|
46310
|
+
nickname: string;
|
|
46311
|
+
placeId: string | null;
|
|
46312
|
+
}
|
|
46313
|
+
|
|
45274
46314
|
@entity model x509CertificateCombinationConfiguration extends authenticationCombinationConfiguration {
|
|
45275
46315
|
allowedIssuerSkis: string[];
|
|
45276
46316
|
allowedPolicyOIDs: string[];
|
|
@@ -45537,6 +46577,7 @@ namespace reference.`microsoft.graph` {
|
|
|
45537
46577
|
unknownFutureValue: 2,
|
|
45538
46578
|
agentIdentityBlueprintPrincipal: 3,
|
|
45539
46579
|
user: 4,
|
|
46580
|
+
discoveredAgentIdentity: 5,
|
|
45540
46581
|
}
|
|
45541
46582
|
|
|
45542
46583
|
enum agentIdRiskLevel {
|
|
@@ -45567,6 +46608,15 @@ namespace reference.`microsoft.graph` {
|
|
|
45567
46608
|
unknownFutureValue: 3,
|
|
45568
46609
|
}
|
|
45569
46610
|
|
|
46611
|
+
enum alertSeverity {
|
|
46612
|
+
`unknown`: 0,
|
|
46613
|
+
informational: 1,
|
|
46614
|
+
low: 2,
|
|
46615
|
+
medium: 3,
|
|
46616
|
+
high: 4,
|
|
46617
|
+
unknownFutureValue: 127,
|
|
46618
|
+
}
|
|
46619
|
+
|
|
45570
46620
|
@graphFlags
|
|
45571
46621
|
enum allowedAudiences {
|
|
45572
46622
|
me: 0,
|
|
@@ -46657,18 +47707,6 @@ namespace reference.`microsoft.graph` {
|
|
|
46657
47707
|
*/
|
|
46658
47708
|
wpaPersonal: 4,
|
|
46659
47709
|
unknownFutureValue: 5,
|
|
46660
|
-
/**
|
|
46661
|
-
* Indicates Android Wi-Fi Security Type is set to WPA2. If supported by the platform, the device will attempt WPA3 first and will fall back to WPA2 if necessary. This restricts the preSharedKey to a string between 8 and 64 characters long. Use AndroidWorkProfileWifiConfiguration to configure basic Wi-Fi options.
|
|
46662
|
-
*/
|
|
46663
|
-
wpa2Personal: 6,
|
|
46664
|
-
/**
|
|
46665
|
-
* Indicates Android Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2. This restricts the preSharedKey to a string between 8 and 64 characters long. Use AndroidWorkProfileWifiConfiguration to configure basic Wi-Fi options.
|
|
46666
|
-
*/
|
|
46667
|
-
wpa3Personal: 7,
|
|
46668
|
-
/**
|
|
46669
|
-
* Indicates Android Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2. Must use AndroidWorkProfileEnterpriseWifiConfiguration type to configure enterprise options.
|
|
46670
|
-
*/
|
|
46671
|
-
wpa3Enterprise: 8,
|
|
46672
47710
|
}
|
|
46673
47711
|
|
|
46674
47712
|
/**
|
|
@@ -46843,22 +47881,6 @@ namespace reference.`microsoft.graph` {
|
|
|
46843
47881
|
*/
|
|
46844
47882
|
wpaEnterprise: 4,
|
|
46845
47883
|
unknownFutureValue: 5,
|
|
46846
|
-
/**
|
|
46847
|
-
* Indicates the Wi-Fi Security Type is set to WPA2. If supported by the platform, the device will attempt WPA3 first and will fall back to WPA2 if necessary.
|
|
46848
|
-
*/
|
|
46849
|
-
wpa2Personal: 6,
|
|
46850
|
-
/**
|
|
46851
|
-
* Indicates the Wi-Fi Security Type is set to WPA2. If supported by the platform, the device will attempt WPA3 first and will fall back to WPA2 if necessary. Must use AOSPDeviceOwnerEnterpriseWifiConfiguration type to configure enterprise options.
|
|
46852
|
-
*/
|
|
46853
|
-
wpa2Enterprise: 7,
|
|
46854
|
-
/**
|
|
46855
|
-
* Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2.
|
|
46856
|
-
*/
|
|
46857
|
-
wpa3Personal: 8,
|
|
46858
|
-
/**
|
|
46859
|
-
* Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2. Must use AOSPDeviceOwnerEnterpriseWifiConfiguration type to configure enterprise options.
|
|
46860
|
-
*/
|
|
46861
|
-
wpa3Enterprise: 9,
|
|
46862
47884
|
}
|
|
46863
47885
|
|
|
46864
47886
|
/**
|
|
@@ -47473,6 +48495,23 @@ namespace reference.`microsoft.graph` {
|
|
|
47473
48495
|
enrollmentRestrictions: 1,
|
|
47474
48496
|
}
|
|
47475
48497
|
|
|
48498
|
+
enum assignmentScheduleFilterByCurrentUserOptions {
|
|
48499
|
+
principal: 1,
|
|
48500
|
+
unknownFutureValue: 2,
|
|
48501
|
+
}
|
|
48502
|
+
|
|
48503
|
+
enum assignmentScheduleInstanceFilterByCurrentUserOptions {
|
|
48504
|
+
principal: 1,
|
|
48505
|
+
unknownFutureValue: 2,
|
|
48506
|
+
}
|
|
48507
|
+
|
|
48508
|
+
enum assignmentScheduleRequestFilterByCurrentUserOptions {
|
|
48509
|
+
principal: 1,
|
|
48510
|
+
createdBy: 2,
|
|
48511
|
+
approver: 3,
|
|
48512
|
+
unknownFutureValue: 4,
|
|
48513
|
+
}
|
|
48514
|
+
|
|
47476
48515
|
/**
|
|
47477
48516
|
* This enum represents associated assignment payload type
|
|
47478
48517
|
*/
|
|
@@ -47978,6 +49017,13 @@ namespace reference.`microsoft.graph` {
|
|
|
47978
49017
|
html: 1,
|
|
47979
49018
|
}
|
|
47980
49019
|
|
|
49020
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
49021
|
+
enum bookingType {
|
|
49022
|
+
`unknown`: 0,
|
|
49023
|
+
standard: 1,
|
|
49024
|
+
reserved: 2,
|
|
49025
|
+
}
|
|
49026
|
+
|
|
47981
49027
|
/**
|
|
47982
49028
|
* Allow(Not Configured) or prevent(Block) the syncing of Microsoft Edge Browser settings. Option to prevent syncing across devices, but allow user override.
|
|
47983
49029
|
*/
|
|
@@ -48254,6 +49300,14 @@ namespace reference.`microsoft.graph` {
|
|
|
48254
49300
|
mobileUnknown: 103,
|
|
48255
49301
|
}
|
|
48256
49302
|
|
|
49303
|
+
enum checkInMethod {
|
|
49304
|
+
unspecified: 0,
|
|
49305
|
+
manual: 1,
|
|
49306
|
+
inferred: 2,
|
|
49307
|
+
verified: 3,
|
|
49308
|
+
unknownFutureValue: 4,
|
|
49309
|
+
}
|
|
49310
|
+
|
|
48257
49311
|
/**
|
|
48258
49312
|
* The onboarding status of the tenant.
|
|
48259
49313
|
*/
|
|
@@ -49022,6 +50076,29 @@ namespace reference.`microsoft.graph` {
|
|
|
49022
50076
|
applicationProxy: 0,
|
|
49023
50077
|
}
|
|
49024
50078
|
|
|
50079
|
+
/**
|
|
50080
|
+
* The name of the health check metric being evaluated for an NDES connector.
|
|
50081
|
+
*/
|
|
50082
|
+
enum connectorHealthCheckMetricName {
|
|
50083
|
+
/**
|
|
50084
|
+
* Measures connectivity between the connector and the Certificate Authority.
|
|
50085
|
+
*/
|
|
50086
|
+
caConnectivity: 0,
|
|
50087
|
+
/**
|
|
50088
|
+
* Measures whether the connector has the required Enroll permission on the certificate template for issuance.
|
|
50089
|
+
*/
|
|
50090
|
+
caIssuancePermissions: 1,
|
|
50091
|
+
/**
|
|
50092
|
+
* Measures whether the connector has the required permissions to revoke certificates on the CA.
|
|
50093
|
+
*/
|
|
50094
|
+
caRevocationPermissions: 2,
|
|
50095
|
+
/**
|
|
50096
|
+
* Measures whether the configured certificate template is valid and accessible.
|
|
50097
|
+
*/
|
|
50098
|
+
certificateTemplate: 3,
|
|
50099
|
+
unknownFutureValue: 4,
|
|
50100
|
+
}
|
|
50101
|
+
|
|
49025
50102
|
/**
|
|
49026
50103
|
* Connector health state for connector status
|
|
49027
50104
|
*/
|
|
@@ -49241,6 +50318,44 @@ namespace reference.`microsoft.graph` {
|
|
|
49241
50318
|
saturday: 6,
|
|
49242
50319
|
}
|
|
49243
50320
|
|
|
50321
|
+
/**
|
|
50322
|
+
* Describes how and when to install an app, specifically whether the app may be downloaded over cellular connections. Maps to Apple's AppManagedInstallBehaviorObject declaration.
|
|
50323
|
+
*/
|
|
50324
|
+
enum ddmAppAllowDownloadsOverCellular {
|
|
50325
|
+
/**
|
|
50326
|
+
* The device downloads apps of any size using a cellular network.
|
|
50327
|
+
*/
|
|
50328
|
+
alwaysOn: 0,
|
|
50329
|
+
/**
|
|
50330
|
+
* 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.
|
|
50331
|
+
*/
|
|
50332
|
+
alwaysOff: 1,
|
|
50333
|
+
/**
|
|
50334
|
+
* The device uses the settings for the corresponding store when downloading apps.
|
|
50335
|
+
*/
|
|
50336
|
+
storeSettings: 2,
|
|
50337
|
+
unknownFutureValue: 3,
|
|
50338
|
+
}
|
|
50339
|
+
|
|
50340
|
+
/**
|
|
50341
|
+
* Specifies the update behavior of the apps installed via VPP. Apps in packages are not automatically updated. Maps to Apple's AppManagedUpdateBehaviorObject declaration.
|
|
50342
|
+
*/
|
|
50343
|
+
enum ddmAppAutomaticAppUpdates {
|
|
50344
|
+
/**
|
|
50345
|
+
* The device automatically updates the app to the latest version.
|
|
50346
|
+
*/
|
|
50347
|
+
alwaysOn: 0,
|
|
50348
|
+
/**
|
|
50349
|
+
* The device never automatically updates the app.
|
|
50350
|
+
*/
|
|
50351
|
+
alwaysOff: 1,
|
|
50352
|
+
/**
|
|
50353
|
+
* The device uses the settings for the corresponding store to determine when to automatically update the app.
|
|
50354
|
+
*/
|
|
50355
|
+
storeSettings: 2,
|
|
50356
|
+
unknownFutureValue: 3,
|
|
50357
|
+
}
|
|
50358
|
+
|
|
49244
50359
|
enum defaultMfaMethodType {
|
|
49245
50360
|
none: 0,
|
|
49246
50361
|
mobilePhone: 1,
|
|
@@ -51352,6 +52467,10 @@ namespace reference.`microsoft.graph` {
|
|
|
51352
52467
|
* Indicates the settings that can be deployed through the Android channel.
|
|
51353
52468
|
*/
|
|
51354
52469
|
android: 65536,
|
|
52470
|
+
/**
|
|
52471
|
+
* Setting can be deployed through the Intune Open Extensibility channel for scenarios such as Windows Recovery Environment (WinRE) configuration policies.
|
|
52472
|
+
*/
|
|
52473
|
+
intuneOpenExtensibility: 131072,
|
|
51355
52474
|
}
|
|
51356
52475
|
|
|
51357
52476
|
/**
|
|
@@ -53071,6 +54190,23 @@ namespace reference.`microsoft.graph` {
|
|
|
53071
54190
|
completed: 7,
|
|
53072
54191
|
}
|
|
53073
54192
|
|
|
54193
|
+
enum eligibilityScheduleFilterByCurrentUserOptions {
|
|
54194
|
+
principal: 1,
|
|
54195
|
+
unknownFutureValue: 2,
|
|
54196
|
+
}
|
|
54197
|
+
|
|
54198
|
+
enum eligibilityScheduleInstanceFilterByCurrentUserOptions {
|
|
54199
|
+
principal: 1,
|
|
54200
|
+
unknownFutureValue: 2,
|
|
54201
|
+
}
|
|
54202
|
+
|
|
54203
|
+
enum eligibilityScheduleRequestFilterByCurrentUserOptions {
|
|
54204
|
+
principal: 1,
|
|
54205
|
+
createdBy: 2,
|
|
54206
|
+
approver: 3,
|
|
54207
|
+
unknownFutureValue: 4,
|
|
54208
|
+
}
|
|
54209
|
+
|
|
53074
54210
|
/**
|
|
53075
54211
|
* Supported certificate sources for email signing and encryption.
|
|
53076
54212
|
*/
|
|
@@ -53604,6 +54740,176 @@ namespace reference.`microsoft.graph` {
|
|
|
53604
54740
|
IgnoreLookupReferenceResolutionFailure: 2,
|
|
53605
54741
|
}
|
|
53606
54742
|
|
|
54743
|
+
/**
|
|
54744
|
+
* Indicates the detailed error condition for an eSIM profile operation.
|
|
54745
|
+
*/
|
|
54746
|
+
enum eSimProfileErrorDetail {
|
|
54747
|
+
/**
|
|
54748
|
+
* No error.
|
|
54749
|
+
*/
|
|
54750
|
+
none: 0,
|
|
54751
|
+
/**
|
|
54752
|
+
* The eSIM card encountered a general failure.
|
|
54753
|
+
*/
|
|
54754
|
+
cardGeneralFailure: 1,
|
|
54755
|
+
/**
|
|
54756
|
+
* The confirmation code provided was incorrect.
|
|
54757
|
+
*/
|
|
54758
|
+
confirmationCodeIncorrect: 2,
|
|
54759
|
+
/**
|
|
54760
|
+
* The confirmation code was missing.
|
|
54761
|
+
*/
|
|
54762
|
+
confirmationCodeMissing: 3,
|
|
54763
|
+
/**
|
|
54764
|
+
* The maximum number of retries for the confirmation code was exceeded.
|
|
54765
|
+
*/
|
|
54766
|
+
confirmationCodeMaxRetriesExceeded: 4,
|
|
54767
|
+
/**
|
|
54768
|
+
* The operation is forbidden by policy.
|
|
54769
|
+
*/
|
|
54770
|
+
forbiddenByPolicy: 5,
|
|
54771
|
+
/**
|
|
54772
|
+
* The matching ID provided was invalid.
|
|
54773
|
+
*/
|
|
54774
|
+
invalidMatchingId: 6,
|
|
54775
|
+
/**
|
|
54776
|
+
* No eligible eSIM profile was found for this device.
|
|
54777
|
+
*/
|
|
54778
|
+
noEligibleProfileForThisDevice: 7,
|
|
54779
|
+
/**
|
|
54780
|
+
* There was not enough space on the eSIM card.
|
|
54781
|
+
*/
|
|
54782
|
+
notEnoughSpaceOnCard: 8,
|
|
54783
|
+
/**
|
|
54784
|
+
* The operation was aborted.
|
|
54785
|
+
*/
|
|
54786
|
+
operationAborted: 9,
|
|
54787
|
+
/**
|
|
54788
|
+
* The eSIM profile EID did not match the device.
|
|
54789
|
+
*/
|
|
54790
|
+
profileEidMismatch: 10,
|
|
54791
|
+
/**
|
|
54792
|
+
* The eSIM profile is not available for a new binding.
|
|
54793
|
+
*/
|
|
54794
|
+
profileNotAvailableForNewBinding: 11,
|
|
54795
|
+
/**
|
|
54796
|
+
* The eSIM profile has not been released by the operator.
|
|
54797
|
+
*/
|
|
54798
|
+
profileNotReleasedByOperator: 12,
|
|
54799
|
+
/**
|
|
54800
|
+
* The remote server encountered a general failure.
|
|
54801
|
+
*/
|
|
54802
|
+
remoteServerGeneralFailure: 13,
|
|
54803
|
+
/**
|
|
54804
|
+
* The remote server was unreachable.
|
|
54805
|
+
*/
|
|
54806
|
+
remoteServerUnreachable: 14,
|
|
54807
|
+
/**
|
|
54808
|
+
* A timeout occurred while waiting for user consent.
|
|
54809
|
+
*/
|
|
54810
|
+
timeoutWaitingForUserConsent: 15,
|
|
54811
|
+
/**
|
|
54812
|
+
* The operation is prohibited by the eSIM profile class.
|
|
54813
|
+
*/
|
|
54814
|
+
operationProhibitedByProfileClass: 16,
|
|
54815
|
+
/**
|
|
54816
|
+
* The provisioning profile is not present.
|
|
54817
|
+
*/
|
|
54818
|
+
provisioningProfileNotPresent: 17,
|
|
54819
|
+
/**
|
|
54820
|
+
* There is no corresponding request for this operation.
|
|
54821
|
+
*/
|
|
54822
|
+
noCorrespondingRequest: 18,
|
|
54823
|
+
/**
|
|
54824
|
+
* A timeout occurred while waiting for a response.
|
|
54825
|
+
*/
|
|
54826
|
+
timeoutWaitingForResponse: 19,
|
|
54827
|
+
/**
|
|
54828
|
+
* The ICCID already exists on the device.
|
|
54829
|
+
*/
|
|
54830
|
+
iccidAlreadyExists: 20,
|
|
54831
|
+
/**
|
|
54832
|
+
* An error occurred while processing the eSIM profile.
|
|
54833
|
+
*/
|
|
54834
|
+
profileProcessingError: 21,
|
|
54835
|
+
/**
|
|
54836
|
+
* The remote server is not trusted.
|
|
54837
|
+
*/
|
|
54838
|
+
remoteServerNotTrusted: 22,
|
|
54839
|
+
/**
|
|
54840
|
+
* The maximum number of retries for profile download was exceeded.
|
|
54841
|
+
*/
|
|
54842
|
+
profileDownloadMaxRetriesExceeded: 23,
|
|
54843
|
+
/**
|
|
54844
|
+
* The WinHTTP name could not be resolved.
|
|
54845
|
+
*/
|
|
54846
|
+
winhttpNameNotResolved: 24,
|
|
54847
|
+
/**
|
|
54848
|
+
* The WinHTTP operation was cancelled.
|
|
54849
|
+
*/
|
|
54850
|
+
winhttpOperationCancelled: 25,
|
|
54851
|
+
/**
|
|
54852
|
+
* The status is unspecified.
|
|
54853
|
+
*/
|
|
54854
|
+
statusUnspecified: 26,
|
|
54855
|
+
/**
|
|
54856
|
+
* The operation is in progress.
|
|
54857
|
+
*/
|
|
54858
|
+
inProgress: 27,
|
|
54859
|
+
/**
|
|
54860
|
+
* The operation is pending user action.
|
|
54861
|
+
*/
|
|
54862
|
+
pendingUserAction: 28,
|
|
54863
|
+
/**
|
|
54864
|
+
* An error occurred while setup was in progress.
|
|
54865
|
+
*/
|
|
54866
|
+
errorSetupInProgress: 29,
|
|
54867
|
+
/**
|
|
54868
|
+
* The user denied the operation.
|
|
54869
|
+
*/
|
|
54870
|
+
errorUserDenied: 30,
|
|
54871
|
+
/**
|
|
54872
|
+
* An internal error occurred.
|
|
54873
|
+
*/
|
|
54874
|
+
internalError: 31,
|
|
54875
|
+
/**
|
|
54876
|
+
* The ICCID was not found.
|
|
54877
|
+
*/
|
|
54878
|
+
errorIccIdNotFound: 32,
|
|
54879
|
+
/**
|
|
54880
|
+
* Multiple active eSIMs are present but no slot is available.
|
|
54881
|
+
*/
|
|
54882
|
+
errorMultipleActiveEsimsNoAvailableSlot: 33,
|
|
54883
|
+
unknownFutureValue: 34,
|
|
54884
|
+
}
|
|
54885
|
+
|
|
54886
|
+
/**
|
|
54887
|
+
* Indicates the state of an eSIM profile on a managed device.
|
|
54888
|
+
*/
|
|
54889
|
+
enum eSimProfileState {
|
|
54890
|
+
/**
|
|
54891
|
+
* Unknown state.
|
|
54892
|
+
*/
|
|
54893
|
+
`unknown`: 0,
|
|
54894
|
+
/**
|
|
54895
|
+
* The eSIM profile is being installed.
|
|
54896
|
+
*/
|
|
54897
|
+
installing: 1,
|
|
54898
|
+
/**
|
|
54899
|
+
* The eSIM profile has been successfully installed.
|
|
54900
|
+
*/
|
|
54901
|
+
installed: 2,
|
|
54902
|
+
/**
|
|
54903
|
+
* The eSIM profile is being deleted.
|
|
54904
|
+
*/
|
|
54905
|
+
deleting: 3,
|
|
54906
|
+
/**
|
|
54907
|
+
* An error occurred while processing the eSIM profile.
|
|
54908
|
+
*/
|
|
54909
|
+
error: 4,
|
|
54910
|
+
unknownFutureValue: 5,
|
|
54911
|
+
}
|
|
54912
|
+
|
|
53607
54913
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
53608
54914
|
enum eventType {
|
|
53609
54915
|
singleInstance: 0,
|
|
@@ -53621,6 +54927,14 @@ namespace reference.`microsoft.graph` {
|
|
|
53621
54927
|
restImmutableEntryId: 4,
|
|
53622
54928
|
}
|
|
53623
54929
|
|
|
54930
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
54931
|
+
enum expirationPatternType {
|
|
54932
|
+
notSpecified: 0,
|
|
54933
|
+
noExpiration: 1,
|
|
54934
|
+
afterDateTime: 2,
|
|
54935
|
+
afterDuration: 3,
|
|
54936
|
+
}
|
|
54937
|
+
|
|
53624
54938
|
enum expirationRequirement {
|
|
53625
54939
|
rememberMultifactorAuthenticationOnTrustedDevices: 0,
|
|
53626
54940
|
tenantTokenLifetimePolicy: 1,
|
|
@@ -56907,6 +58221,22 @@ namespace reference.`microsoft.graph` {
|
|
|
56907
58221
|
userRequestedInstall: 5,
|
|
56908
58222
|
}
|
|
56909
58223
|
|
|
58224
|
+
/**
|
|
58225
|
+
* Optional error codes that can be provided when uploadState of mobileAppContentFile is indicating an error.
|
|
58226
|
+
*/
|
|
58227
|
+
enum mobileAppContentFileUploadErrorCode {
|
|
58228
|
+
apkIsInvalid: 1,
|
|
58229
|
+
apkIsMissingSignerCertificates: 2,
|
|
58230
|
+
apkHasInvalidPackageName: 3,
|
|
58231
|
+
apkPackageNameMismatch: 4,
|
|
58232
|
+
apkHasInvalidVersionCode: 5,
|
|
58233
|
+
apkHasVersionCodeMismatch: 6,
|
|
58234
|
+
apkHasInvalidMinSdk: 7,
|
|
58235
|
+
apkMinSdkMismatch: 8,
|
|
58236
|
+
apkVersionNameMismatch: 9,
|
|
58237
|
+
unknownFutureValue: 10,
|
|
58238
|
+
}
|
|
58239
|
+
|
|
56910
58240
|
/**
|
|
56911
58241
|
* Contains properties for upload request states.
|
|
56912
58242
|
*/
|
|
@@ -57115,6 +58445,33 @@ namespace reference.`microsoft.graph` {
|
|
|
57115
58445
|
WriteOnly: 3,
|
|
57116
58446
|
}
|
|
57117
58447
|
|
|
58448
|
+
/**
|
|
58449
|
+
* The health status of an NDES connector or individual health check metric.
|
|
58450
|
+
*/
|
|
58451
|
+
enum ndesConnectorHealthStatus {
|
|
58452
|
+
/**
|
|
58453
|
+
* Health has not been evaluated yet for this connector.
|
|
58454
|
+
*/
|
|
58455
|
+
`unknown`: 0,
|
|
58456
|
+
/**
|
|
58457
|
+
* All health checks are passing. Error rates are below the attention threshold for all metrics.
|
|
58458
|
+
*/
|
|
58459
|
+
noActionRequired: 1,
|
|
58460
|
+
/**
|
|
58461
|
+
* One or more health checks have error rates between the attention and action thresholds.
|
|
58462
|
+
*/
|
|
58463
|
+
attentionRequired: 2,
|
|
58464
|
+
/**
|
|
58465
|
+
* One or more health checks have error rates above the action threshold. Investigation is required.
|
|
58466
|
+
*/
|
|
58467
|
+
actionRequired: 3,
|
|
58468
|
+
/**
|
|
58469
|
+
* The connector has not connected within the staleness threshold. Applied at read time based on lastConnectionDateTime.
|
|
58470
|
+
*/
|
|
58471
|
+
disconnected: 4,
|
|
58472
|
+
unknownFutureValue: 5,
|
|
58473
|
+
}
|
|
58474
|
+
|
|
57118
58475
|
/**
|
|
57119
58476
|
* The current status of the Ndes Connector.
|
|
57120
58477
|
*/
|
|
@@ -57162,6 +58519,12 @@ namespace reference.`microsoft.graph` {
|
|
|
57162
58519
|
unknownFutureValue: 5,
|
|
57163
58520
|
}
|
|
57164
58521
|
|
|
58522
|
+
enum nonAdminSetting {
|
|
58523
|
+
`false`: 0,
|
|
58524
|
+
`true`: 1,
|
|
58525
|
+
unknownFutureValue: 2,
|
|
58526
|
+
}
|
|
58527
|
+
|
|
57165
58528
|
/**
|
|
57166
58529
|
* Non-EAP methods for authentication.
|
|
57167
58530
|
*/
|
|
@@ -57873,6 +59236,23 @@ namespace reference.`microsoft.graph` {
|
|
|
57873
59236
|
other: 3,
|
|
57874
59237
|
}
|
|
57875
59238
|
|
|
59239
|
+
enum placeFeatureEnablement {
|
|
59240
|
+
`unknown`: 0,
|
|
59241
|
+
enabled: 1,
|
|
59242
|
+
disabled: 2,
|
|
59243
|
+
unknownFutureValue: 3,
|
|
59244
|
+
}
|
|
59245
|
+
|
|
59246
|
+
enum placeOperationStatus {
|
|
59247
|
+
created: 0,
|
|
59248
|
+
inProgress: 1,
|
|
59249
|
+
succeeded: 2,
|
|
59250
|
+
failed: 3,
|
|
59251
|
+
partiallySucceeded: 4,
|
|
59252
|
+
expired: 5,
|
|
59253
|
+
unknownFutureValue: 6,
|
|
59254
|
+
}
|
|
59255
|
+
|
|
57876
59256
|
enum plannerApprovalStatus {
|
|
57877
59257
|
requested: 0,
|
|
57878
59258
|
approved: 1,
|
|
@@ -58162,6 +59542,24 @@ namespace reference.`microsoft.graph` {
|
|
|
58162
59542
|
unknownFutureValue: 4,
|
|
58163
59543
|
}
|
|
58164
59544
|
|
|
59545
|
+
enum privilegedAccessGroupAssignmentType {
|
|
59546
|
+
assigned: 1,
|
|
59547
|
+
activated: 2,
|
|
59548
|
+
unknownFutureValue: 3,
|
|
59549
|
+
}
|
|
59550
|
+
|
|
59551
|
+
enum privilegedAccessGroupMemberType {
|
|
59552
|
+
direct: 1,
|
|
59553
|
+
group: 2,
|
|
59554
|
+
unknownFutureValue: 3,
|
|
59555
|
+
}
|
|
59556
|
+
|
|
59557
|
+
enum privilegedAccessGroupRelationships {
|
|
59558
|
+
owner: 1,
|
|
59559
|
+
member: 2,
|
|
59560
|
+
unknownFutureValue: 3,
|
|
59561
|
+
}
|
|
59562
|
+
|
|
58165
59563
|
/**
|
|
58166
59564
|
* Indicates the type of elevation occured
|
|
58167
59565
|
*/
|
|
@@ -58987,6 +60385,16 @@ namespace reference.`microsoft.graph` {
|
|
|
58987
60385
|
mdiSecureScore: 3,
|
|
58988
60386
|
}
|
|
58989
60387
|
|
|
60388
|
+
enum recommendationCategoryGroup {
|
|
60389
|
+
strengthenAuthentication: 0,
|
|
60390
|
+
detectAndRespondToThreats: 1,
|
|
60391
|
+
enforceLeastPrivilege: 2,
|
|
60392
|
+
governAppsCredentialsAndAgents: 3,
|
|
60393
|
+
hardenInfrastructure: 4,
|
|
60394
|
+
defenderForIdentity: 5,
|
|
60395
|
+
unknownFutureValue: 6,
|
|
60396
|
+
}
|
|
60397
|
+
|
|
58990
60398
|
enum recommendationFeatureAreas {
|
|
58991
60399
|
users: 0,
|
|
58992
60400
|
groups: 1,
|
|
@@ -58998,11 +60406,12 @@ namespace reference.`microsoft.graph` {
|
|
|
58998
60406
|
unknownFutureValue: 7,
|
|
58999
60407
|
}
|
|
59000
60408
|
|
|
59001
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
59002
60409
|
enum recommendationPriority {
|
|
59003
60410
|
low: 0,
|
|
59004
60411
|
medium: 1,
|
|
59005
60412
|
high: 2,
|
|
60413
|
+
critical: 3,
|
|
60414
|
+
unknownFutureValue: 4,
|
|
59006
60415
|
}
|
|
59007
60416
|
|
|
59008
60417
|
enum recommendationStatus {
|
|
@@ -59016,6 +60425,7 @@ namespace reference.`microsoft.graph` {
|
|
|
59016
60425
|
thirdParty: 7,
|
|
59017
60426
|
planned: 8,
|
|
59018
60427
|
alternateMitigation: 9,
|
|
60428
|
+
needsMoreAction: 10,
|
|
59019
60429
|
}
|
|
59020
60430
|
|
|
59021
60431
|
enum recommendationType {
|
|
@@ -59295,6 +60705,14 @@ namespace reference.`microsoft.graph` {
|
|
|
59295
60705
|
* Indicates remote device action to restore the Managed Home Screen kiosk app.
|
|
59296
60706
|
*/
|
|
59297
60707
|
restoreManagedHomeScreen: 42,
|
|
60708
|
+
/**
|
|
60709
|
+
* Indicates remote device action to trigger an AppleCare-authorized enhanced log collection session on a supervised Apple device.
|
|
60710
|
+
*/
|
|
60711
|
+
triggerEnhancedLogCollection: 44,
|
|
60712
|
+
/**
|
|
60713
|
+
* Indicates remote device action to cancel an in-progress enhanced log collection session on a supervised Apple device.
|
|
60714
|
+
*/
|
|
60715
|
+
cancelEnhancedLogCollection: 45,
|
|
59298
60716
|
}
|
|
59299
60717
|
|
|
59300
60718
|
/**
|
|
@@ -59331,6 +60749,25 @@ namespace reference.`microsoft.graph` {
|
|
|
59331
60749
|
enabled: 2,
|
|
59332
60750
|
}
|
|
59333
60751
|
|
|
60752
|
+
/**
|
|
60753
|
+
* Enumeration indicating the state of session recording
|
|
60754
|
+
*/
|
|
60755
|
+
enum remoteHelpRecordingState {
|
|
60756
|
+
/**
|
|
60757
|
+
* Recording is not enabled for this session.
|
|
60758
|
+
*/
|
|
60759
|
+
notEnabled: 0,
|
|
60760
|
+
/**
|
|
60761
|
+
* Recording is in progress.
|
|
60762
|
+
*/
|
|
60763
|
+
recording: 1,
|
|
60764
|
+
/**
|
|
60765
|
+
* Recording failed.
|
|
60766
|
+
*/
|
|
60767
|
+
failed: 2,
|
|
60768
|
+
unknownFutureValue: 3,
|
|
60769
|
+
}
|
|
60770
|
+
|
|
59334
60771
|
enum requiredLicenses {
|
|
59335
60772
|
notApplicable: 0,
|
|
59336
60773
|
microsoftEntraIdFree: 1,
|
|
@@ -59340,6 +60777,7 @@ namespace reference.`microsoft.graph` {
|
|
|
59340
60777
|
microsoftEntraWorkloadId: 5,
|
|
59341
60778
|
unknownFutureValue: 6,
|
|
59342
60779
|
aatp: 7,
|
|
60780
|
+
microsoftEntraSuite: 8,
|
|
59343
60781
|
}
|
|
59344
60782
|
|
|
59345
60783
|
/**
|
|
@@ -59385,6 +60823,11 @@ namespace reference.`microsoft.graph` {
|
|
|
59385
60823
|
unknownFutureValue: 20,
|
|
59386
60824
|
}
|
|
59387
60825
|
|
|
60826
|
+
enum resourceLinkType {
|
|
60827
|
+
url: 0,
|
|
60828
|
+
unknownFutureValue: 1,
|
|
60829
|
+
}
|
|
60830
|
+
|
|
59388
60831
|
enum resourceScopeType {
|
|
59389
60832
|
group: 1,
|
|
59390
60833
|
chat: 2,
|
|
@@ -59586,6 +61029,10 @@ namespace reference.`microsoft.graph` {
|
|
|
59586
61029
|
* App was removed in order to install a superseding app.
|
|
59587
61030
|
*/
|
|
59588
61031
|
appRemovedBySupersedence: 3005,
|
|
61032
|
+
/**
|
|
61033
|
+
* App cannot be installed. One or more of the application's dependencies are in use.
|
|
61034
|
+
*/
|
|
61035
|
+
dependencyAppInUse: 3006,
|
|
59589
61036
|
/**
|
|
59590
61037
|
* Application failed to uninstall. See error code property for more details.
|
|
59591
61038
|
*/
|
|
@@ -59602,6 +61049,18 @@ namespace reference.`microsoft.graph` {
|
|
|
59602
61049
|
* Application content was downloaded to the device.
|
|
59603
61050
|
*/
|
|
59604
61051
|
contentDownloaded: 5002,
|
|
61052
|
+
/**
|
|
61053
|
+
* App enforcement is pending because the app is currently in use.
|
|
61054
|
+
*/
|
|
61055
|
+
inUse: 5005,
|
|
61056
|
+
/**
|
|
61057
|
+
* App enforcement was deferred by the user because the app is currently in use.
|
|
61058
|
+
*/
|
|
61059
|
+
deferred: 5006,
|
|
61060
|
+
/**
|
|
61061
|
+
* App enforcement was automatically deferred because the app is currently in use and a user response was not available.
|
|
61062
|
+
*/
|
|
61063
|
+
autoDeferred: 5007,
|
|
59605
61064
|
}
|
|
59606
61065
|
|
|
59607
61066
|
enum riskDetail {
|
|
@@ -59673,6 +61132,23 @@ namespace reference.`microsoft.graph` {
|
|
|
59673
61132
|
unknownFutureValue: 6,
|
|
59674
61133
|
}
|
|
59675
61134
|
|
|
61135
|
+
enum roleAssignmentScheduleFilterByCurrentUserOptions {
|
|
61136
|
+
principal: 1,
|
|
61137
|
+
unknownFutureValue: 2,
|
|
61138
|
+
}
|
|
61139
|
+
|
|
61140
|
+
enum roleAssignmentScheduleInstanceFilterByCurrentUserOptions {
|
|
61141
|
+
principal: 1,
|
|
61142
|
+
unknownFutureValue: 2,
|
|
61143
|
+
}
|
|
61144
|
+
|
|
61145
|
+
enum roleAssignmentScheduleRequestFilterByCurrentUserOptions {
|
|
61146
|
+
principal: 1,
|
|
61147
|
+
createdBy: 2,
|
|
61148
|
+
approver: 3,
|
|
61149
|
+
unknownFutureValue: 4,
|
|
61150
|
+
}
|
|
61151
|
+
|
|
59676
61152
|
/**
|
|
59677
61153
|
* Specifies the type of scope for a Role Assignment.
|
|
59678
61154
|
*/
|
|
@@ -59696,6 +61172,23 @@ namespace reference.`microsoft.graph` {
|
|
|
59696
61172
|
unknownFutureValue: 4,
|
|
59697
61173
|
}
|
|
59698
61174
|
|
|
61175
|
+
enum roleEligibilityScheduleFilterByCurrentUserOptions {
|
|
61176
|
+
principal: 1,
|
|
61177
|
+
unknownFutureValue: 2,
|
|
61178
|
+
}
|
|
61179
|
+
|
|
61180
|
+
enum roleEligibilityScheduleInstanceFilterByCurrentUserOptions {
|
|
61181
|
+
principal: 1,
|
|
61182
|
+
unknownFutureValue: 2,
|
|
61183
|
+
}
|
|
61184
|
+
|
|
61185
|
+
enum roleEligibilityScheduleRequestFilterByCurrentUserOptions {
|
|
61186
|
+
principal: 1,
|
|
61187
|
+
createdBy: 2,
|
|
61188
|
+
approver: 3,
|
|
61189
|
+
unknownFutureValue: 4,
|
|
61190
|
+
}
|
|
61191
|
+
|
|
59699
61192
|
enum rootDomains {
|
|
59700
61193
|
none: 0,
|
|
59701
61194
|
all: 1,
|
|
@@ -59786,6 +61279,19 @@ namespace reference.`microsoft.graph` {
|
|
|
59786
61279
|
unknownFutureValue: 2,
|
|
59787
61280
|
}
|
|
59788
61281
|
|
|
61282
|
+
enum scheduleRequestActions {
|
|
61283
|
+
adminAssign: 1,
|
|
61284
|
+
adminUpdate: 2,
|
|
61285
|
+
adminRemove: 3,
|
|
61286
|
+
selfActivate: 4,
|
|
61287
|
+
selfDeactivate: 5,
|
|
61288
|
+
adminExtend: 6,
|
|
61289
|
+
adminRenew: 7,
|
|
61290
|
+
selfExtend: 8,
|
|
61291
|
+
selfRenew: 9,
|
|
61292
|
+
unknownFutureValue: 10,
|
|
61293
|
+
}
|
|
61294
|
+
|
|
59789
61295
|
enum scopeCollectionKind {
|
|
59790
61296
|
allAllowed: 0,
|
|
59791
61297
|
enumerated: 1,
|
|
@@ -61834,10 +63340,6 @@ namespace reference.`microsoft.graph` {
|
|
|
61834
63340
|
* Indicates Wi-Fi security type is associated with WPA3-Personal. Provides stronger encryption using Simultaneous Authentication of Equals (SAE).
|
|
61835
63341
|
*/
|
|
61836
63342
|
wpa3Personal: 7,
|
|
61837
|
-
/**
|
|
61838
|
-
* Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2. Must use WindowsWifiEnterpriseEAPConfiguration type to configure enterprise options.
|
|
61839
|
-
*/
|
|
61840
|
-
wpa3Enterprise: 8,
|
|
61841
63343
|
}
|
|
61842
63344
|
|
|
61843
63345
|
/**
|
|
@@ -62269,6 +63771,7 @@ namespace reference.`microsoft.graph` {
|
|
|
62269
63771
|
/**
|
|
62270
63772
|
* Contains rule types for Win32 LOB apps.
|
|
62271
63773
|
*/
|
|
63774
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
62272
63775
|
enum win32LobAppRuleType {
|
|
62273
63776
|
/**
|
|
62274
63777
|
* Detection rule.
|
|
@@ -62278,11 +63781,6 @@ namespace reference.`microsoft.graph` {
|
|
|
62278
63781
|
* Requirement rule.
|
|
62279
63782
|
*/
|
|
62280
63783
|
requirement: 1,
|
|
62281
|
-
/**
|
|
62282
|
-
* Indicates that the associated rule represents an executable for app in-use detection.
|
|
62283
|
-
*/
|
|
62284
|
-
inUse: 2,
|
|
62285
|
-
unknownFutureValue: 3,
|
|
62286
63784
|
}
|
|
62287
63785
|
|
|
62288
63786
|
/**
|
|
@@ -63718,7 +65216,6 @@ namespace reference.`microsoft.graph` {
|
|
|
63718
65216
|
/**
|
|
63719
65217
|
* Data can be transferred from/to these classes of apps
|
|
63720
65218
|
*/
|
|
63721
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
63722
65219
|
enum windowsManagedAppDataTransferLevel {
|
|
63723
65220
|
/**
|
|
63724
65221
|
* All apps.
|
|
@@ -63728,6 +65225,27 @@ namespace reference.`microsoft.graph` {
|
|
|
63728
65225
|
* No apps.
|
|
63729
65226
|
*/
|
|
63730
65227
|
none: 1,
|
|
65228
|
+
/**
|
|
65229
|
+
* Selected apps only. Allowed locations are specified by the child property.
|
|
65230
|
+
*/
|
|
65231
|
+
selectedApps: 2,
|
|
65232
|
+
unknownFutureValue: 3,
|
|
65233
|
+
}
|
|
65234
|
+
|
|
65235
|
+
/**
|
|
65236
|
+
* Windows MAM data transfer locations
|
|
65237
|
+
*/
|
|
65238
|
+
@graphFlags
|
|
65239
|
+
enum windowsManagedAppDataTransferLocations {
|
|
65240
|
+
/**
|
|
65241
|
+
* No locations selected.
|
|
65242
|
+
*/
|
|
65243
|
+
none: 0,
|
|
65244
|
+
/**
|
|
65245
|
+
* OneDrive for Business. Data transferred to or from this location is subject to app protection policy.
|
|
65246
|
+
*/
|
|
65247
|
+
oneDriveForBusiness: 1,
|
|
65248
|
+
unknownFutureValue: 2,
|
|
63731
65249
|
}
|
|
63732
65250
|
|
|
63733
65251
|
/**
|
|
@@ -64294,6 +65812,40 @@ namespace reference.`microsoft.graph` {
|
|
|
64294
65812
|
thirdEthernet: 6,
|
|
64295
65813
|
}
|
|
64296
65814
|
|
|
65815
|
+
enum workplaceSensorEventType {
|
|
65816
|
+
badgeIn: 0,
|
|
65817
|
+
badgeOut: 1,
|
|
65818
|
+
unknownFutureValue: 2,
|
|
65819
|
+
}
|
|
65820
|
+
|
|
65821
|
+
enum workplaceSensorType {
|
|
65822
|
+
/**
|
|
65823
|
+
* The occupancy sensor type.
|
|
65824
|
+
*/
|
|
65825
|
+
occupancy: 0,
|
|
65826
|
+
/**
|
|
65827
|
+
* The people count sensor type.
|
|
65828
|
+
*/
|
|
65829
|
+
peopleCount: 1,
|
|
65830
|
+
/**
|
|
65831
|
+
* The inferred Occupancy sensor type.
|
|
65832
|
+
*/
|
|
65833
|
+
inferredOccupancy: 2,
|
|
65834
|
+
/**
|
|
65835
|
+
* The heartbeat sensor type.
|
|
65836
|
+
*/
|
|
65837
|
+
heartbeat: 3,
|
|
65838
|
+
/**
|
|
65839
|
+
* The badge swipe sensor type.
|
|
65840
|
+
*/
|
|
65841
|
+
badge: 4,
|
|
65842
|
+
unknownFutureValue: 5,
|
|
65843
|
+
/**
|
|
65844
|
+
* The Wifi sensor type.
|
|
65845
|
+
*/
|
|
65846
|
+
wifi: 6,
|
|
65847
|
+
}
|
|
65848
|
+
|
|
64297
65849
|
/**
|
|
64298
65850
|
* Configuration state set by admin for wriitng tools Apple Intelligence setting
|
|
64299
65851
|
*/
|
|
@@ -64496,6 +66048,107 @@ namespace reference.`microsoft.graph.agentic` {
|
|
|
64496
66048
|
unknownFutureValue: 4,
|
|
64497
66049
|
}
|
|
64498
66050
|
|
|
66051
|
+
}
|
|
66052
|
+
@publicNamespace("microsoft.graph.cloudlicensing")
|
|
66053
|
+
namespace reference.`microsoft.graph.cloudLicensing` {
|
|
66054
|
+
@complex model groupCloudLicensing {
|
|
66055
|
+
@references assignments: assignment[];
|
|
66056
|
+
@contains usageRights: usageRight[];
|
|
66057
|
+
}
|
|
66058
|
+
|
|
66059
|
+
@complex model service {
|
|
66060
|
+
assignableTo: assigneeTypes;
|
|
66061
|
+
planId: guid;
|
|
66062
|
+
planName: string | null;
|
|
66063
|
+
}
|
|
66064
|
+
|
|
66065
|
+
@complex model subscription {
|
|
66066
|
+
nextLifecycleDate: offsetDateTime;
|
|
66067
|
+
startDate: offsetDateTime;
|
|
66068
|
+
state: subscriptionState;
|
|
66069
|
+
subscriptionId: string;
|
|
66070
|
+
tags: subscriptionTags;
|
|
66071
|
+
}
|
|
66072
|
+
|
|
66073
|
+
@complex model userCloudLicensing {
|
|
66074
|
+
@references assignmentErrors: assignmentError[];
|
|
66075
|
+
@references assignments: assignment[];
|
|
66076
|
+
@contains usageRights: usageRight[];
|
|
66077
|
+
@references waitingMembers: waitingMember[];
|
|
66078
|
+
}
|
|
66079
|
+
|
|
66080
|
+
@entity model adminCloudLicensing extends reference.`microsoft.graph`.entity {
|
|
66081
|
+
@contains allotments: allotment[];
|
|
66082
|
+
@contains assignmentErrors: assignmentError[];
|
|
66083
|
+
@contains assignments: assignment[];
|
|
66084
|
+
}
|
|
66085
|
+
|
|
66086
|
+
@entity model allotment extends reference.`microsoft.graph`.entity {
|
|
66087
|
+
allottedUnits: int32;
|
|
66088
|
+
assignableTo: assigneeTypes;
|
|
66089
|
+
consumedUnits: int32;
|
|
66090
|
+
services: service[];
|
|
66091
|
+
skuId: guid | null;
|
|
66092
|
+
skuPartNumber: string | null;
|
|
66093
|
+
subscriptions: subscription[];
|
|
66094
|
+
@references assignments: assignment[];
|
|
66095
|
+
@references waitingMembers: waitingMember[];
|
|
66096
|
+
}
|
|
66097
|
+
|
|
66098
|
+
@entity model assignment extends reference.`microsoft.graph`.entity {
|
|
66099
|
+
disabledServicePlanIds: guid;
|
|
66100
|
+
@references allotment: allotment | null;
|
|
66101
|
+
@references assignedTo: reference.`microsoft.graph`.directoryObject;
|
|
66102
|
+
}
|
|
66103
|
+
|
|
66104
|
+
@entity model assignmentError extends reference.`microsoft.graph`.entity {
|
|
66105
|
+
code: string;
|
|
66106
|
+
message: string;
|
|
66107
|
+
occurrenceDateTime: offsetDateTime;
|
|
66108
|
+
skuId: guid | null;
|
|
66109
|
+
@references assignedTo: reference.`microsoft.graph`.directoryObject;
|
|
66110
|
+
@references usageRight: usageRight | null;
|
|
66111
|
+
}
|
|
66112
|
+
|
|
66113
|
+
@entity model usageRight extends reference.`microsoft.graph`.entity {
|
|
66114
|
+
services: service[];
|
|
66115
|
+
skuId: guid | null;
|
|
66116
|
+
skuPartNumber: string | null;
|
|
66117
|
+
@references allotments: allotment[];
|
|
66118
|
+
@references assignments: assignment[];
|
|
66119
|
+
}
|
|
66120
|
+
|
|
66121
|
+
@entity model waitingMember extends reference.`microsoft.graph`.entity {
|
|
66122
|
+
waitingSinceDateTime: offsetDateTime;
|
|
66123
|
+
@references allotment: allotment;
|
|
66124
|
+
@references assignedTo: reference.`microsoft.graph`.directoryObject;
|
|
66125
|
+
}
|
|
66126
|
+
|
|
66127
|
+
@graphFlags
|
|
66128
|
+
enum assigneeTypes {
|
|
66129
|
+
none: 0,
|
|
66130
|
+
user: 1,
|
|
66131
|
+
group: 2,
|
|
66132
|
+
device: 4,
|
|
66133
|
+
unknownFutureValue: 8,
|
|
66134
|
+
}
|
|
66135
|
+
|
|
66136
|
+
enum subscriptionState {
|
|
66137
|
+
active: 1,
|
|
66138
|
+
warning: 2,
|
|
66139
|
+
suspended: 3,
|
|
66140
|
+
lockedOut: 4,
|
|
66141
|
+
deleted: 5,
|
|
66142
|
+
unknownFutureValue: 6,
|
|
66143
|
+
}
|
|
66144
|
+
|
|
66145
|
+
@graphFlags
|
|
66146
|
+
enum subscriptionTags {
|
|
66147
|
+
none: 0,
|
|
66148
|
+
trial: 1,
|
|
66149
|
+
unknownFutureValue: 2,
|
|
66150
|
+
}
|
|
66151
|
+
|
|
64499
66152
|
}
|
|
64500
66153
|
@publicNamespace("microsoft.graph.security")
|
|
64501
66154
|
namespace reference.`microsoft.graph.security` {
|