@microsoft/typespec-msgraph-reference 1.0.8 → 1.0.10
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/.rush/temp/shrinkwrap-deps.json +37 -59
- package/CHANGELOG.md +18 -0
- package/lib/Bleu/Beta/main.tsp +725 -44
- package/lib/Bleu/V1.0/main.tsp +25 -0
- package/lib/Delos/Beta/main.tsp +1477 -51
- package/lib/Delos/V1.0/main.tsp +670 -9
- package/lib/Fairfax/Beta/main.tsp +828 -45
- package/lib/Fairfax/V1.0/main.tsp +26 -11
- package/lib/GovSG/Beta/main.tsp +112 -0
- package/lib/Mooncake/Beta/main.tsp +725 -44
- package/lib/Prod/Beta/main.tsp +203 -30
- package/lib/Prod/V1.0/main.tsp +33 -0
- package/lib/USNat/Beta/main.tsp +197 -3
- package/lib/USNat/V1.0/main.tsp +24 -9
- package/lib/USSec/Beta/main.tsp +197 -3
- package/lib/USSec/V1.0/main.tsp +24 -9
- package/package.json +5 -5
package/lib/Delos/Beta/main.tsp
CHANGED
|
@@ -13,9 +13,13 @@ scalar binary; //TODO: Enables support for Edm.Binary
|
|
|
13
13
|
@privatePreviewDefinition("photoEditPolicy", "2024-02-16", "2025-02-16", "<theOwner>")
|
|
14
14
|
@deprecatedDefinition("Reporting", "<ChangeLogCategory>", "2021-04-11", "2021-12-31", "The action property is deprecated. The provisioningAction holds the same information as this. This only exists in the beta api.")
|
|
15
15
|
// Metadata item DeprecatedDefinition_Reporting was already defined with a different value.
|
|
16
|
+
@deprecatedDefinition("SynchronizationSecret_Deprecation", "<ChangeLogCategory>", "2026-02-06", "2027-07-06", "Use connectivityParameters for oauth flows and scim endpoint connectivity. Use SynchronizationJobSettings for job-specific settings This property will be removed.")
|
|
17
|
+
// Metadata item DeprecatedDefinition_SynchronizationSecret_Deprecation was already defined with a different value.
|
|
16
18
|
@privatePreviewDefinition("AgenticSP", "2025-04-14", "2025-07-13", "<theOwner>")
|
|
17
19
|
@deprecatedDefinition("beta:DisplayNameRename", "<ChangeLogCategory>", "2026-04-28", "2027-04-28", "The agentDisplayName property is deprecated. Use displayName instead.")
|
|
18
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.
|
|
19
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.")
|
|
20
24
|
@deprecatedDefinition("Removal", "<ChangeLogCategory>", "2023-12-05", "2025-12-05", "The users enum value is deprecated. Use specificPeople instead.")
|
|
21
25
|
// Metadata item DeprecatedDefinition_Removal was already defined with a different value.
|
|
@@ -878,6 +882,7 @@ namespace reference.`microsoft.graph` {
|
|
|
878
882
|
|
|
879
883
|
@complex model appManagementApplicationConfiguration extends appManagementConfiguration {
|
|
880
884
|
identifierUris: identifierUriConfiguration | null;
|
|
885
|
+
redirectUris: redirectUriConfiguration | null;
|
|
881
886
|
}
|
|
882
887
|
|
|
883
888
|
@abstract
|
|
@@ -1110,6 +1115,50 @@ namespace reference.`microsoft.graph` {
|
|
|
1110
1115
|
type: attendeeType | null;
|
|
1111
1116
|
}
|
|
1112
1117
|
|
|
1118
|
+
@complex model attributeDefinition {
|
|
1119
|
+
anchor: boolean;
|
|
1120
|
+
apiExpressions: stringKeyStringValuePair[] | null;
|
|
1121
|
+
caseExact: boolean;
|
|
1122
|
+
defaultValue: string | null;
|
|
1123
|
+
flowNullValues: boolean;
|
|
1124
|
+
metadata: attributeDefinitionMetadataEntry[] | null;
|
|
1125
|
+
multivalued: boolean;
|
|
1126
|
+
mutability: mutability;
|
|
1127
|
+
name: string | null;
|
|
1128
|
+
referencedObjects: referencedObject[] | null;
|
|
1129
|
+
required: boolean;
|
|
1130
|
+
type: attributeType;
|
|
1131
|
+
}
|
|
1132
|
+
|
|
1133
|
+
@complex model attributeDefinitionMetadataEntry {
|
|
1134
|
+
key: attributeDefinitionMetadata | null;
|
|
1135
|
+
value: string | null;
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
@complex model attributeMapping {
|
|
1139
|
+
defaultValue: string | null;
|
|
1140
|
+
exportMissingReferences: boolean;
|
|
1141
|
+
flowBehavior: attributeFlowBehavior;
|
|
1142
|
+
flowType: attributeFlowType;
|
|
1143
|
+
matchingPriority: int32;
|
|
1144
|
+
source: attributeMappingSource | null;
|
|
1145
|
+
targetAttributeName: string | null;
|
|
1146
|
+
}
|
|
1147
|
+
|
|
1148
|
+
@complex model attributeMappingParameterSchema {
|
|
1149
|
+
allowMultipleOccurrences: boolean;
|
|
1150
|
+
name: string | null;
|
|
1151
|
+
required: boolean;
|
|
1152
|
+
type: attributeType;
|
|
1153
|
+
}
|
|
1154
|
+
|
|
1155
|
+
@complex model attributeMappingSource {
|
|
1156
|
+
expression: string | null;
|
|
1157
|
+
name: string | null;
|
|
1158
|
+
parameters: stringKeyAttributeMappingSourceValuePair[] | null;
|
|
1159
|
+
type: attributeMappingSourceType;
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1113
1162
|
@complex model audio {
|
|
1114
1163
|
album: string | null;
|
|
1115
1164
|
albumArtist: string | null;
|
|
@@ -2084,6 +2133,24 @@ namespace reference.`microsoft.graph` {
|
|
|
2084
2133
|
values: string[] | null;
|
|
2085
2134
|
}
|
|
2086
2135
|
|
|
2136
|
+
@complex model connectivityParameterEntry {
|
|
2137
|
+
value: string | null;
|
|
2138
|
+
}
|
|
2139
|
+
|
|
2140
|
+
/**
|
|
2141
|
+
* Represents an individual health check result for an NDES connector, containing the metric name and its current status.
|
|
2142
|
+
*/
|
|
2143
|
+
@complex model connectorHealthCheck {
|
|
2144
|
+
/**
|
|
2145
|
+
* The name of the health check metric being evaluated.
|
|
2146
|
+
*/
|
|
2147
|
+
metricName: connectorHealthCheckMetricName;
|
|
2148
|
+
/**
|
|
2149
|
+
* The current health status for this specific metric, based on error rate thresholds computed from recent connector uploads.
|
|
2150
|
+
*/
|
|
2151
|
+
status: ndesConnectorHealthStatus;
|
|
2152
|
+
}
|
|
2153
|
+
|
|
2087
2154
|
/**
|
|
2088
2155
|
* Represent connector status
|
|
2089
2156
|
*/
|
|
@@ -2106,6 +2173,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2106
2173
|
status: connectorHealthState;
|
|
2107
2174
|
}
|
|
2108
2175
|
|
|
2176
|
+
@complex model containerFilter {
|
|
2177
|
+
includedContainers: string[] | null;
|
|
2178
|
+
}
|
|
2179
|
+
|
|
2109
2180
|
@complex model contentApprovalStatusColumn {
|
|
2110
2181
|
}
|
|
2111
2182
|
|
|
@@ -2175,6 +2246,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2175
2246
|
* Remote help - response we provide back to the helper after successfully creating an ACS session
|
|
2176
2247
|
*/
|
|
2177
2248
|
@complex model createRemoteHelpSessionResponse {
|
|
2249
|
+
/**
|
|
2250
|
+
* The current state of session recording. Null when the tenant is not flighted for session recording.
|
|
2251
|
+
*/
|
|
2252
|
+
remoteHelpRecordingState: remoteHelpRecordingState | null;
|
|
2178
2253
|
/**
|
|
2179
2254
|
* The unique identifier for a session
|
|
2180
2255
|
*/
|
|
@@ -2274,6 +2349,7 @@ namespace reference.`microsoft.graph` {
|
|
|
2274
2349
|
|
|
2275
2350
|
@complex model customAppManagementApplicationConfiguration {
|
|
2276
2351
|
identifierUris: identifierUriConfiguration | null;
|
|
2352
|
+
redirectUris: redirectUriConfiguration | null;
|
|
2277
2353
|
}
|
|
2278
2354
|
|
|
2279
2355
|
@complex model customAppManagementConfiguration extends appManagementConfiguration {
|
|
@@ -2733,6 +2809,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2733
2809
|
* 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.
|
|
2734
2810
|
*/
|
|
2735
2811
|
rulesContent: binary | null;
|
|
2812
|
+
/**
|
|
2813
|
+
* Indicates the interval, in minutes, at which the custom compliance script is evaluated on the device. Allowed range from 1 to 480. Nullable.
|
|
2814
|
+
*/
|
|
2815
|
+
runIntervalInMinutes: int32 | null;
|
|
2736
2816
|
}
|
|
2737
2817
|
|
|
2738
2818
|
/**
|
|
@@ -5208,6 +5288,11 @@ namespace reference.`microsoft.graph` {
|
|
|
5208
5288
|
propertyToEvaluate: propertyToEvaluate | null;
|
|
5209
5289
|
}
|
|
5210
5290
|
|
|
5291
|
+
@complex model expressionInputObject {
|
|
5292
|
+
definition: objectDefinition | null;
|
|
5293
|
+
properties: stringKeyObjectValuePair[] | null;
|
|
5294
|
+
}
|
|
5295
|
+
|
|
5211
5296
|
/**
|
|
5212
5297
|
* The Custom Extended Key Usage definition
|
|
5213
5298
|
*/
|
|
@@ -5365,6 +5450,27 @@ namespace reference.`microsoft.graph` {
|
|
|
5365
5450
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
5366
5451
|
}
|
|
5367
5452
|
|
|
5453
|
+
@complex model filter {
|
|
5454
|
+
categoryFilterGroups: filterGroup[] | null;
|
|
5455
|
+
groups: filterGroup[] | null;
|
|
5456
|
+
inputFilterGroups: filterGroup[] | null;
|
|
5457
|
+
}
|
|
5458
|
+
|
|
5459
|
+
@complex model filterClause {
|
|
5460
|
+
operatorName: string | null;
|
|
5461
|
+
sourceOperandName: string | null;
|
|
5462
|
+
targetOperand: filterOperand | null;
|
|
5463
|
+
}
|
|
5464
|
+
|
|
5465
|
+
@complex model filterGroup {
|
|
5466
|
+
clauses: filterClause[] | null;
|
|
5467
|
+
name: string | null;
|
|
5468
|
+
}
|
|
5469
|
+
|
|
5470
|
+
@complex model filterOperand {
|
|
5471
|
+
values: string[] | null;
|
|
5472
|
+
}
|
|
5473
|
+
|
|
5368
5474
|
@open
|
|
5369
5475
|
@complex model flexSchemaContainer {
|
|
5370
5476
|
}
|
|
@@ -5416,6 +5522,10 @@ namespace reference.`microsoft.graph` {
|
|
|
5416
5522
|
groupId: string | null;
|
|
5417
5523
|
}
|
|
5418
5524
|
|
|
5525
|
+
@complex model groupFilter {
|
|
5526
|
+
includedGroups: string[] | null;
|
|
5527
|
+
}
|
|
5528
|
+
|
|
5419
5529
|
@open
|
|
5420
5530
|
@complex model groupIdentity extends identity {
|
|
5421
5531
|
mailNickname: string | null;
|
|
@@ -6057,10 +6167,18 @@ namespace reference.`microsoft.graph` {
|
|
|
6057
6167
|
* 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.
|
|
6058
6168
|
*/
|
|
6059
6169
|
associatedDomainsDirectDownloadAllowed: boolean | null;
|
|
6170
|
+
cellularSliceConfigurationId: string | null;
|
|
6171
|
+
contentFilterConfigurationId: string | null;
|
|
6172
|
+
/**
|
|
6173
|
+
* The unique identifier of the DDM app configuration to associate with the app.
|
|
6174
|
+
*/
|
|
6175
|
+
ddmAppConfigId: guid | null;
|
|
6176
|
+
dnsProxyConfigurationId: string | null;
|
|
6060
6177
|
/**
|
|
6061
6178
|
* 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.
|
|
6062
6179
|
*/
|
|
6063
6180
|
preventManagedAppBackup: boolean | null;
|
|
6181
|
+
relayConfigurationId: string | null;
|
|
6064
6182
|
/**
|
|
6065
6183
|
* 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.
|
|
6066
6184
|
*/
|
|
@@ -6071,6 +6189,122 @@ namespace reference.`microsoft.graph` {
|
|
|
6071
6189
|
vpnConfigurationId: string | null;
|
|
6072
6190
|
}
|
|
6073
6191
|
|
|
6192
|
+
/**
|
|
6193
|
+
* Contains properties used to assign an iOS Declarative Device Management (DDM) Store App to a group.
|
|
6194
|
+
*/
|
|
6195
|
+
@complex model iosDdmStoreAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
6196
|
+
/**
|
|
6197
|
+
* Specifies whether the app may be downloaded over cellular connections. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
6198
|
+
*/
|
|
6199
|
+
allowDownloadsOverCellular: ddmAppAllowDownloadsOverCellular | null;
|
|
6200
|
+
/**
|
|
6201
|
+
* Domain names to associate with the app
|
|
6202
|
+
*/
|
|
6203
|
+
associatedDomains: string[] | null;
|
|
6204
|
+
/**
|
|
6205
|
+
* 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.
|
|
6206
|
+
*/
|
|
6207
|
+
associatedDomainsDirectDownloadAllowed: boolean | null;
|
|
6208
|
+
/**
|
|
6209
|
+
* Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
6210
|
+
*/
|
|
6211
|
+
automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
|
|
6212
|
+
/**
|
|
6213
|
+
* 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'.
|
|
6214
|
+
*/
|
|
6215
|
+
cellularSliceConfigurationId: string | null;
|
|
6216
|
+
/**
|
|
6217
|
+
* The unique identifier of the content filter to associate with the app.
|
|
6218
|
+
*/
|
|
6219
|
+
contentFilterConfigurationId: string | null;
|
|
6220
|
+
/**
|
|
6221
|
+
* The unique identifier of the DNS proxy to associate with the app.
|
|
6222
|
+
*/
|
|
6223
|
+
dnsProxyConfigurationId: string | null;
|
|
6224
|
+
/**
|
|
6225
|
+
* 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.
|
|
6226
|
+
*/
|
|
6227
|
+
preventManagedAppBackup: boolean | null;
|
|
6228
|
+
/**
|
|
6229
|
+
* The unique identifier of the relay to associate with the app.
|
|
6230
|
+
*/
|
|
6231
|
+
relayConfigurationId: string | null;
|
|
6232
|
+
/**
|
|
6233
|
+
* 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.
|
|
6234
|
+
*/
|
|
6235
|
+
tapToPayScreenLockEnabled: boolean | null;
|
|
6236
|
+
/**
|
|
6237
|
+
* 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.
|
|
6238
|
+
*/
|
|
6239
|
+
version: int32 | null;
|
|
6240
|
+
/**
|
|
6241
|
+
* The unique identifier of the VPN Configuration to apply to the app.
|
|
6242
|
+
*/
|
|
6243
|
+
vpnConfigurationId: string | null;
|
|
6244
|
+
}
|
|
6245
|
+
|
|
6246
|
+
/**
|
|
6247
|
+
* Contains properties used to assign an iOS Declarative Device Management (DDM) VPP mobile app to a group.
|
|
6248
|
+
*/
|
|
6249
|
+
@complex model iosDdmVppAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
6250
|
+
/**
|
|
6251
|
+
* Specifies whether the app may be downloaded over cellular connections. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
6252
|
+
*/
|
|
6253
|
+
allowDownloadsOverCellular: ddmAppAllowDownloadsOverCellular | null;
|
|
6254
|
+
/**
|
|
6255
|
+
* Domain names to associate with the app
|
|
6256
|
+
*/
|
|
6257
|
+
associatedDomains: string[] | null;
|
|
6258
|
+
/**
|
|
6259
|
+
* 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.
|
|
6260
|
+
*/
|
|
6261
|
+
associatedDomainsDirectDownloadAllowed: boolean | null;
|
|
6262
|
+
/**
|
|
6263
|
+
* Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
6264
|
+
*/
|
|
6265
|
+
automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
|
|
6266
|
+
/**
|
|
6267
|
+
* 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'.
|
|
6268
|
+
*/
|
|
6269
|
+
cellularSliceConfigurationId: string | null;
|
|
6270
|
+
/**
|
|
6271
|
+
* The unique identifier of the content filter to associate with the app.
|
|
6272
|
+
*/
|
|
6273
|
+
contentFilterConfigurationId: string | null;
|
|
6274
|
+
/**
|
|
6275
|
+
* The unique identifier of the DDM app configuration to associate with the app.
|
|
6276
|
+
*/
|
|
6277
|
+
ddmAppConfigId: guid | null;
|
|
6278
|
+
/**
|
|
6279
|
+
* The unique identifier of the DNS proxy to associate with the app.
|
|
6280
|
+
*/
|
|
6281
|
+
dnsProxyConfigurationId: string | null;
|
|
6282
|
+
/**
|
|
6283
|
+
* 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.
|
|
6284
|
+
*/
|
|
6285
|
+
preventManagedAppBackup: boolean | null;
|
|
6286
|
+
/**
|
|
6287
|
+
* The unique identifier of the relay to associate with the app.
|
|
6288
|
+
*/
|
|
6289
|
+
relayConfigurationId: string | null;
|
|
6290
|
+
/**
|
|
6291
|
+
* 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.
|
|
6292
|
+
*/
|
|
6293
|
+
tapToPayScreenLockEnabled: boolean | null;
|
|
6294
|
+
/**
|
|
6295
|
+
* Whether or not to use device licensing.
|
|
6296
|
+
*/
|
|
6297
|
+
useDeviceLicensing: boolean;
|
|
6298
|
+
/**
|
|
6299
|
+
* 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.
|
|
6300
|
+
*/
|
|
6301
|
+
version: int32 | null;
|
|
6302
|
+
/**
|
|
6303
|
+
* The unique identifier of the VPN Configuration to apply to the app.
|
|
6304
|
+
*/
|
|
6305
|
+
vpnConfigurationId: string | null;
|
|
6306
|
+
}
|
|
6307
|
+
|
|
6074
6308
|
/**
|
|
6075
6309
|
* Contains properties of the possible iOS device types the mobile app can run on.
|
|
6076
6310
|
*/
|
|
@@ -6921,17 +7155,8 @@ namespace reference.`microsoft.graph` {
|
|
|
6921
7155
|
value: string | null;
|
|
6922
7156
|
}
|
|
6923
7157
|
|
|
6924
|
-
/**
|
|
6925
|
-
* Key value pair for storing custom settings
|
|
6926
|
-
*/
|
|
6927
7158
|
@complex model keyValuePair {
|
|
6928
|
-
/**
|
|
6929
|
-
* Name for this key-value pair
|
|
6930
|
-
*/
|
|
6931
7159
|
name: string;
|
|
6932
|
-
/**
|
|
6933
|
-
* Value for this key-value pair
|
|
6934
|
-
*/
|
|
6935
7160
|
value: string | null;
|
|
6936
7161
|
}
|
|
6937
7162
|
|
|
@@ -7191,6 +7416,32 @@ namespace reference.`microsoft.graph` {
|
|
|
7191
7416
|
teamIdentifier: string;
|
|
7192
7417
|
}
|
|
7193
7418
|
|
|
7419
|
+
/**
|
|
7420
|
+
* Contains properties used to assign a macOS Declarative Device Management (DDM) VPP mobile app to a group.
|
|
7421
|
+
*/
|
|
7422
|
+
@complex model macOsDdmVppAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
7423
|
+
/**
|
|
7424
|
+
* Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
7425
|
+
*/
|
|
7426
|
+
automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
|
|
7427
|
+
/**
|
|
7428
|
+
* The unique identifier of the DDM app configuration to associate with the app.
|
|
7429
|
+
*/
|
|
7430
|
+
ddmAppConfigId: guid | null;
|
|
7431
|
+
/**
|
|
7432
|
+
* 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.
|
|
7433
|
+
*/
|
|
7434
|
+
isIosApp: boolean | null;
|
|
7435
|
+
/**
|
|
7436
|
+
* 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.
|
|
7437
|
+
*/
|
|
7438
|
+
useDeviceLicensing: boolean;
|
|
7439
|
+
/**
|
|
7440
|
+
* 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.
|
|
7441
|
+
*/
|
|
7442
|
+
version: int32 | null;
|
|
7443
|
+
}
|
|
7444
|
+
|
|
7194
7445
|
/**
|
|
7195
7446
|
* Properties related to macOS-specific configured and Intune-managed local administrator account
|
|
7196
7447
|
*/
|
|
@@ -8427,12 +8678,40 @@ namespace reference.`microsoft.graph` {
|
|
|
8427
8678
|
upperNumber: int32;
|
|
8428
8679
|
}
|
|
8429
8680
|
|
|
8681
|
+
@complex model objectDefinition {
|
|
8682
|
+
attributes: attributeDefinition[] | null;
|
|
8683
|
+
metadata: objectDefinitionMetadataEntry[] | null;
|
|
8684
|
+
name: string | null;
|
|
8685
|
+
supportedApis: string[] | null;
|
|
8686
|
+
}
|
|
8687
|
+
|
|
8688
|
+
@complex model objectDefinitionMetadataEntry {
|
|
8689
|
+
key: objectDefinitionMetadata | null;
|
|
8690
|
+
value: string | null;
|
|
8691
|
+
}
|
|
8692
|
+
|
|
8430
8693
|
@complex model objectIdentity {
|
|
8431
8694
|
issuer: string | null;
|
|
8432
8695
|
issuerAssignedId: string | null;
|
|
8433
8696
|
signInType: string | null;
|
|
8434
8697
|
}
|
|
8435
8698
|
|
|
8699
|
+
@complex model objectMapping {
|
|
8700
|
+
attributeMappings: attributeMapping[] | null;
|
|
8701
|
+
enabled: boolean;
|
|
8702
|
+
flowTypes: objectFlowTypes;
|
|
8703
|
+
metadata: objectMappingMetadataEntry[] | null;
|
|
8704
|
+
name: string | null;
|
|
8705
|
+
scope: filter | null;
|
|
8706
|
+
sourceObjectName: string | null;
|
|
8707
|
+
targetObjectName: string | null;
|
|
8708
|
+
}
|
|
8709
|
+
|
|
8710
|
+
@complex model objectMappingMetadataEntry {
|
|
8711
|
+
key: objectMappingMetadata | null;
|
|
8712
|
+
value: string | null;
|
|
8713
|
+
}
|
|
8714
|
+
|
|
8436
8715
|
/**
|
|
8437
8716
|
* OMA Settings definition.
|
|
8438
8717
|
*/
|
|
@@ -8563,8 +8842,26 @@ namespace reference.`microsoft.graph` {
|
|
|
8563
8842
|
internalUrl: string | null;
|
|
8564
8843
|
}
|
|
8565
8844
|
|
|
8845
|
+
@complex model onPremisesCurrentExportData {
|
|
8846
|
+
clientMachineName: string | null;
|
|
8847
|
+
pendingObjectsAddition: int32 | null;
|
|
8848
|
+
pendingObjectsDeletion: int32 | null;
|
|
8849
|
+
pendingObjectsUpdate: int32 | null;
|
|
8850
|
+
serviceAccount: string | null;
|
|
8851
|
+
successfulLinksProvisioningCount: int64 | null;
|
|
8852
|
+
successfulObjectsProvisioningCount: int32 | null;
|
|
8853
|
+
totalConnectorSpaceObjects: int32 | null;
|
|
8854
|
+
}
|
|
8855
|
+
|
|
8566
8856
|
@complex model onPremisesDirectorySynchronizationConfiguration {
|
|
8567
8857
|
accidentalDeletionPrevention: onPremisesAccidentalDeletionPrevention | null;
|
|
8858
|
+
anchorAttribute: string | null;
|
|
8859
|
+
applicationId: string | null;
|
|
8860
|
+
currentExportData: onPremisesCurrentExportData | null;
|
|
8861
|
+
customerRequestedSynchronizationInterval: duration | null;
|
|
8862
|
+
synchronizationClientVersion: string | null;
|
|
8863
|
+
synchronizationInterval: duration | null;
|
|
8864
|
+
writebackConfiguration: onPremisesWritebackConfiguration | null;
|
|
8568
8865
|
}
|
|
8569
8866
|
|
|
8570
8867
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
@@ -8651,6 +8948,11 @@ namespace reference.`microsoft.graph` {
|
|
|
8651
8948
|
singleSignOnMode: singleSignOnMode | null;
|
|
8652
8949
|
}
|
|
8653
8950
|
|
|
8951
|
+
@complex model onPremisesWritebackConfiguration {
|
|
8952
|
+
unifiedGroupContainer: string | null;
|
|
8953
|
+
userContainer: string | null;
|
|
8954
|
+
}
|
|
8955
|
+
|
|
8654
8956
|
@complex model openIdConnectSetting {
|
|
8655
8957
|
clientId: string;
|
|
8656
8958
|
discoveryUrl: string;
|
|
@@ -8824,6 +9126,14 @@ namespace reference.`microsoft.graph` {
|
|
|
8824
9126
|
legalAgeGroupRule: string | null;
|
|
8825
9127
|
}
|
|
8826
9128
|
|
|
9129
|
+
@complex model parseExpressionResponse {
|
|
9130
|
+
error: publicError | null;
|
|
9131
|
+
evaluationResult: string[] | null;
|
|
9132
|
+
evaluationSucceeded: boolean;
|
|
9133
|
+
parsedExpression: attributeMappingSource | null;
|
|
9134
|
+
parsingSucceeded: boolean;
|
|
9135
|
+
}
|
|
9136
|
+
|
|
8827
9137
|
@complex model passkeyProfileStructure {
|
|
8828
9138
|
attestationEnforcement: attestationEnforcement;
|
|
8829
9139
|
id: string;
|
|
@@ -9539,6 +9849,10 @@ namespace reference.`microsoft.graph` {
|
|
|
9539
9849
|
target: string | null;
|
|
9540
9850
|
}
|
|
9541
9851
|
|
|
9852
|
+
@complex model publicErrorResponse {
|
|
9853
|
+
error: publicError | null;
|
|
9854
|
+
}
|
|
9855
|
+
|
|
9542
9856
|
@open
|
|
9543
9857
|
@complex model publicInnerError {
|
|
9544
9858
|
code: string | null;
|
|
@@ -9622,11 +9936,99 @@ namespace reference.`microsoft.graph` {
|
|
|
9622
9936
|
urlPrefixes: string[] | null;
|
|
9623
9937
|
}
|
|
9624
9938
|
|
|
9939
|
+
@complex model redirectUriAllowedDomainConfiguration {
|
|
9940
|
+
allowedDomains: string[];
|
|
9941
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
9942
|
+
isStateSetByMicrosoft: boolean;
|
|
9943
|
+
publicClient: redirectUriPlatformAllowedDomainConfiguration | null;
|
|
9944
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
9945
|
+
spa: redirectUriPlatformAllowedDomainConfiguration | null;
|
|
9946
|
+
state: appManagementRestrictionState;
|
|
9947
|
+
web: redirectUriPlatformAllowedDomainConfiguration | null;
|
|
9948
|
+
}
|
|
9949
|
+
|
|
9950
|
+
@complex model redirectUriAllowedSchemeConfiguration {
|
|
9951
|
+
allowedSchemes: string[];
|
|
9952
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
9953
|
+
isStateSetByMicrosoft: boolean;
|
|
9954
|
+
publicClient: redirectUriPlatformAllowedSchemeConfiguration | null;
|
|
9955
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
9956
|
+
spa: redirectUriPlatformAllowedSchemeConfiguration | null;
|
|
9957
|
+
state: appManagementRestrictionState;
|
|
9958
|
+
web: redirectUriPlatformAllowedSchemeConfiguration | null;
|
|
9959
|
+
}
|
|
9960
|
+
|
|
9961
|
+
@complex model redirectUriBlockedDomainConfiguration {
|
|
9962
|
+
blockedDomains: string[];
|
|
9963
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
9964
|
+
isStateSetByMicrosoft: boolean;
|
|
9965
|
+
publicClient: redirectUriPlatformBlockedDomainConfiguration | null;
|
|
9966
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
9967
|
+
spa: redirectUriPlatformBlockedDomainConfiguration | null;
|
|
9968
|
+
state: appManagementRestrictionState;
|
|
9969
|
+
web: redirectUriPlatformBlockedDomainConfiguration | null;
|
|
9970
|
+
}
|
|
9971
|
+
|
|
9972
|
+
@complex model redirectUriBlockedSchemeConfiguration {
|
|
9973
|
+
blockedSchemes: string[];
|
|
9974
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
9975
|
+
exemptFormats: string[];
|
|
9976
|
+
isStateSetByMicrosoft: boolean;
|
|
9977
|
+
publicClient: redirectUriPlatformBlockedSchemeConfiguration | null;
|
|
9978
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
9979
|
+
spa: redirectUriPlatformBlockedSchemeConfiguration | null;
|
|
9980
|
+
state: appManagementRestrictionState;
|
|
9981
|
+
web: redirectUriPlatformBlockedSchemeConfiguration | null;
|
|
9982
|
+
}
|
|
9983
|
+
|
|
9984
|
+
@complex model redirectUriConfiguration {
|
|
9985
|
+
uriWithBlockedDomain: redirectUriBlockedDomainConfiguration | null;
|
|
9986
|
+
uriWithBlockedScheme: redirectUriBlockedSchemeConfiguration | null;
|
|
9987
|
+
uriWithoutAllowedDomain: redirectUriAllowedDomainConfiguration | null;
|
|
9988
|
+
uriWithoutAllowedScheme: redirectUriAllowedSchemeConfiguration | null;
|
|
9989
|
+
uriWithWildcard: redirectUriWildcardConfiguration | null;
|
|
9990
|
+
}
|
|
9991
|
+
|
|
9992
|
+
@complex model redirectUriPlatformAllowedDomainConfiguration {
|
|
9993
|
+
allowedDomains: string[];
|
|
9994
|
+
}
|
|
9995
|
+
|
|
9996
|
+
@complex model redirectUriPlatformAllowedSchemeConfiguration {
|
|
9997
|
+
allowedSchemes: string[];
|
|
9998
|
+
}
|
|
9999
|
+
|
|
10000
|
+
@complex model redirectUriPlatformBlockedDomainConfiguration {
|
|
10001
|
+
blockedDomains: string[];
|
|
10002
|
+
}
|
|
10003
|
+
|
|
10004
|
+
@complex model redirectUriPlatformBlockedSchemeConfiguration {
|
|
10005
|
+
blockedSchemes: string[];
|
|
10006
|
+
exemptFormats: string[];
|
|
10007
|
+
}
|
|
10008
|
+
|
|
9625
10009
|
@complex model redirectUriSettings {
|
|
9626
10010
|
index: int32 | null;
|
|
9627
10011
|
uri: string | null;
|
|
9628
10012
|
}
|
|
9629
10013
|
|
|
10014
|
+
@complex model redirectUriWildcardConfiguration {
|
|
10015
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
10016
|
+
excludeFormats: redirectUriWildcardExcludeFormats | null;
|
|
10017
|
+
isStateSetByMicrosoft: boolean;
|
|
10018
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
10019
|
+
state: appManagementRestrictionState;
|
|
10020
|
+
}
|
|
10021
|
+
|
|
10022
|
+
@complex model redirectUriWildcardExcludeFormats {
|
|
10023
|
+
excludeWildcardsInPath: boolean;
|
|
10024
|
+
excludeWildcardsInPathWithDomains: string[];
|
|
10025
|
+
}
|
|
10026
|
+
|
|
10027
|
+
@complex model referencedObject {
|
|
10028
|
+
referencedObjectName: string | null;
|
|
10029
|
+
referencedProperty: string | null;
|
|
10030
|
+
}
|
|
10031
|
+
|
|
9630
10032
|
@complex model regionalFormatOverrides {
|
|
9631
10033
|
calendar: string | null;
|
|
9632
10034
|
firstDayOfWeek: string | null;
|
|
@@ -10134,6 +10536,12 @@ namespace reference.`microsoft.graph` {
|
|
|
10134
10536
|
value: int64;
|
|
10135
10537
|
}
|
|
10136
10538
|
|
|
10539
|
+
@complex model serviceHealthIssuePost {
|
|
10540
|
+
@computed createdDateTime: offsetDateTime;
|
|
10541
|
+
description: itemBody | null;
|
|
10542
|
+
postType: postType | null;
|
|
10543
|
+
}
|
|
10544
|
+
|
|
10137
10545
|
@complex model serviceInformation {
|
|
10138
10546
|
name: string | null;
|
|
10139
10547
|
webUrl: string | null;
|
|
@@ -10181,6 +10589,12 @@ namespace reference.`microsoft.graph` {
|
|
|
10181
10589
|
servicePrincipalId: string | null;
|
|
10182
10590
|
}
|
|
10183
10591
|
|
|
10592
|
+
@complex model serviceUpdateMessageViewpoint {
|
|
10593
|
+
isArchived: boolean | null;
|
|
10594
|
+
isFavorited: boolean | null;
|
|
10595
|
+
isRead: boolean | null;
|
|
10596
|
+
}
|
|
10597
|
+
|
|
10184
10598
|
@complex model sessionLifetimePolicy {
|
|
10185
10599
|
detail: string | null;
|
|
10186
10600
|
expirationRequirement: expirationRequirement | null;
|
|
@@ -10530,6 +10944,26 @@ namespace reference.`microsoft.graph` {
|
|
|
10530
10944
|
upgradeAvailable: boolean | null;
|
|
10531
10945
|
}
|
|
10532
10946
|
|
|
10947
|
+
@complex model stringKeyAttributeMappingSourceValuePair {
|
|
10948
|
+
key: string | null;
|
|
10949
|
+
value: attributeMappingSource | null;
|
|
10950
|
+
}
|
|
10951
|
+
|
|
10952
|
+
@complex model stringKeyLongValuePair {
|
|
10953
|
+
key: string | null;
|
|
10954
|
+
value: int64;
|
|
10955
|
+
}
|
|
10956
|
+
|
|
10957
|
+
@open
|
|
10958
|
+
@complex model stringKeyObjectValuePair {
|
|
10959
|
+
key: string | null;
|
|
10960
|
+
}
|
|
10961
|
+
|
|
10962
|
+
@complex model stringKeyStringValuePair {
|
|
10963
|
+
key: string | null;
|
|
10964
|
+
value: string | null;
|
|
10965
|
+
}
|
|
10966
|
+
|
|
10533
10967
|
@complex model strongAuthenticationRequirements {
|
|
10534
10968
|
perUserMfaState: perUserMfaState | null;
|
|
10535
10969
|
}
|
|
@@ -10567,6 +11001,111 @@ namespace reference.`microsoft.graph` {
|
|
|
10567
11001
|
status: syncComponentStatus;
|
|
10568
11002
|
}
|
|
10569
11003
|
|
|
11004
|
+
@complex model synchronizationError {
|
|
11005
|
+
code: string | null;
|
|
11006
|
+
message: string | null;
|
|
11007
|
+
tenantActionable: boolean;
|
|
11008
|
+
}
|
|
11009
|
+
|
|
11010
|
+
@complex model synchronizationJobApplicationParameters {
|
|
11011
|
+
ruleId: string | null;
|
|
11012
|
+
subjects: synchronizationJobSubject[] | null;
|
|
11013
|
+
}
|
|
11014
|
+
|
|
11015
|
+
@complex model synchronizationJobRestartCriteria {
|
|
11016
|
+
resetScope: synchronizationJobRestartScope | null;
|
|
11017
|
+
}
|
|
11018
|
+
|
|
11019
|
+
@complex model synchronizationJobSubject {
|
|
11020
|
+
links: synchronizationLinkedObjects | null;
|
|
11021
|
+
objectId: string | null;
|
|
11022
|
+
objectTypeName: string | null;
|
|
11023
|
+
}
|
|
11024
|
+
|
|
11025
|
+
@complex model synchronizationLinkedObjects {
|
|
11026
|
+
manager: synchronizationJobSubject | null;
|
|
11027
|
+
members: synchronizationJobSubject[] | null;
|
|
11028
|
+
owners: synchronizationJobSubject[] | null;
|
|
11029
|
+
}
|
|
11030
|
+
|
|
11031
|
+
@complex model synchronizationMetadataEntry {
|
|
11032
|
+
key: synchronizationMetadata | null;
|
|
11033
|
+
value: string | null;
|
|
11034
|
+
}
|
|
11035
|
+
|
|
11036
|
+
@complex model synchronizationProgress {
|
|
11037
|
+
completedUnits: int64;
|
|
11038
|
+
progressObservationDateTime: offsetDateTime;
|
|
11039
|
+
totalUnits: int64;
|
|
11040
|
+
units: string | null;
|
|
11041
|
+
}
|
|
11042
|
+
|
|
11043
|
+
@complex model synchronizationQuarantine {
|
|
11044
|
+
currentBegan: offsetDateTime;
|
|
11045
|
+
error: synchronizationError | null;
|
|
11046
|
+
nextAttempt: offsetDateTime;
|
|
11047
|
+
reason: quarantineReason;
|
|
11048
|
+
seriesBegan: offsetDateTime;
|
|
11049
|
+
seriesCount: int64;
|
|
11050
|
+
}
|
|
11051
|
+
|
|
11052
|
+
@complex model synchronizationRule {
|
|
11053
|
+
containerFilter: containerFilter | null;
|
|
11054
|
+
editable: boolean;
|
|
11055
|
+
groupFilter: groupFilter | null;
|
|
11056
|
+
id: string | null;
|
|
11057
|
+
metadata: stringKeyStringValuePair[] | null;
|
|
11058
|
+
name: string | null;
|
|
11059
|
+
objectMappings: objectMapping[] | null;
|
|
11060
|
+
priority: int32;
|
|
11061
|
+
sourceDirectoryName: string | null;
|
|
11062
|
+
targetDirectoryName: string | null;
|
|
11063
|
+
}
|
|
11064
|
+
|
|
11065
|
+
@complex model synchronizationSchedule {
|
|
11066
|
+
expiration: offsetDateTime | null;
|
|
11067
|
+
interval: duration;
|
|
11068
|
+
state: synchronizationScheduleState;
|
|
11069
|
+
}
|
|
11070
|
+
|
|
11071
|
+
@graphDeprecated("SynchronizationSecret_Deprecation")
|
|
11072
|
+
@complex model synchronizationSecretKeyStringValuePair {
|
|
11073
|
+
key: synchronizationSecret;
|
|
11074
|
+
value: string | null;
|
|
11075
|
+
}
|
|
11076
|
+
|
|
11077
|
+
@complex model synchronizationStatus {
|
|
11078
|
+
code: synchronizationStatusCode;
|
|
11079
|
+
countSuccessiveCompleteFailures: int64;
|
|
11080
|
+
escrowsPruned: boolean;
|
|
11081
|
+
lastExecution: synchronizationTaskExecution | null;
|
|
11082
|
+
lastSuccessfulExecution: synchronizationTaskExecution | null;
|
|
11083
|
+
lastSuccessfulExecutionWithExports: synchronizationTaskExecution | null;
|
|
11084
|
+
progress: synchronizationProgress[] | null;
|
|
11085
|
+
quarantine: synchronizationQuarantine | null;
|
|
11086
|
+
steadyStateFirstAchievedTime: offsetDateTime;
|
|
11087
|
+
steadyStateLastAchievedTime: offsetDateTime;
|
|
11088
|
+
synchronizedEntryCountByType: stringKeyLongValuePair[] | null;
|
|
11089
|
+
troubleshootingUrl: string | null;
|
|
11090
|
+
}
|
|
11091
|
+
|
|
11092
|
+
@complex model synchronizationTaskExecution {
|
|
11093
|
+
activityIdentifier: string | null;
|
|
11094
|
+
countEntitled: int64;
|
|
11095
|
+
countEntitledForProvisioning: int64;
|
|
11096
|
+
countEscrowed: int64;
|
|
11097
|
+
countEscrowedRaw: int64;
|
|
11098
|
+
countExported: int64;
|
|
11099
|
+
countExports: int64;
|
|
11100
|
+
countImported: int64;
|
|
11101
|
+
countImportedDeltas: int64;
|
|
11102
|
+
countImportedReferenceDeltas: int64;
|
|
11103
|
+
error: synchronizationError | null;
|
|
11104
|
+
state: synchronizationTaskExecutionResult;
|
|
11105
|
+
timeBegan: offsetDateTime;
|
|
11106
|
+
timeEnded: offsetDateTime;
|
|
11107
|
+
}
|
|
11108
|
+
|
|
10570
11109
|
@complex model systemCredentialPreferences {
|
|
10571
11110
|
excludeTargets: excludeTarget[];
|
|
10572
11111
|
includeTargets: includeTarget[];
|
|
@@ -13608,7 +14147,9 @@ namespace reference.`microsoft.graph` {
|
|
|
13608
14147
|
}
|
|
13609
14148
|
|
|
13610
14149
|
@entity model admin extends MsGraph.SharedModels.entity {
|
|
14150
|
+
@contains cloudLicensing: reference.`microsoft.graph.cloudLicensing`.adminCloudLicensing | null;
|
|
13611
14151
|
@contains people: peopleAdminSettings | null;
|
|
14152
|
+
@contains serviceAnnouncement: serviceAnnouncement | null;
|
|
13612
14153
|
@contains sharepoint: sharepoint | null;
|
|
13613
14154
|
}
|
|
13614
14155
|
|
|
@@ -13725,6 +14266,9 @@ namespace reference.`microsoft.graph` {
|
|
|
13725
14266
|
@entity model agentIdentity extends servicePrincipal {
|
|
13726
14267
|
agentIdentityBlueprintId: string;
|
|
13727
14268
|
@computed createdDateTime: offsetDateTime | null;
|
|
14269
|
+
managerApplications: guid;
|
|
14270
|
+
@references inheritedAppRoleAssignments: appRoleAssignment[];
|
|
14271
|
+
@references inheritedOauth2PermissionGrants: oAuth2PermissionGrant[];
|
|
13728
14272
|
@references sponsors: directoryObject[];
|
|
13729
14273
|
}
|
|
13730
14274
|
|
|
@@ -13736,6 +14280,7 @@ namespace reference.`microsoft.graph` {
|
|
|
13736
14280
|
|
|
13737
14281
|
@open
|
|
13738
14282
|
@entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
|
|
14283
|
+
managerApplications: guid;
|
|
13739
14284
|
@references sponsors: directoryObject[];
|
|
13740
14285
|
}
|
|
13741
14286
|
|
|
@@ -16306,6 +16851,10 @@ namespace reference.`microsoft.graph` {
|
|
|
16306
16851
|
* Defines a managed app behavior, either warn or block, if the specified Android SafetyNet Attestation requirement fails.
|
|
16307
16852
|
*/
|
|
16308
16853
|
appActionIfAndroidSafetyNetDeviceAttestationFailed: managedAppRemediationAction;
|
|
16854
|
+
/**
|
|
16855
|
+
* 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.
|
|
16856
|
+
*/
|
|
16857
|
+
appActionIfDeveloperOptionsEnabled: managedAppRemediationAction | null;
|
|
16309
16858
|
/**
|
|
16310
16859
|
* Defines a managed app behavior, either warn, block or wipe, if the screen lock is required on android device but is not set.
|
|
16311
16860
|
*/
|
|
@@ -17986,10 +18535,18 @@ namespace reference.`microsoft.graph` {
|
|
|
17986
18535
|
* Domains that are accessed through the public internet instead of through VPN, even when per-app VPN is activated
|
|
17987
18536
|
*/
|
|
17988
18537
|
excludedDomains: string[] | null;
|
|
18538
|
+
/**
|
|
18539
|
+
* 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.
|
|
18540
|
+
*/
|
|
18541
|
+
excludeLocalNetworks: boolean | null;
|
|
17989
18542
|
/**
|
|
17990
18543
|
* 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
|
|
17991
18544
|
*/
|
|
17992
18545
|
identifier: string | null;
|
|
18546
|
+
/**
|
|
18547
|
+
* 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.
|
|
18548
|
+
*/
|
|
18549
|
+
includeAllNetworks: boolean | null;
|
|
17993
18550
|
/**
|
|
17994
18551
|
* Login group or domain when connection type is set to Dell SonicWALL Mobile Connection.
|
|
17995
18552
|
*/
|
|
@@ -18084,6 +18641,7 @@ namespace reference.`microsoft.graph` {
|
|
|
18084
18641
|
@contains federatedIdentityCredentials: federatedIdentityCredential[];
|
|
18085
18642
|
@references homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
18086
18643
|
@references owners: directoryObject[];
|
|
18644
|
+
@contains synchronization: synchronization | null;
|
|
18087
18645
|
@references tokenIssuancePolicies: tokenIssuancePolicy[];
|
|
18088
18646
|
@references tokenLifetimePolicies: tokenLifetimePolicy[];
|
|
18089
18647
|
}
|
|
@@ -18281,6 +18839,10 @@ namespace reference.`microsoft.graph` {
|
|
|
18281
18839
|
size: int32;
|
|
18282
18840
|
}
|
|
18283
18841
|
|
|
18842
|
+
@entity model attributeMappingFunctionSchema extends entity {
|
|
18843
|
+
parameters: attributeMappingParameterSchema[] | null;
|
|
18844
|
+
}
|
|
18845
|
+
|
|
18284
18846
|
@entity model attributeSet extends entity {
|
|
18285
18847
|
description: string | null;
|
|
18286
18848
|
maxAttributesPerSet: int32 | null;
|
|
@@ -18478,6 +19040,9 @@ namespace reference.`microsoft.graph` {
|
|
|
18478
19040
|
volumeType: volumeType | null;
|
|
18479
19041
|
}
|
|
18480
19042
|
|
|
19043
|
+
@entity model bulkUpload extends entity {
|
|
19044
|
+
}
|
|
19045
|
+
|
|
18481
19046
|
@entity model calendar extends entity {
|
|
18482
19047
|
allowedOnlineMeetingProviders: onlineMeetingProviderType[] | null;
|
|
18483
19048
|
calendarGroupId: string | null;
|
|
@@ -20983,7 +21548,7 @@ namespace reference.`microsoft.graph` {
|
|
|
20983
21548
|
*/
|
|
20984
21549
|
@computed lastModifiedDateTime: offsetDateTime;
|
|
20985
21550
|
/**
|
|
20986
|
-
* Indicates the
|
|
21551
|
+
* Indicates the device platform on which the device compliance script will be executed. Possible values are: windows10AndLater (default), linux. The default value is windows10AndLater.
|
|
20987
21552
|
*/
|
|
20988
21553
|
platform: deviceComplianceScriptPlatformType | null;
|
|
20989
21554
|
/**
|
|
@@ -20995,7 +21560,7 @@ namespace reference.`microsoft.graph` {
|
|
|
20995
21560
|
*/
|
|
20996
21561
|
roleScopeTagIds: string[] | null;
|
|
20997
21562
|
/**
|
|
20998
|
-
*
|
|
21563
|
+
* Indicate whether PowerShell script(s) should run as 32-bit
|
|
20999
21564
|
*/
|
|
21000
21565
|
runAs32Bit: boolean;
|
|
21001
21566
|
/**
|
|
@@ -21509,6 +22074,7 @@ namespace reference.`microsoft.graph` {
|
|
|
21509
22074
|
successCount: int32;
|
|
21510
22075
|
}
|
|
21511
22076
|
|
|
22077
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
21512
22078
|
@entity model deviceConfigurationUserStateSummary extends entity {
|
|
21513
22079
|
/**
|
|
21514
22080
|
* Number of compliant users
|
|
@@ -22479,6 +23045,8 @@ namespace reference.`microsoft.graph` {
|
|
|
22479
23045
|
/**
|
|
22480
23046
|
* The device configuration user state summary for this account.
|
|
22481
23047
|
*/
|
|
23048
|
+
|
|
23049
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
22482
23050
|
@contains deviceConfigurationUserStateSummaries: deviceConfigurationUserStateSummary | null;
|
|
22483
23051
|
/**
|
|
22484
23052
|
* The list of device custom attribute shell scripts associated with the tenant.
|
|
@@ -24772,6 +25340,15 @@ namespace reference.`microsoft.graph` {
|
|
|
24772
25340
|
targetResources: targetResource[] | null;
|
|
24773
25341
|
}
|
|
24774
25342
|
|
|
25343
|
+
@entity model directoryDefinition extends entity {
|
|
25344
|
+
discoverabilities: directoryDefinitionDiscoverabilities;
|
|
25345
|
+
discoveryDateTime: offsetDateTime | null;
|
|
25346
|
+
name: string | null;
|
|
25347
|
+
objects: objectDefinition[] | null;
|
|
25348
|
+
readOnly: boolean;
|
|
25349
|
+
version: string | null;
|
|
25350
|
+
}
|
|
25351
|
+
|
|
24775
25352
|
@open
|
|
24776
25353
|
@entity model directoryObject extends entity {
|
|
24777
25354
|
deletedDateTime: offsetDateTime | null;
|
|
@@ -25471,6 +26048,12 @@ namespace reference.`microsoft.graph` {
|
|
|
25471
26048
|
@contains applicationPermissionGrants: fileStorageContainerTypeAppPermissionGrant[];
|
|
25472
26049
|
}
|
|
25473
26050
|
|
|
26051
|
+
@entity model filterOperatorSchema extends entity {
|
|
26052
|
+
arity: scopeOperatorType;
|
|
26053
|
+
multivaluedComparisonType: scopeOperatorMultiValuedComparisonType;
|
|
26054
|
+
supportedAttributeTypes: attributeType[];
|
|
26055
|
+
}
|
|
26056
|
+
|
|
25474
26057
|
@abstract
|
|
25475
26058
|
@entity model governanceInsight extends entity {
|
|
25476
26059
|
}
|
|
@@ -25483,6 +26066,7 @@ namespace reference.`microsoft.graph` {
|
|
|
25483
26066
|
assignedLicenses: assignedLicense[] | null;
|
|
25484
26067
|
autoSubscribeNewMembers: boolean | null;
|
|
25485
26068
|
classification: string | null;
|
|
26069
|
+
cloudLicensing: reference.`microsoft.graph.cloudLicensing`.groupCloudLicensing | null;
|
|
25486
26070
|
createdByAppId: string | null;
|
|
25487
26071
|
@computed createdDateTime: offsetDateTime | null;
|
|
25488
26072
|
description: string | null;
|
|
@@ -28640,6 +29224,7 @@ namespace reference.`microsoft.graph` {
|
|
|
28640
29224
|
* Contains properties and inherited properties for iOS store apps.
|
|
28641
29225
|
*/
|
|
28642
29226
|
@entity model iosStoreApp extends mobileApp {
|
|
29227
|
+
appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol | null;
|
|
28643
29228
|
/**
|
|
28644
29229
|
* The iOS architecture for which this app can run on.
|
|
28645
29230
|
*/
|
|
@@ -28807,6 +29392,7 @@ namespace reference.`microsoft.graph` {
|
|
|
28807
29392
|
* Contains properties and inherited properties for iOS Volume-Purchased Program (VPP) Apps.
|
|
28808
29393
|
*/
|
|
28809
29394
|
@entity model iosVppApp extends mobileApp {
|
|
29395
|
+
appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol | null;
|
|
28810
29396
|
/**
|
|
28811
29397
|
* The applicable iOS Device Type.
|
|
28812
29398
|
*/
|
|
@@ -30453,6 +31039,10 @@ namespace reference.`microsoft.graph` {
|
|
|
30453
31039
|
* Contains properties and inherited properties for MacOS Volume-Purchased Program (VPP) Apps.
|
|
30454
31040
|
*/
|
|
30455
31041
|
@entity model macOsVppApp extends mobileApp {
|
|
31042
|
+
/**
|
|
31043
|
+
* 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.
|
|
31044
|
+
*/
|
|
31045
|
+
appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol;
|
|
30456
31046
|
/**
|
|
30457
31047
|
* The store URL.
|
|
30458
31048
|
*/
|
|
@@ -30591,6 +31181,10 @@ namespace reference.`microsoft.graph` {
|
|
|
30591
31181
|
* This is the name of the Wi-Fi network that is broadcast to all devices.
|
|
30592
31182
|
*/
|
|
30593
31183
|
ssid: string;
|
|
31184
|
+
/**
|
|
31185
|
+
* 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.
|
|
31186
|
+
*/
|
|
31187
|
+
wifiRequirePhysicalMacAddressEnabled: boolean | null;
|
|
30594
31188
|
/**
|
|
30595
31189
|
* Indicates whether the Wi-Fi endpoint uses an EAP-based security type. Possible values are: open, wpaPersonal, wpaEnterprise, wep, wpa2Personal, and wpa2Enterprise
|
|
30596
31190
|
*/
|
|
@@ -31613,6 +32207,8 @@ namespace reference.`microsoft.graph` {
|
|
|
31613
32207
|
/**
|
|
31614
32208
|
* Security baseline states for this device.
|
|
31615
32209
|
*/
|
|
32210
|
+
|
|
32211
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
31616
32212
|
@contains securityBaselineStates: securityBaselineState[];
|
|
31617
32213
|
/**
|
|
31618
32214
|
* The primary users associated with the managed device.
|
|
@@ -32880,6 +33476,10 @@ namespace reference.`microsoft.graph` {
|
|
|
32880
33476
|
* Indicates the size of the file after encryption, in bytes.
|
|
32881
33477
|
*/
|
|
32882
33478
|
sizeEncrypted: int64;
|
|
33479
|
+
/**
|
|
33480
|
+
* 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.
|
|
33481
|
+
*/
|
|
33482
|
+
uploadErrorCode: mobileAppContentFileUploadErrorCode | null;
|
|
32883
33483
|
/**
|
|
32884
33484
|
* 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.
|
|
32885
33485
|
*/
|
|
@@ -33329,6 +33929,14 @@ namespace reference.`microsoft.graph` {
|
|
|
33329
33929
|
* Timestamp when on-prem certificate connector was enrolled in Intune.
|
|
33330
33930
|
*/
|
|
33331
33931
|
enrolledDateTime: offsetDateTime;
|
|
33932
|
+
/**
|
|
33933
|
+
* 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.
|
|
33934
|
+
*/
|
|
33935
|
+
healthChecks: connectorHealthCheck[] | null;
|
|
33936
|
+
/**
|
|
33937
|
+
* 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.
|
|
33938
|
+
*/
|
|
33939
|
+
healthStatus: ndesConnectorHealthStatus | null;
|
|
33332
33940
|
/**
|
|
33333
33941
|
* Last connection time for the Ndes Connector
|
|
33334
33942
|
*/
|
|
@@ -35015,6 +35623,8 @@ namespace reference.`microsoft.graph` {
|
|
|
35015
35623
|
/**
|
|
35016
35624
|
* The security baseline per category compliance state summary for the security baseline of the account.
|
|
35017
35625
|
*/
|
|
35626
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
35627
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
35018
35628
|
@entity model securityBaselineCategoryStateSummary extends securityBaselineStateSummary {
|
|
35019
35629
|
/**
|
|
35020
35630
|
* The category name
|
|
@@ -35025,6 +35635,7 @@ namespace reference.`microsoft.graph` {
|
|
|
35025
35635
|
/**
|
|
35026
35636
|
* The security baseline compliance state summary of the security baseline for a device.
|
|
35027
35637
|
*/
|
|
35638
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
35028
35639
|
@entity model securityBaselineDeviceState extends entity {
|
|
35029
35640
|
/**
|
|
35030
35641
|
* Display name of the device
|
|
@@ -35051,6 +35662,7 @@ namespace reference.`microsoft.graph` {
|
|
|
35051
35662
|
/**
|
|
35052
35663
|
* The security baseline compliance state of a setting for a device
|
|
35053
35664
|
*/
|
|
35665
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
35054
35666
|
@entity model securityBaselineSettingState extends entity {
|
|
35055
35667
|
/**
|
|
35056
35668
|
* The policies that contribute to this setting instance
|
|
@@ -35089,6 +35701,7 @@ namespace reference.`microsoft.graph` {
|
|
|
35089
35701
|
/**
|
|
35090
35702
|
* Security baseline state for a device.
|
|
35091
35703
|
*/
|
|
35704
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
35092
35705
|
@entity model securityBaselineState extends entity {
|
|
35093
35706
|
/**
|
|
35094
35707
|
* The display name of the security baseline
|
|
@@ -35109,12 +35722,15 @@ namespace reference.`microsoft.graph` {
|
|
|
35109
35722
|
/**
|
|
35110
35723
|
* The security baseline state for different settings for a device
|
|
35111
35724
|
*/
|
|
35725
|
+
|
|
35726
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
35112
35727
|
@contains settingStates: securityBaselineSettingState[];
|
|
35113
35728
|
}
|
|
35114
35729
|
|
|
35115
35730
|
/**
|
|
35116
35731
|
* The security baseline compliance state summary for the security baseline of the account.
|
|
35117
35732
|
*/
|
|
35733
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
35118
35734
|
@entity model securityBaselineStateSummary extends entity {
|
|
35119
35735
|
/**
|
|
35120
35736
|
* Number of conflict devices
|
|
@@ -35149,14 +35765,20 @@ namespace reference.`microsoft.graph` {
|
|
|
35149
35765
|
/**
|
|
35150
35766
|
* The security baseline per category device state summary
|
|
35151
35767
|
*/
|
|
35768
|
+
|
|
35769
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
35152
35770
|
@contains categoryDeviceStateSummaries: securityBaselineCategoryStateSummary[];
|
|
35153
35771
|
/**
|
|
35154
35772
|
* The security baseline device states
|
|
35155
35773
|
*/
|
|
35774
|
+
|
|
35775
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
35156
35776
|
@contains deviceStates: securityBaselineDeviceState[];
|
|
35157
35777
|
/**
|
|
35158
35778
|
* The security baseline device state summary
|
|
35159
35779
|
*/
|
|
35780
|
+
|
|
35781
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
35160
35782
|
@contains deviceStateSummary: securityBaselineStateSummary | null;
|
|
35161
35783
|
}
|
|
35162
35784
|
|
|
@@ -35197,6 +35819,47 @@ namespace reference.`microsoft.graph` {
|
|
|
35197
35819
|
@entity model serviceActivity extends entity {
|
|
35198
35820
|
}
|
|
35199
35821
|
|
|
35822
|
+
@entity model serviceAnnouncement extends entity {
|
|
35823
|
+
@contains healthOverviews: serviceHealth[];
|
|
35824
|
+
@contains issues: serviceHealthIssue[];
|
|
35825
|
+
@contains messages: serviceUpdateMessage[];
|
|
35826
|
+
}
|
|
35827
|
+
|
|
35828
|
+
@entity model serviceAnnouncementAttachment extends entity {
|
|
35829
|
+
content: stream | null;
|
|
35830
|
+
contentType: string | null;
|
|
35831
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
35832
|
+
name: string | null;
|
|
35833
|
+
size: int32;
|
|
35834
|
+
}
|
|
35835
|
+
|
|
35836
|
+
@abstract
|
|
35837
|
+
@entity model serviceAnnouncementBase extends entity {
|
|
35838
|
+
details: keyValuePair[] | null;
|
|
35839
|
+
endDateTime: offsetDateTime | null;
|
|
35840
|
+
@computed lastModifiedDateTime: offsetDateTime;
|
|
35841
|
+
startDateTime: offsetDateTime;
|
|
35842
|
+
title: string;
|
|
35843
|
+
}
|
|
35844
|
+
|
|
35845
|
+
@entity model serviceHealth extends entity {
|
|
35846
|
+
service: string;
|
|
35847
|
+
status: serviceHealthStatus;
|
|
35848
|
+
@contains issues: serviceHealthIssue[];
|
|
35849
|
+
}
|
|
35850
|
+
|
|
35851
|
+
@entity model serviceHealthIssue extends serviceAnnouncementBase {
|
|
35852
|
+
classification: serviceHealthClassificationType;
|
|
35853
|
+
feature: string | null;
|
|
35854
|
+
featureGroup: string | null;
|
|
35855
|
+
impactDescription: string;
|
|
35856
|
+
isResolved: boolean;
|
|
35857
|
+
origin: serviceHealthOrigin;
|
|
35858
|
+
posts: serviceHealthIssuePost[];
|
|
35859
|
+
service: string;
|
|
35860
|
+
status: serviceHealthStatus;
|
|
35861
|
+
}
|
|
35862
|
+
|
|
35200
35863
|
@entity model serviceLevelAgreementRoot extends entity {
|
|
35201
35864
|
@contains azureADAuthentication: azureADAuthentication | null;
|
|
35202
35865
|
}
|
|
@@ -35292,6 +35955,7 @@ namespace reference.`microsoft.graph` {
|
|
|
35292
35955
|
@references owners: directoryObject[];
|
|
35293
35956
|
@references permissionGrantPreApprovalPolicies: permissionGrantPreApprovalPolicy[];
|
|
35294
35957
|
@contains remoteDesktopSecurityConfiguration: remoteDesktopSecurityConfiguration | null;
|
|
35958
|
+
@contains synchronization: synchronization | null;
|
|
35295
35959
|
@references tokenIssuancePolicies: tokenIssuancePolicy[];
|
|
35296
35960
|
@references tokenLifetimePolicies: tokenLifetimePolicy[];
|
|
35297
35961
|
@references transitiveMemberOf: directoryObject[];
|
|
@@ -35321,6 +35985,20 @@ namespace reference.`microsoft.graph` {
|
|
|
35321
35985
|
tokenIssuerType: tokenIssuerType | null;
|
|
35322
35986
|
}
|
|
35323
35987
|
|
|
35988
|
+
@entity model serviceUpdateMessage extends serviceAnnouncementBase {
|
|
35989
|
+
actionRequiredByDateTime: offsetDateTime | null;
|
|
35990
|
+
attachmentsArchive: stream | null;
|
|
35991
|
+
body: itemBody;
|
|
35992
|
+
category: serviceUpdateCategory;
|
|
35993
|
+
hasAttachments: boolean;
|
|
35994
|
+
isMajorChange: boolean | null;
|
|
35995
|
+
services: string[] | null;
|
|
35996
|
+
severity: serviceUpdateSeverity;
|
|
35997
|
+
tags: string[] | null;
|
|
35998
|
+
viewPoint: serviceUpdateMessageViewpoint | null;
|
|
35999
|
+
@contains attachments: serviceAnnouncementAttachment[];
|
|
36000
|
+
}
|
|
36001
|
+
|
|
35324
36002
|
/**
|
|
35325
36003
|
* Device Compilance Policy and Configuration for a Setting State summary
|
|
35326
36004
|
*/
|
|
@@ -35927,6 +36605,39 @@ namespace reference.`microsoft.graph` {
|
|
|
35927
36605
|
uploadDateTime: offsetDateTime;
|
|
35928
36606
|
}
|
|
35929
36607
|
|
|
36608
|
+
@entity model synchronization extends entity {
|
|
36609
|
+
|
|
36610
|
+
@graphDeprecated("SynchronizationSecret_Deprecation")
|
|
36611
|
+
secrets: synchronizationSecretKeyStringValuePair[] | null;
|
|
36612
|
+
@contains jobs: synchronizationJob[];
|
|
36613
|
+
@contains templates: synchronizationTemplate[];
|
|
36614
|
+
}
|
|
36615
|
+
|
|
36616
|
+
@entity model synchronizationJob extends entity {
|
|
36617
|
+
schedule: synchronizationSchedule | null;
|
|
36618
|
+
status: synchronizationStatus | null;
|
|
36619
|
+
synchronizationJobSettings: keyValuePair[] | null;
|
|
36620
|
+
templateId: string | null;
|
|
36621
|
+
@contains bulkUpload: bulkUpload | null;
|
|
36622
|
+
@contains schema: synchronizationSchema | null;
|
|
36623
|
+
}
|
|
36624
|
+
|
|
36625
|
+
@entity model synchronizationSchema extends entity {
|
|
36626
|
+
synchronizationRules: synchronizationRule[] | null;
|
|
36627
|
+
version: string | null;
|
|
36628
|
+
@contains directories: directoryDefinition[];
|
|
36629
|
+
}
|
|
36630
|
+
|
|
36631
|
+
@entity model synchronizationTemplate extends entity {
|
|
36632
|
+
applicationId: guid;
|
|
36633
|
+
default: boolean;
|
|
36634
|
+
description: string | null;
|
|
36635
|
+
discoverable: boolean;
|
|
36636
|
+
factoryTag: string | null;
|
|
36637
|
+
metadata: synchronizationMetadataEntry[] | null;
|
|
36638
|
+
@contains schema: synchronizationSchema | null;
|
|
36639
|
+
}
|
|
36640
|
+
|
|
35930
36641
|
@entity model targetDeviceGroup extends entity {
|
|
35931
36642
|
displayName: string | null;
|
|
35932
36643
|
}
|
|
@@ -36289,6 +37000,7 @@ namespace reference.`microsoft.graph` {
|
|
|
36289
37000
|
birthday: offsetDateTime;
|
|
36290
37001
|
businessPhones: string[];
|
|
36291
37002
|
city: string | null;
|
|
37003
|
+
cloudLicensing: reference.`microsoft.graph.cloudLicensing`.userCloudLicensing | null;
|
|
36292
37004
|
cloudRealtimeCommunicationInfo: cloudRealtimeCommunicationInfo | null;
|
|
36293
37005
|
companyName: string | null;
|
|
36294
37006
|
consentProvidedForMinor: string | null;
|
|
@@ -43257,7 +43969,11 @@ namespace reference.`microsoft.graph` {
|
|
|
43257
43969
|
*/
|
|
43258
43970
|
@entity model windowsManagedAppProtection extends managedAppPolicy {
|
|
43259
43971
|
/**
|
|
43260
|
-
*
|
|
43972
|
+
* 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.
|
|
43973
|
+
*/
|
|
43974
|
+
allowedInboundDataTransferSourceApps: windowsManagedAppDataTransferLocations;
|
|
43975
|
+
/**
|
|
43976
|
+
* Indicates the sources from which data is allowed to be transferred. Some possible values are allApps, none, or selectedApps.
|
|
43261
43977
|
*/
|
|
43262
43978
|
allowedInboundDataTransferSources: windowsManagedAppDataTransferLevel;
|
|
43263
43979
|
/**
|
|
@@ -43265,7 +43981,11 @@ namespace reference.`microsoft.graph` {
|
|
|
43265
43981
|
*/
|
|
43266
43982
|
allowedOutboundClipboardSharingLevel: windowsManagedAppClipboardSharingLevel;
|
|
43267
43983
|
/**
|
|
43268
|
-
*
|
|
43984
|
+
* 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.
|
|
43985
|
+
*/
|
|
43986
|
+
allowedOutboundDataTransferDestinationApps: windowsManagedAppDataTransferLocations;
|
|
43987
|
+
/**
|
|
43988
|
+
* Indicates the destinations to which data is allowed to be transferred. Some possible values are allApps, none, or selectedApps.
|
|
43269
43989
|
*/
|
|
43270
43990
|
allowedOutboundDataTransferDestinations: windowsManagedAppDataTransferLevel;
|
|
43271
43991
|
/**
|
|
@@ -46202,18 +46922,6 @@ namespace reference.`microsoft.graph` {
|
|
|
46202
46922
|
*/
|
|
46203
46923
|
wpaPersonal: 4,
|
|
46204
46924
|
unknownFutureValue: 5,
|
|
46205
|
-
/**
|
|
46206
|
-
* 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.
|
|
46207
|
-
*/
|
|
46208
|
-
wpa2Personal: 6,
|
|
46209
|
-
/**
|
|
46210
|
-
* 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.
|
|
46211
|
-
*/
|
|
46212
|
-
wpa3Personal: 7,
|
|
46213
|
-
/**
|
|
46214
|
-
* 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.
|
|
46215
|
-
*/
|
|
46216
|
-
wpa3Enterprise: 8,
|
|
46217
46925
|
}
|
|
46218
46926
|
|
|
46219
46927
|
/**
|
|
@@ -46388,22 +47096,6 @@ namespace reference.`microsoft.graph` {
|
|
|
46388
47096
|
*/
|
|
46389
47097
|
wpaEnterprise: 4,
|
|
46390
47098
|
unknownFutureValue: 5,
|
|
46391
|
-
/**
|
|
46392
|
-
* 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.
|
|
46393
|
-
*/
|
|
46394
|
-
wpa2Personal: 6,
|
|
46395
|
-
/**
|
|
46396
|
-
* 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.
|
|
46397
|
-
*/
|
|
46398
|
-
wpa2Enterprise: 7,
|
|
46399
|
-
/**
|
|
46400
|
-
* Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2.
|
|
46401
|
-
*/
|
|
46402
|
-
wpa3Personal: 8,
|
|
46403
|
-
/**
|
|
46404
|
-
* 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.
|
|
46405
|
-
*/
|
|
46406
|
-
wpa3Enterprise: 9,
|
|
46407
47099
|
}
|
|
46408
47100
|
|
|
46409
47101
|
/**
|
|
@@ -47099,6 +47791,51 @@ namespace reference.`microsoft.graph` {
|
|
|
47099
47791
|
unknownFutureValue: 2,
|
|
47100
47792
|
}
|
|
47101
47793
|
|
|
47794
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
47795
|
+
enum attributeDefinitionMetadata {
|
|
47796
|
+
BaseAttributeName: 0,
|
|
47797
|
+
ComplexObjectDefinition: 1,
|
|
47798
|
+
IsContainer: 2,
|
|
47799
|
+
IsCustomerDefined: 3,
|
|
47800
|
+
IsDomainQualified: 4,
|
|
47801
|
+
LinkPropertyNames: 5,
|
|
47802
|
+
LinkTypeName: 6,
|
|
47803
|
+
MaximumLength: 7,
|
|
47804
|
+
ReferencedProperty: 8,
|
|
47805
|
+
}
|
|
47806
|
+
|
|
47807
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
47808
|
+
enum attributeFlowBehavior {
|
|
47809
|
+
FlowWhenChanged: 0,
|
|
47810
|
+
FlowAlways: 1,
|
|
47811
|
+
}
|
|
47812
|
+
|
|
47813
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
47814
|
+
enum attributeFlowType {
|
|
47815
|
+
Always: 0,
|
|
47816
|
+
ObjectAddOnly: 1,
|
|
47817
|
+
MultiValueAddOnly: 2,
|
|
47818
|
+
ValueAddOnly: 3,
|
|
47819
|
+
AttributeAddOnly: 4,
|
|
47820
|
+
}
|
|
47821
|
+
|
|
47822
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
47823
|
+
enum attributeMappingSourceType {
|
|
47824
|
+
Attribute: 0,
|
|
47825
|
+
Constant: 1,
|
|
47826
|
+
Function: 2,
|
|
47827
|
+
}
|
|
47828
|
+
|
|
47829
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
47830
|
+
enum attributeType {
|
|
47831
|
+
`String`: 0,
|
|
47832
|
+
`Integer`: 1,
|
|
47833
|
+
Reference: 2,
|
|
47834
|
+
Binary: 3,
|
|
47835
|
+
`Boolean`: 4,
|
|
47836
|
+
DateTime: 5,
|
|
47837
|
+
}
|
|
47838
|
+
|
|
47102
47839
|
enum authenticationAppAdminConfiguration {
|
|
47103
47840
|
notApplicable: 0,
|
|
47104
47841
|
enabled: 1,
|
|
@@ -48522,6 +49259,29 @@ namespace reference.`microsoft.graph` {
|
|
|
48522
49259
|
applicationProxy: 0,
|
|
48523
49260
|
}
|
|
48524
49261
|
|
|
49262
|
+
/**
|
|
49263
|
+
* The name of the health check metric being evaluated for an NDES connector.
|
|
49264
|
+
*/
|
|
49265
|
+
enum connectorHealthCheckMetricName {
|
|
49266
|
+
/**
|
|
49267
|
+
* Measures connectivity between the connector and the Certificate Authority.
|
|
49268
|
+
*/
|
|
49269
|
+
caConnectivity: 0,
|
|
49270
|
+
/**
|
|
49271
|
+
* Measures whether the connector has the required Enroll permission on the certificate template for issuance.
|
|
49272
|
+
*/
|
|
49273
|
+
caIssuancePermissions: 1,
|
|
49274
|
+
/**
|
|
49275
|
+
* Measures whether the connector has the required permissions to revoke certificates on the CA.
|
|
49276
|
+
*/
|
|
49277
|
+
caRevocationPermissions: 2,
|
|
49278
|
+
/**
|
|
49279
|
+
* Measures whether the configured certificate template is valid and accessible.
|
|
49280
|
+
*/
|
|
49281
|
+
certificateTemplate: 3,
|
|
49282
|
+
unknownFutureValue: 4,
|
|
49283
|
+
}
|
|
49284
|
+
|
|
48525
49285
|
/**
|
|
48526
49286
|
* Connector health state for connector status
|
|
48527
49287
|
*/
|
|
@@ -48741,6 +49501,44 @@ namespace reference.`microsoft.graph` {
|
|
|
48741
49501
|
saturday: 6,
|
|
48742
49502
|
}
|
|
48743
49503
|
|
|
49504
|
+
/**
|
|
49505
|
+
* Describes how and when to install an app, specifically whether the app may be downloaded over cellular connections. Maps to Apple's AppManagedInstallBehaviorObject declaration.
|
|
49506
|
+
*/
|
|
49507
|
+
enum ddmAppAllowDownloadsOverCellular {
|
|
49508
|
+
/**
|
|
49509
|
+
* The device downloads apps of any size using a cellular network.
|
|
49510
|
+
*/
|
|
49511
|
+
alwaysOn: 0,
|
|
49512
|
+
/**
|
|
49513
|
+
* 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.
|
|
49514
|
+
*/
|
|
49515
|
+
alwaysOff: 1,
|
|
49516
|
+
/**
|
|
49517
|
+
* The device uses the settings for the corresponding store when downloading apps.
|
|
49518
|
+
*/
|
|
49519
|
+
storeSettings: 2,
|
|
49520
|
+
unknownFutureValue: 3,
|
|
49521
|
+
}
|
|
49522
|
+
|
|
49523
|
+
/**
|
|
49524
|
+
* Specifies the update behavior of the apps installed via VPP. Apps in packages are not automatically updated. Maps to Apple's AppManagedUpdateBehaviorObject declaration.
|
|
49525
|
+
*/
|
|
49526
|
+
enum ddmAppAutomaticAppUpdates {
|
|
49527
|
+
/**
|
|
49528
|
+
* The device automatically updates the app to the latest version.
|
|
49529
|
+
*/
|
|
49530
|
+
alwaysOn: 0,
|
|
49531
|
+
/**
|
|
49532
|
+
* The device never automatically updates the app.
|
|
49533
|
+
*/
|
|
49534
|
+
alwaysOff: 1,
|
|
49535
|
+
/**
|
|
49536
|
+
* The device uses the settings for the corresponding store to determine when to automatically update the app.
|
|
49537
|
+
*/
|
|
49538
|
+
storeSettings: 2,
|
|
49539
|
+
unknownFutureValue: 3,
|
|
49540
|
+
}
|
|
49541
|
+
|
|
48744
49542
|
enum defaultMfaMethodType {
|
|
48745
49543
|
none: 0,
|
|
48746
49544
|
mobilePhone: 1,
|
|
@@ -50852,6 +51650,10 @@ namespace reference.`microsoft.graph` {
|
|
|
50852
51650
|
* Indicates the settings that can be deployed through the Android channel.
|
|
50853
51651
|
*/
|
|
50854
51652
|
android: 65536,
|
|
51653
|
+
/**
|
|
51654
|
+
* Setting can be deployed through the Intune Open Extensibility channel for scenarios such as Windows Recovery Environment (WinRE) configuration policies.
|
|
51655
|
+
*/
|
|
51656
|
+
intuneOpenExtensibility: 131072,
|
|
50855
51657
|
}
|
|
50856
51658
|
|
|
50857
51659
|
/**
|
|
@@ -52117,6 +52919,16 @@ namespace reference.`microsoft.graph` {
|
|
|
52117
52919
|
group24: 5,
|
|
52118
52920
|
}
|
|
52119
52921
|
|
|
52922
|
+
@graphFlags
|
|
52923
|
+
enum directoryDefinitionDiscoverabilities {
|
|
52924
|
+
None: 0,
|
|
52925
|
+
AttributeNames: 1,
|
|
52926
|
+
AttributeDataTypes: 2,
|
|
52927
|
+
AttributeReadOnly: 4,
|
|
52928
|
+
ReferenceAttributes: 8,
|
|
52929
|
+
UnknownFutureValue: 16,
|
|
52930
|
+
}
|
|
52931
|
+
|
|
52120
52932
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
52121
52933
|
enum discoverySource {
|
|
52122
52934
|
/**
|
|
@@ -53043,6 +53855,23 @@ namespace reference.`microsoft.graph` {
|
|
|
53043
53855
|
unknownFutureValue: 6,
|
|
53044
53856
|
}
|
|
53045
53857
|
|
|
53858
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
53859
|
+
enum entryExportStatus {
|
|
53860
|
+
Noop: 0,
|
|
53861
|
+
Success: 1,
|
|
53862
|
+
RetryableError: 2,
|
|
53863
|
+
PermanentError: 3,
|
|
53864
|
+
Error: 4,
|
|
53865
|
+
}
|
|
53866
|
+
|
|
53867
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
53868
|
+
enum entrySyncOperation {
|
|
53869
|
+
None: 0,
|
|
53870
|
+
Add: 1,
|
|
53871
|
+
Delete: 2,
|
|
53872
|
+
Update: 3,
|
|
53873
|
+
}
|
|
53874
|
+
|
|
53046
53875
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
53047
53876
|
enum errorCode {
|
|
53048
53877
|
/**
|
|
@@ -53071,6 +53900,182 @@ namespace reference.`microsoft.graph` {
|
|
|
53071
53900
|
unknownFutureValue: 5,
|
|
53072
53901
|
}
|
|
53073
53902
|
|
|
53903
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
53904
|
+
enum escrowBehavior {
|
|
53905
|
+
Default: 1,
|
|
53906
|
+
IgnoreLookupReferenceResolutionFailure: 2,
|
|
53907
|
+
}
|
|
53908
|
+
|
|
53909
|
+
/**
|
|
53910
|
+
* Indicates the detailed error condition for an eSIM profile operation.
|
|
53911
|
+
*/
|
|
53912
|
+
enum eSimProfileErrorDetail {
|
|
53913
|
+
/**
|
|
53914
|
+
* No error.
|
|
53915
|
+
*/
|
|
53916
|
+
none: 0,
|
|
53917
|
+
/**
|
|
53918
|
+
* The eSIM card encountered a general failure.
|
|
53919
|
+
*/
|
|
53920
|
+
cardGeneralFailure: 1,
|
|
53921
|
+
/**
|
|
53922
|
+
* The confirmation code provided was incorrect.
|
|
53923
|
+
*/
|
|
53924
|
+
confirmationCodeIncorrect: 2,
|
|
53925
|
+
/**
|
|
53926
|
+
* The confirmation code was missing.
|
|
53927
|
+
*/
|
|
53928
|
+
confirmationCodeMissing: 3,
|
|
53929
|
+
/**
|
|
53930
|
+
* The maximum number of retries for the confirmation code was exceeded.
|
|
53931
|
+
*/
|
|
53932
|
+
confirmationCodeMaxRetriesExceeded: 4,
|
|
53933
|
+
/**
|
|
53934
|
+
* The operation is forbidden by policy.
|
|
53935
|
+
*/
|
|
53936
|
+
forbiddenByPolicy: 5,
|
|
53937
|
+
/**
|
|
53938
|
+
* The matching ID provided was invalid.
|
|
53939
|
+
*/
|
|
53940
|
+
invalidMatchingId: 6,
|
|
53941
|
+
/**
|
|
53942
|
+
* No eligible eSIM profile was found for this device.
|
|
53943
|
+
*/
|
|
53944
|
+
noEligibleProfileForThisDevice: 7,
|
|
53945
|
+
/**
|
|
53946
|
+
* There was not enough space on the eSIM card.
|
|
53947
|
+
*/
|
|
53948
|
+
notEnoughSpaceOnCard: 8,
|
|
53949
|
+
/**
|
|
53950
|
+
* The operation was aborted.
|
|
53951
|
+
*/
|
|
53952
|
+
operationAborted: 9,
|
|
53953
|
+
/**
|
|
53954
|
+
* The eSIM profile EID did not match the device.
|
|
53955
|
+
*/
|
|
53956
|
+
profileEidMismatch: 10,
|
|
53957
|
+
/**
|
|
53958
|
+
* The eSIM profile is not available for a new binding.
|
|
53959
|
+
*/
|
|
53960
|
+
profileNotAvailableForNewBinding: 11,
|
|
53961
|
+
/**
|
|
53962
|
+
* The eSIM profile has not been released by the operator.
|
|
53963
|
+
*/
|
|
53964
|
+
profileNotReleasedByOperator: 12,
|
|
53965
|
+
/**
|
|
53966
|
+
* The remote server encountered a general failure.
|
|
53967
|
+
*/
|
|
53968
|
+
remoteServerGeneralFailure: 13,
|
|
53969
|
+
/**
|
|
53970
|
+
* The remote server was unreachable.
|
|
53971
|
+
*/
|
|
53972
|
+
remoteServerUnreachable: 14,
|
|
53973
|
+
/**
|
|
53974
|
+
* A timeout occurred while waiting for user consent.
|
|
53975
|
+
*/
|
|
53976
|
+
timeoutWaitingForUserConsent: 15,
|
|
53977
|
+
/**
|
|
53978
|
+
* The operation is prohibited by the eSIM profile class.
|
|
53979
|
+
*/
|
|
53980
|
+
operationProhibitedByProfileClass: 16,
|
|
53981
|
+
/**
|
|
53982
|
+
* The provisioning profile is not present.
|
|
53983
|
+
*/
|
|
53984
|
+
provisioningProfileNotPresent: 17,
|
|
53985
|
+
/**
|
|
53986
|
+
* There is no corresponding request for this operation.
|
|
53987
|
+
*/
|
|
53988
|
+
noCorrespondingRequest: 18,
|
|
53989
|
+
/**
|
|
53990
|
+
* A timeout occurred while waiting for a response.
|
|
53991
|
+
*/
|
|
53992
|
+
timeoutWaitingForResponse: 19,
|
|
53993
|
+
/**
|
|
53994
|
+
* The ICCID already exists on the device.
|
|
53995
|
+
*/
|
|
53996
|
+
iccidAlreadyExists: 20,
|
|
53997
|
+
/**
|
|
53998
|
+
* An error occurred while processing the eSIM profile.
|
|
53999
|
+
*/
|
|
54000
|
+
profileProcessingError: 21,
|
|
54001
|
+
/**
|
|
54002
|
+
* The remote server is not trusted.
|
|
54003
|
+
*/
|
|
54004
|
+
remoteServerNotTrusted: 22,
|
|
54005
|
+
/**
|
|
54006
|
+
* The maximum number of retries for profile download was exceeded.
|
|
54007
|
+
*/
|
|
54008
|
+
profileDownloadMaxRetriesExceeded: 23,
|
|
54009
|
+
/**
|
|
54010
|
+
* The WinHTTP name could not be resolved.
|
|
54011
|
+
*/
|
|
54012
|
+
winhttpNameNotResolved: 24,
|
|
54013
|
+
/**
|
|
54014
|
+
* The WinHTTP operation was cancelled.
|
|
54015
|
+
*/
|
|
54016
|
+
winhttpOperationCancelled: 25,
|
|
54017
|
+
/**
|
|
54018
|
+
* The status is unspecified.
|
|
54019
|
+
*/
|
|
54020
|
+
statusUnspecified: 26,
|
|
54021
|
+
/**
|
|
54022
|
+
* The operation is in progress.
|
|
54023
|
+
*/
|
|
54024
|
+
inProgress: 27,
|
|
54025
|
+
/**
|
|
54026
|
+
* The operation is pending user action.
|
|
54027
|
+
*/
|
|
54028
|
+
pendingUserAction: 28,
|
|
54029
|
+
/**
|
|
54030
|
+
* An error occurred while setup was in progress.
|
|
54031
|
+
*/
|
|
54032
|
+
errorSetupInProgress: 29,
|
|
54033
|
+
/**
|
|
54034
|
+
* The user denied the operation.
|
|
54035
|
+
*/
|
|
54036
|
+
errorUserDenied: 30,
|
|
54037
|
+
/**
|
|
54038
|
+
* An internal error occurred.
|
|
54039
|
+
*/
|
|
54040
|
+
internalError: 31,
|
|
54041
|
+
/**
|
|
54042
|
+
* The ICCID was not found.
|
|
54043
|
+
*/
|
|
54044
|
+
errorIccIdNotFound: 32,
|
|
54045
|
+
/**
|
|
54046
|
+
* Multiple active eSIMs are present but no slot is available.
|
|
54047
|
+
*/
|
|
54048
|
+
errorMultipleActiveEsimsNoAvailableSlot: 33,
|
|
54049
|
+
unknownFutureValue: 34,
|
|
54050
|
+
}
|
|
54051
|
+
|
|
54052
|
+
/**
|
|
54053
|
+
* Indicates the state of an eSIM profile on a managed device.
|
|
54054
|
+
*/
|
|
54055
|
+
enum eSimProfileState {
|
|
54056
|
+
/**
|
|
54057
|
+
* Unknown state.
|
|
54058
|
+
*/
|
|
54059
|
+
`unknown`: 0,
|
|
54060
|
+
/**
|
|
54061
|
+
* The eSIM profile is being installed.
|
|
54062
|
+
*/
|
|
54063
|
+
installing: 1,
|
|
54064
|
+
/**
|
|
54065
|
+
* The eSIM profile has been successfully installed.
|
|
54066
|
+
*/
|
|
54067
|
+
installed: 2,
|
|
54068
|
+
/**
|
|
54069
|
+
* The eSIM profile is being deleted.
|
|
54070
|
+
*/
|
|
54071
|
+
deleting: 3,
|
|
54072
|
+
/**
|
|
54073
|
+
* An error occurred while processing the eSIM profile.
|
|
54074
|
+
*/
|
|
54075
|
+
error: 4,
|
|
54076
|
+
unknownFutureValue: 5,
|
|
54077
|
+
}
|
|
54078
|
+
|
|
53074
54079
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
53075
54080
|
enum eventType {
|
|
53076
54081
|
singleInstance: 0,
|
|
@@ -56374,6 +57379,22 @@ namespace reference.`microsoft.graph` {
|
|
|
56374
57379
|
userRequestedInstall: 5,
|
|
56375
57380
|
}
|
|
56376
57381
|
|
|
57382
|
+
/**
|
|
57383
|
+
* Optional error codes that can be provided when uploadState of mobileAppContentFile is indicating an error.
|
|
57384
|
+
*/
|
|
57385
|
+
enum mobileAppContentFileUploadErrorCode {
|
|
57386
|
+
apkIsInvalid: 1,
|
|
57387
|
+
apkIsMissingSignerCertificates: 2,
|
|
57388
|
+
apkHasInvalidPackageName: 3,
|
|
57389
|
+
apkPackageNameMismatch: 4,
|
|
57390
|
+
apkHasInvalidVersionCode: 5,
|
|
57391
|
+
apkHasVersionCodeMismatch: 6,
|
|
57392
|
+
apkHasInvalidMinSdk: 7,
|
|
57393
|
+
apkMinSdkMismatch: 8,
|
|
57394
|
+
apkVersionNameMismatch: 9,
|
|
57395
|
+
unknownFutureValue: 10,
|
|
57396
|
+
}
|
|
57397
|
+
|
|
56377
57398
|
/**
|
|
56378
57399
|
* Contains properties for upload request states.
|
|
56379
57400
|
*/
|
|
@@ -56574,6 +57595,41 @@ namespace reference.`microsoft.graph` {
|
|
|
56574
57595
|
unknownFutureValue: 2,
|
|
56575
57596
|
}
|
|
56576
57597
|
|
|
57598
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
57599
|
+
enum mutability {
|
|
57600
|
+
ReadWrite: 0,
|
|
57601
|
+
ReadOnly: 1,
|
|
57602
|
+
Immutable: 2,
|
|
57603
|
+
WriteOnly: 3,
|
|
57604
|
+
}
|
|
57605
|
+
|
|
57606
|
+
/**
|
|
57607
|
+
* The health status of an NDES connector or individual health check metric.
|
|
57608
|
+
*/
|
|
57609
|
+
enum ndesConnectorHealthStatus {
|
|
57610
|
+
/**
|
|
57611
|
+
* Health has not been evaluated yet for this connector.
|
|
57612
|
+
*/
|
|
57613
|
+
`unknown`: 0,
|
|
57614
|
+
/**
|
|
57615
|
+
* All health checks are passing. Error rates are below the attention threshold for all metrics.
|
|
57616
|
+
*/
|
|
57617
|
+
noActionRequired: 1,
|
|
57618
|
+
/**
|
|
57619
|
+
* One or more health checks have error rates between the attention and action thresholds.
|
|
57620
|
+
*/
|
|
57621
|
+
attentionRequired: 2,
|
|
57622
|
+
/**
|
|
57623
|
+
* One or more health checks have error rates above the action threshold. Investigation is required.
|
|
57624
|
+
*/
|
|
57625
|
+
actionRequired: 3,
|
|
57626
|
+
/**
|
|
57627
|
+
* The connector has not connected within the staleness threshold. Applied at read time based on lastConnectionDateTime.
|
|
57628
|
+
*/
|
|
57629
|
+
disconnected: 4,
|
|
57630
|
+
unknownFutureValue: 5,
|
|
57631
|
+
}
|
|
57632
|
+
|
|
56577
57633
|
/**
|
|
56578
57634
|
* The current status of the Ndes Connector.
|
|
56579
57635
|
*/
|
|
@@ -56691,6 +57747,37 @@ namespace reference.`microsoft.graph` {
|
|
|
56691
57747
|
unknownFutureValue: 32,
|
|
56692
57748
|
}
|
|
56693
57749
|
|
|
57750
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
57751
|
+
enum objectDefinitionMetadata {
|
|
57752
|
+
PropertyNameAccountEnabled: 0,
|
|
57753
|
+
PropertyNameSoftDeleted: 1,
|
|
57754
|
+
IsSoftDeletionSupported: 2,
|
|
57755
|
+
IsSynchronizeAllSupported: 3,
|
|
57756
|
+
ConnectorDataStorageRequired: 4,
|
|
57757
|
+
Extensions: 5,
|
|
57758
|
+
BaseObjectName: 6,
|
|
57759
|
+
}
|
|
57760
|
+
|
|
57761
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
57762
|
+
@graphFlags
|
|
57763
|
+
enum objectFlowTypes {
|
|
57764
|
+
None: 0,
|
|
57765
|
+
Add: 1,
|
|
57766
|
+
Update: 2,
|
|
57767
|
+
Delete: 4,
|
|
57768
|
+
}
|
|
57769
|
+
|
|
57770
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
57771
|
+
enum objectMappingMetadata {
|
|
57772
|
+
EscrowBehavior: 0,
|
|
57773
|
+
DisableMonitoringForChanges: 1,
|
|
57774
|
+
OriginalJoiningProperty: 2,
|
|
57775
|
+
Disposition: 3,
|
|
57776
|
+
IsCustomerDefined: 4,
|
|
57777
|
+
ExcludeFromReporting: 5,
|
|
57778
|
+
Unsynchronized: 6,
|
|
57779
|
+
}
|
|
57780
|
+
|
|
56694
57781
|
/**
|
|
56695
57782
|
* In macOS 12 and later, this command uses Erase All Content and Settings (EACS) on Mac computers with the Apple M1 chip or the Apple T2 Security Chip. On those devices, if EACS can’t run, the device can use obliteration (macOS 11.x behavior). This key has no effect on machines prior to the T2 chip. Upon receiving this command, the device performs preflight checks to determine if the device is in a state that allows EACS. The ObliterationBehavior value defines the device's fallback behavior.
|
|
56696
57783
|
*/
|
|
@@ -57516,6 +58603,13 @@ namespace reference.`microsoft.graph` {
|
|
|
57516
58603
|
notAssigned: 5,
|
|
57517
58604
|
}
|
|
57518
58605
|
|
|
58606
|
+
enum postType {
|
|
58607
|
+
regular: 0,
|
|
58608
|
+
quick: 1,
|
|
58609
|
+
strategic: 2,
|
|
58610
|
+
unknownFutureValue: 3,
|
|
58611
|
+
}
|
|
58612
|
+
|
|
57519
58613
|
/**
|
|
57520
58614
|
* Power action types
|
|
57521
58615
|
*/
|
|
@@ -57726,6 +58820,18 @@ namespace reference.`microsoft.graph` {
|
|
|
57726
58820
|
unknownFutureValue: 6,
|
|
57727
58821
|
}
|
|
57728
58822
|
|
|
58823
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
58824
|
+
enum quarantineReason {
|
|
58825
|
+
EncounteredBaseEscrowThreshold: 0,
|
|
58826
|
+
EncounteredTotalEscrowThreshold: 1,
|
|
58827
|
+
EncounteredEscrowProportionThreshold: 2,
|
|
58828
|
+
EncounteredQuarantineException: 4,
|
|
58829
|
+
`Unknown`: 8,
|
|
58830
|
+
QuarantinedOnDemand: 16,
|
|
58831
|
+
TooManyDeletes: 32,
|
|
58832
|
+
IngestionInterrupted: 64,
|
|
58833
|
+
}
|
|
58834
|
+
|
|
57729
58835
|
/**
|
|
57730
58836
|
* Apps rating as in media content
|
|
57731
58837
|
*/
|
|
@@ -58704,6 +59810,14 @@ namespace reference.`microsoft.graph` {
|
|
|
58704
59810
|
* Indicates remote device action to restore the Managed Home Screen kiosk app.
|
|
58705
59811
|
*/
|
|
58706
59812
|
restoreManagedHomeScreen: 42,
|
|
59813
|
+
/**
|
|
59814
|
+
* Indicates remote device action to trigger an AppleCare-authorized enhanced log collection session on a supervised Apple device.
|
|
59815
|
+
*/
|
|
59816
|
+
triggerEnhancedLogCollection: 44,
|
|
59817
|
+
/**
|
|
59818
|
+
* Indicates remote device action to cancel an in-progress enhanced log collection session on a supervised Apple device.
|
|
59819
|
+
*/
|
|
59820
|
+
cancelEnhancedLogCollection: 45,
|
|
58707
59821
|
}
|
|
58708
59822
|
|
|
58709
59823
|
/**
|
|
@@ -58740,6 +59854,25 @@ namespace reference.`microsoft.graph` {
|
|
|
58740
59854
|
enabled: 2,
|
|
58741
59855
|
}
|
|
58742
59856
|
|
|
59857
|
+
/**
|
|
59858
|
+
* Enumeration indicating the state of session recording
|
|
59859
|
+
*/
|
|
59860
|
+
enum remoteHelpRecordingState {
|
|
59861
|
+
/**
|
|
59862
|
+
* Recording is not enabled for this session.
|
|
59863
|
+
*/
|
|
59864
|
+
notEnabled: 0,
|
|
59865
|
+
/**
|
|
59866
|
+
* Recording is in progress.
|
|
59867
|
+
*/
|
|
59868
|
+
recording: 1,
|
|
59869
|
+
/**
|
|
59870
|
+
* Recording failed.
|
|
59871
|
+
*/
|
|
59872
|
+
failed: 2,
|
|
59873
|
+
unknownFutureValue: 3,
|
|
59874
|
+
}
|
|
59875
|
+
|
|
58743
59876
|
enum requiredLicenses {
|
|
58744
59877
|
notApplicable: 0,
|
|
58745
59878
|
microsoftEntraIdFree: 1,
|
|
@@ -58995,6 +60128,10 @@ namespace reference.`microsoft.graph` {
|
|
|
58995
60128
|
* App was removed in order to install a superseding app.
|
|
58996
60129
|
*/
|
|
58997
60130
|
appRemovedBySupersedence: 3005,
|
|
60131
|
+
/**
|
|
60132
|
+
* App cannot be installed. One or more of the application's dependencies are in use.
|
|
60133
|
+
*/
|
|
60134
|
+
dependencyAppInUse: 3006,
|
|
58998
60135
|
/**
|
|
58999
60136
|
* Application failed to uninstall. See error code property for more details.
|
|
59000
60137
|
*/
|
|
@@ -59011,6 +60148,18 @@ namespace reference.`microsoft.graph` {
|
|
|
59011
60148
|
* Application content was downloaded to the device.
|
|
59012
60149
|
*/
|
|
59013
60150
|
contentDownloaded: 5002,
|
|
60151
|
+
/**
|
|
60152
|
+
* App enforcement is pending because the app is currently in use.
|
|
60153
|
+
*/
|
|
60154
|
+
inUse: 5005,
|
|
60155
|
+
/**
|
|
60156
|
+
* App enforcement was deferred by the user because the app is currently in use.
|
|
60157
|
+
*/
|
|
60158
|
+
deferred: 5006,
|
|
60159
|
+
/**
|
|
60160
|
+
* App enforcement was automatically deferred because the app is currently in use and a user response was not available.
|
|
60161
|
+
*/
|
|
60162
|
+
autoDeferred: 5007,
|
|
59014
60163
|
}
|
|
59015
60164
|
|
|
59016
60165
|
enum riskDetail {
|
|
@@ -59203,6 +60352,18 @@ namespace reference.`microsoft.graph` {
|
|
|
59203
60352
|
unknownFutureValue: 4,
|
|
59204
60353
|
}
|
|
59205
60354
|
|
|
60355
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
60356
|
+
enum scopeOperatorMultiValuedComparisonType {
|
|
60357
|
+
All: 0,
|
|
60358
|
+
Any: 1,
|
|
60359
|
+
}
|
|
60360
|
+
|
|
60361
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
60362
|
+
enum scopeOperatorType {
|
|
60363
|
+
Binary: 0,
|
|
60364
|
+
Unary: 1,
|
|
60365
|
+
}
|
|
60366
|
+
|
|
59206
60367
|
/**
|
|
59207
60368
|
* Configuration state set by admin for screen capture Apple Intelligence setting
|
|
59208
60369
|
*/
|
|
@@ -59335,6 +60496,40 @@ namespace reference.`microsoft.graph` {
|
|
|
59335
60496
|
unknownFutureValue: 2,
|
|
59336
60497
|
}
|
|
59337
60498
|
|
|
60499
|
+
enum serviceHealthClassificationType {
|
|
60500
|
+
advisory: 1,
|
|
60501
|
+
incident: 2,
|
|
60502
|
+
unknownFutureValue: 3,
|
|
60503
|
+
}
|
|
60504
|
+
|
|
60505
|
+
enum serviceHealthOrigin {
|
|
60506
|
+
microsoft: 1,
|
|
60507
|
+
thirdParty: 2,
|
|
60508
|
+
customer: 3,
|
|
60509
|
+
unknownFutureValue: 4,
|
|
60510
|
+
}
|
|
60511
|
+
|
|
60512
|
+
enum serviceHealthStatus {
|
|
60513
|
+
serviceOperational: 0,
|
|
60514
|
+
investigating: 1,
|
|
60515
|
+
restoringService: 2,
|
|
60516
|
+
verifyingService: 3,
|
|
60517
|
+
serviceRestored: 4,
|
|
60518
|
+
postIncidentReviewPublished: 5,
|
|
60519
|
+
serviceDegradation: 6,
|
|
60520
|
+
serviceInterruption: 7,
|
|
60521
|
+
extendedRecovery: 8,
|
|
60522
|
+
falsePositive: 9,
|
|
60523
|
+
investigationSuspended: 10,
|
|
60524
|
+
resolved: 11,
|
|
60525
|
+
mitigatedExternal: 12,
|
|
60526
|
+
mitigated: 13,
|
|
60527
|
+
resolvedExternal: 14,
|
|
60528
|
+
confirmed: 15,
|
|
60529
|
+
reported: 16,
|
|
60530
|
+
unknownFutureValue: 17,
|
|
60531
|
+
}
|
|
60532
|
+
|
|
59338
60533
|
/**
|
|
59339
60534
|
* Status of ServiceNow Connection
|
|
59340
60535
|
*/
|
|
@@ -59369,6 +60564,20 @@ namespace reference.`microsoft.graph` {
|
|
|
59369
60564
|
disabled: 2,
|
|
59370
60565
|
}
|
|
59371
60566
|
|
|
60567
|
+
enum serviceUpdateCategory {
|
|
60568
|
+
preventOrFixIssue: 1,
|
|
60569
|
+
planForChange: 2,
|
|
60570
|
+
stayInformed: 3,
|
|
60571
|
+
unknownFutureValue: 4,
|
|
60572
|
+
}
|
|
60573
|
+
|
|
60574
|
+
enum serviceUpdateSeverity {
|
|
60575
|
+
normal: 1,
|
|
60576
|
+
high: 2,
|
|
60577
|
+
critical: 3,
|
|
60578
|
+
unknownFutureValue: 4,
|
|
60579
|
+
}
|
|
60580
|
+
|
|
59372
60581
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
59373
60582
|
enum settingSourceType {
|
|
59374
60583
|
deviceConfiguration: 0,
|
|
@@ -59767,6 +60976,110 @@ namespace reference.`microsoft.graph` {
|
|
|
59767
60976
|
unknownFutureValue: 5,
|
|
59768
60977
|
}
|
|
59769
60978
|
|
|
60979
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
60980
|
+
enum synchronizationDisposition {
|
|
60981
|
+
Normal: 0,
|
|
60982
|
+
Discard: 1,
|
|
60983
|
+
Escrow: 2,
|
|
60984
|
+
}
|
|
60985
|
+
|
|
60986
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
60987
|
+
@graphFlags
|
|
60988
|
+
enum synchronizationJobRestartScope {
|
|
60989
|
+
None: 0,
|
|
60990
|
+
ConnectorDataStore: 1,
|
|
60991
|
+
Escrows: 2,
|
|
60992
|
+
Watermark: 4,
|
|
60993
|
+
QuarantineState: 8,
|
|
60994
|
+
Full: 15,
|
|
60995
|
+
ForceDeletes: 32,
|
|
60996
|
+
}
|
|
60997
|
+
|
|
60998
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
60999
|
+
enum synchronizationMetadata {
|
|
61000
|
+
galleryApplicationIdentifier: 0,
|
|
61001
|
+
galleryApplicationKey: 1,
|
|
61002
|
+
isOAuthEnabled: 2,
|
|
61003
|
+
IsSynchronizationAgentAssignmentRequired: 3,
|
|
61004
|
+
isSynchronizationAgentRequired: 4,
|
|
61005
|
+
isSynchronizationInPreview: 5,
|
|
61006
|
+
oAuthSettings: 6,
|
|
61007
|
+
synchronizationLearnMoreIbizaFwLink: 7,
|
|
61008
|
+
configurationFields: 8,
|
|
61009
|
+
}
|
|
61010
|
+
|
|
61011
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
61012
|
+
enum synchronizationScheduleState {
|
|
61013
|
+
Active: 0,
|
|
61014
|
+
Disabled: 1,
|
|
61015
|
+
Paused: 2,
|
|
61016
|
+
}
|
|
61017
|
+
|
|
61018
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
61019
|
+
enum synchronizationSecret {
|
|
61020
|
+
None: 0,
|
|
61021
|
+
UserName: 1,
|
|
61022
|
+
Password: 2,
|
|
61023
|
+
SecretToken: 3,
|
|
61024
|
+
AppKey: 4,
|
|
61025
|
+
BaseAddress: 5,
|
|
61026
|
+
ClientIdentifier: 6,
|
|
61027
|
+
ClientSecret: 7,
|
|
61028
|
+
SingleSignOnType: 11,
|
|
61029
|
+
Sandbox: 12,
|
|
61030
|
+
Url: 13,
|
|
61031
|
+
Domain: 14,
|
|
61032
|
+
ConsumerKey: 15,
|
|
61033
|
+
ConsumerSecret: 16,
|
|
61034
|
+
TokenKey: 17,
|
|
61035
|
+
TokenExpiration: 18,
|
|
61036
|
+
Oauth2AccessToken: 19,
|
|
61037
|
+
Oauth2AccessTokenCreationTime: 20,
|
|
61038
|
+
Oauth2RefreshToken: 21,
|
|
61039
|
+
SyncAll: 22,
|
|
61040
|
+
InstanceName: 24,
|
|
61041
|
+
Oauth2ClientId: 27,
|
|
61042
|
+
Oauth2ClientSecret: 28,
|
|
61043
|
+
CompanyId: 29,
|
|
61044
|
+
UpdateKeyOnSoftDelete: 30,
|
|
61045
|
+
SynchronizationSchedule: 33,
|
|
61046
|
+
SystemOfRecord: 34,
|
|
61047
|
+
SandboxName: 35,
|
|
61048
|
+
EnforceDomain: 36,
|
|
61049
|
+
SyncNotificationSettings: 37,
|
|
61050
|
+
SkipOutOfScopeDeletions: 40,
|
|
61051
|
+
Oauth2AuthorizationCode: 62,
|
|
61052
|
+
Oauth2RedirectUri: 63,
|
|
61053
|
+
ApplicationTemplateIdentifier: 64,
|
|
61054
|
+
Oauth2TokenExchangeUri: 65,
|
|
61055
|
+
Oauth2AuthorizationUri: 66,
|
|
61056
|
+
AuthenticationType: 67,
|
|
61057
|
+
Server: 70,
|
|
61058
|
+
PerformInboundEntitlementGrants: 100,
|
|
61059
|
+
HardDeletesEnabled: 101,
|
|
61060
|
+
SyncAgentCompatibilityKey: 102,
|
|
61061
|
+
SyncAgentADContainer: 103,
|
|
61062
|
+
ValidateDomain: 206,
|
|
61063
|
+
TestReferences: 207,
|
|
61064
|
+
ConnectionString: 250,
|
|
61065
|
+
}
|
|
61066
|
+
|
|
61067
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
61068
|
+
enum synchronizationStatusCode {
|
|
61069
|
+
NotConfigured: 0,
|
|
61070
|
+
NotRun: 1,
|
|
61071
|
+
Active: 2,
|
|
61072
|
+
Paused: 3,
|
|
61073
|
+
Quarantine: 4,
|
|
61074
|
+
}
|
|
61075
|
+
|
|
61076
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
61077
|
+
enum synchronizationTaskExecutionResult {
|
|
61078
|
+
Succeeded: 0,
|
|
61079
|
+
Failed: 1,
|
|
61080
|
+
EntryLevelErrors: 2,
|
|
61081
|
+
}
|
|
61082
|
+
|
|
59770
61083
|
/**
|
|
59771
61084
|
* A list of possible System Management Mode levels for a device. System Management Mode levels is determined by report sent from Microsoft Azure Attestation service. Only specific hardwares support System Management Mode. Windows 11 devices will have values "notApplicable", "level1", "level2" or "level3". Windows 10 devices will have value "notApplicable".
|
|
59772
61085
|
*/
|
|
@@ -61079,10 +62392,6 @@ namespace reference.`microsoft.graph` {
|
|
|
61079
62392
|
* Indicates Wi-Fi security type is associated with WPA3-Personal. Provides stronger encryption using Simultaneous Authentication of Equals (SAE).
|
|
61080
62393
|
*/
|
|
61081
62394
|
wpa3Personal: 7,
|
|
61082
|
-
/**
|
|
61083
|
-
* 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.
|
|
61084
|
-
*/
|
|
61085
|
-
wpa3Enterprise: 8,
|
|
61086
62395
|
}
|
|
61087
62396
|
|
|
61088
62397
|
/**
|
|
@@ -61514,6 +62823,7 @@ namespace reference.`microsoft.graph` {
|
|
|
61514
62823
|
/**
|
|
61515
62824
|
* Contains rule types for Win32 LOB apps.
|
|
61516
62825
|
*/
|
|
62826
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
61517
62827
|
enum win32LobAppRuleType {
|
|
61518
62828
|
/**
|
|
61519
62829
|
* Detection rule.
|
|
@@ -61523,11 +62833,6 @@ namespace reference.`microsoft.graph` {
|
|
|
61523
62833
|
* Requirement rule.
|
|
61524
62834
|
*/
|
|
61525
62835
|
requirement: 1,
|
|
61526
|
-
/**
|
|
61527
|
-
* Indicates that the associated rule represents an executable for app in-use detection.
|
|
61528
|
-
*/
|
|
61529
|
-
inUse: 2,
|
|
61530
|
-
unknownFutureValue: 3,
|
|
61531
62836
|
}
|
|
61532
62837
|
|
|
61533
62838
|
/**
|
|
@@ -62963,7 +64268,6 @@ namespace reference.`microsoft.graph` {
|
|
|
62963
64268
|
/**
|
|
62964
64269
|
* Data can be transferred from/to these classes of apps
|
|
62965
64270
|
*/
|
|
62966
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
62967
64271
|
enum windowsManagedAppDataTransferLevel {
|
|
62968
64272
|
/**
|
|
62969
64273
|
* All apps.
|
|
@@ -62973,6 +64277,27 @@ namespace reference.`microsoft.graph` {
|
|
|
62973
64277
|
* No apps.
|
|
62974
64278
|
*/
|
|
62975
64279
|
none: 1,
|
|
64280
|
+
/**
|
|
64281
|
+
* Selected apps only. Allowed locations are specified by the child property.
|
|
64282
|
+
*/
|
|
64283
|
+
selectedApps: 2,
|
|
64284
|
+
unknownFutureValue: 3,
|
|
64285
|
+
}
|
|
64286
|
+
|
|
64287
|
+
/**
|
|
64288
|
+
* Windows MAM data transfer locations
|
|
64289
|
+
*/
|
|
64290
|
+
@graphFlags
|
|
64291
|
+
enum windowsManagedAppDataTransferLocations {
|
|
64292
|
+
/**
|
|
64293
|
+
* No locations selected.
|
|
64294
|
+
*/
|
|
64295
|
+
none: 0,
|
|
64296
|
+
/**
|
|
64297
|
+
* OneDrive for Business. Data transferred to or from this location is subject to app protection policy.
|
|
64298
|
+
*/
|
|
64299
|
+
oneDriveForBusiness: 1,
|
|
64300
|
+
unknownFutureValue: 2,
|
|
62976
64301
|
}
|
|
62977
64302
|
|
|
62978
64303
|
/**
|
|
@@ -63741,6 +65066,107 @@ namespace reference.`microsoft.graph.agentic` {
|
|
|
63741
65066
|
unknownFutureValue: 4,
|
|
63742
65067
|
}
|
|
63743
65068
|
|
|
65069
|
+
}
|
|
65070
|
+
@publicNamespace("microsoft.graph.cloudlicensing")
|
|
65071
|
+
namespace reference.`microsoft.graph.cloudLicensing` {
|
|
65072
|
+
@complex model groupCloudLicensing {
|
|
65073
|
+
@references assignments: assignment[];
|
|
65074
|
+
@contains usageRights: usageRight[];
|
|
65075
|
+
}
|
|
65076
|
+
|
|
65077
|
+
@complex model service {
|
|
65078
|
+
assignableTo: assigneeTypes;
|
|
65079
|
+
planId: guid;
|
|
65080
|
+
planName: string | null;
|
|
65081
|
+
}
|
|
65082
|
+
|
|
65083
|
+
@complex model subscription {
|
|
65084
|
+
nextLifecycleDate: offsetDateTime;
|
|
65085
|
+
startDate: offsetDateTime;
|
|
65086
|
+
state: subscriptionState;
|
|
65087
|
+
subscriptionId: string;
|
|
65088
|
+
tags: subscriptionTags;
|
|
65089
|
+
}
|
|
65090
|
+
|
|
65091
|
+
@complex model userCloudLicensing {
|
|
65092
|
+
@references assignmentErrors: assignmentError[];
|
|
65093
|
+
@references assignments: assignment[];
|
|
65094
|
+
@contains usageRights: usageRight[];
|
|
65095
|
+
@references waitingMembers: waitingMember[];
|
|
65096
|
+
}
|
|
65097
|
+
|
|
65098
|
+
@entity model adminCloudLicensing extends reference.`microsoft.graph`.entity {
|
|
65099
|
+
@contains allotments: allotment[];
|
|
65100
|
+
@contains assignmentErrors: assignmentError[];
|
|
65101
|
+
@contains assignments: assignment[];
|
|
65102
|
+
}
|
|
65103
|
+
|
|
65104
|
+
@entity model allotment extends reference.`microsoft.graph`.entity {
|
|
65105
|
+
allottedUnits: int32;
|
|
65106
|
+
assignableTo: assigneeTypes;
|
|
65107
|
+
consumedUnits: int32;
|
|
65108
|
+
services: service[];
|
|
65109
|
+
skuId: guid | null;
|
|
65110
|
+
skuPartNumber: string | null;
|
|
65111
|
+
subscriptions: subscription[];
|
|
65112
|
+
@references assignments: assignment[];
|
|
65113
|
+
@references waitingMembers: waitingMember[];
|
|
65114
|
+
}
|
|
65115
|
+
|
|
65116
|
+
@entity model assignment extends reference.`microsoft.graph`.entity {
|
|
65117
|
+
disabledServicePlanIds: guid;
|
|
65118
|
+
@references allotment: allotment | null;
|
|
65119
|
+
@references assignedTo: reference.`microsoft.graph`.directoryObject;
|
|
65120
|
+
}
|
|
65121
|
+
|
|
65122
|
+
@entity model assignmentError extends reference.`microsoft.graph`.entity {
|
|
65123
|
+
code: string;
|
|
65124
|
+
message: string;
|
|
65125
|
+
occurrenceDateTime: offsetDateTime;
|
|
65126
|
+
skuId: guid | null;
|
|
65127
|
+
@references assignedTo: reference.`microsoft.graph`.directoryObject;
|
|
65128
|
+
@references usageRight: usageRight | null;
|
|
65129
|
+
}
|
|
65130
|
+
|
|
65131
|
+
@entity model usageRight extends reference.`microsoft.graph`.entity {
|
|
65132
|
+
services: service[];
|
|
65133
|
+
skuId: guid | null;
|
|
65134
|
+
skuPartNumber: string | null;
|
|
65135
|
+
@references allotments: allotment[];
|
|
65136
|
+
@references assignments: assignment[];
|
|
65137
|
+
}
|
|
65138
|
+
|
|
65139
|
+
@entity model waitingMember extends reference.`microsoft.graph`.entity {
|
|
65140
|
+
waitingSinceDateTime: offsetDateTime;
|
|
65141
|
+
@references allotment: allotment;
|
|
65142
|
+
@references assignedTo: reference.`microsoft.graph`.directoryObject;
|
|
65143
|
+
}
|
|
65144
|
+
|
|
65145
|
+
@graphFlags
|
|
65146
|
+
enum assigneeTypes {
|
|
65147
|
+
none: 0,
|
|
65148
|
+
user: 1,
|
|
65149
|
+
group: 2,
|
|
65150
|
+
device: 4,
|
|
65151
|
+
unknownFutureValue: 8,
|
|
65152
|
+
}
|
|
65153
|
+
|
|
65154
|
+
enum subscriptionState {
|
|
65155
|
+
active: 1,
|
|
65156
|
+
warning: 2,
|
|
65157
|
+
suspended: 3,
|
|
65158
|
+
lockedOut: 4,
|
|
65159
|
+
deleted: 5,
|
|
65160
|
+
unknownFutureValue: 6,
|
|
65161
|
+
}
|
|
65162
|
+
|
|
65163
|
+
@graphFlags
|
|
65164
|
+
enum subscriptionTags {
|
|
65165
|
+
none: 0,
|
|
65166
|
+
trial: 1,
|
|
65167
|
+
unknownFutureValue: 2,
|
|
65168
|
+
}
|
|
65169
|
+
|
|
63744
65170
|
}
|
|
63745
65171
|
@publicNamespace("microsoft.graph.security")
|
|
63746
65172
|
namespace reference.`microsoft.graph.security` {
|