@microsoft/typespec-msgraph-reference 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.rush/temp/package-deps_build.json +17 -17
- package/CHANGELOG.md +9 -0
- package/lib/Bleu/Beta/main.tsp +189 -4
- package/lib/Bleu/V1.0/main.tsp +53 -0
- package/lib/Delos/Beta/main.tsp +954 -4
- package/lib/Delos/V1.0/main.tsp +93 -0
- package/lib/Fairfax/Beta/main.tsp +563 -20
- package/lib/Fairfax/V1.0/main.tsp +3 -0
- package/lib/GovSG/V1.0/main.tsp +1 -0
- package/lib/Mooncake/Beta/main.tsp +205 -4
- package/lib/Mooncake/V1.0/main.tsp +2 -0
- package/lib/Prod/Beta/main.tsp +911 -64
- package/lib/Prod/V1.0/main.tsp +478 -0
- package/lib/USNat/Beta/main.tsp +308 -0
- package/lib/USNat/V1.0/main.tsp +210 -0
- package/lib/USSec/Beta/main.tsp +308 -0
- package/lib/USSec/V1.0/main.tsp +210 -0
- package/package.json +2 -2
package/lib/Delos/Beta/main.tsp
CHANGED
|
@@ -8,7 +8,10 @@ scalar binary; //TODO: Enables support for Edm.Binary
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
@deprecatedDefinition("PasskeyGlobalProperties", "<ChangeLogCategory>", "2025-10-15", "2027-10-15", "This property is deprecated and will stop returning data on October 15, 2027. Please use passkeyProfiles property.")
|
|
11
|
+
@privatePreviewDefinition("photoEditPolicy", "2024-02-16", "2025-02-16", "<theOwner>")
|
|
11
12
|
@privatePreviewDefinition("AgenticSP", "2025-04-14", "2025-07-13", "<theOwner>")
|
|
13
|
+
@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.")
|
|
14
|
+
@deprecatedDefinition("Beta:ItemInsightsOranizationSettings", "<ChangeLogCategory>", "2023-10-17", "2024-01-01", "The Organization ItemInsights endpoint will stop returning data on January 1st, 2024. Please use the new Admin People ItemInsights endpoint.")
|
|
12
15
|
@deprecatedDefinition("Outlook_Tasks", "<ChangeLogCategory>", "2021-02-20", "2023-02-20", "The Outlook tasks API is deprecated and will stop returning data on February 20, 2023. Please use the new To Do API. For more details, please visit https://developer.microsoft.com/en-us/office/blogs/announcing-the-general-availability-of-microsoft-to-do-apis-on-graph/")
|
|
13
16
|
@deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2021-01-18", "2023-01-18", "Owner property is deprecated and will be removed in January 2023. Please use the container property instead.")
|
|
14
17
|
@deprecatedDefinition("accountEnabledDeprecated", "<ChangeLogCategory>", "2023-02-23", "2023-07-12", "The accountEnabled field will soon be deprecated on 2023-07-12. Please use isEnabled instead.")
|
|
@@ -1043,6 +1046,11 @@ namespace reference.`microsoft.graph` {
|
|
|
1043
1046
|
status: responseStatus | null;
|
|
1044
1047
|
}
|
|
1045
1048
|
|
|
1049
|
+
@complex model attendeeAvailability {
|
|
1050
|
+
attendee: attendeeBase | null;
|
|
1051
|
+
availability: freeBusyStatus | null;
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1046
1054
|
@complex model attendeeBase extends recipient {
|
|
1047
1055
|
type: attendeeType | null;
|
|
1048
1056
|
}
|
|
@@ -1592,6 +1600,19 @@ namespace reference.`microsoft.graph` {
|
|
|
1592
1600
|
scheduledForEnrollmentCount: int32;
|
|
1593
1601
|
}
|
|
1594
1602
|
|
|
1603
|
+
@complex model companyDetail {
|
|
1604
|
+
address: physicalAddress | null;
|
|
1605
|
+
companyCode: string | null;
|
|
1606
|
+
costCenter: string | null;
|
|
1607
|
+
department: string | null;
|
|
1608
|
+
displayName: string | null;
|
|
1609
|
+
division: string | null;
|
|
1610
|
+
officeLocation: string | null;
|
|
1611
|
+
pronunciation: string | null;
|
|
1612
|
+
secondaryDepartment: string | null;
|
|
1613
|
+
webUrl: string | null;
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1595
1616
|
/**
|
|
1596
1617
|
* Blocked actions on the company portal as per platform and device ownership types
|
|
1597
1618
|
*/
|
|
@@ -1937,6 +1958,14 @@ namespace reference.`microsoft.graph` {
|
|
|
1937
1958
|
targetId: string | null;
|
|
1938
1959
|
}
|
|
1939
1960
|
|
|
1961
|
+
@complex model corsConfiguration {
|
|
1962
|
+
allowedHeaders: string[] | null;
|
|
1963
|
+
allowedMethods: string[] | null;
|
|
1964
|
+
allowedOrigins: string[] | null;
|
|
1965
|
+
maxAgeInSeconds: int32 | null;
|
|
1966
|
+
resource: string | null;
|
|
1967
|
+
}
|
|
1968
|
+
|
|
1940
1969
|
/**
|
|
1941
1970
|
* Remote help - response we provide back to the helper after successfully creating an ACS session
|
|
1942
1971
|
*/
|
|
@@ -4572,6 +4601,18 @@ namespace reference.`microsoft.graph` {
|
|
|
4572
4601
|
edgeSearchEngineOpenSearchXmlUrl: string;
|
|
4573
4602
|
}
|
|
4574
4603
|
|
|
4604
|
+
@complex model educationalActivityDetail {
|
|
4605
|
+
abbreviation: string | null;
|
|
4606
|
+
activities: string[] | null;
|
|
4607
|
+
awards: string[] | null;
|
|
4608
|
+
description: string | null;
|
|
4609
|
+
displayName: string | null;
|
|
4610
|
+
fieldsOfStudy: string[] | null;
|
|
4611
|
+
grade: string | null;
|
|
4612
|
+
notes: string | null;
|
|
4613
|
+
webUrl: string | null;
|
|
4614
|
+
}
|
|
4615
|
+
|
|
4575
4616
|
/**
|
|
4576
4617
|
* The details of the application which the user has requested to elevate
|
|
4577
4618
|
*/
|
|
@@ -5181,6 +5222,12 @@ namespace reference.`microsoft.graph` {
|
|
|
5181
5222
|
sources: deviceAndAppManagementAssignmentSource[];
|
|
5182
5223
|
}
|
|
5183
5224
|
|
|
5225
|
+
@complex model hybridAgentUpdaterConfiguration {
|
|
5226
|
+
allowUpdateConfigurationOverride: boolean;
|
|
5227
|
+
deferUpdateDateTime: offsetDateTime | null;
|
|
5228
|
+
updateWindow: updateWindow | null;
|
|
5229
|
+
}
|
|
5230
|
+
|
|
5184
5231
|
@complex model identifierUriConfiguration {
|
|
5185
5232
|
nonDefaultUriAddition: identifierUriRestriction | null;
|
|
5186
5233
|
uriAdditionWithoutUniqueTenantIdentifier: identifierUriRestriction | null;
|
|
@@ -5254,6 +5301,11 @@ namespace reference.`microsoft.graph` {
|
|
|
5254
5301
|
targetType: authenticationMethodTargetType;
|
|
5255
5302
|
}
|
|
5256
5303
|
|
|
5304
|
+
@complex model inferenceData {
|
|
5305
|
+
confidenceScore: float64 | null;
|
|
5306
|
+
userHasVerifiedAccuracy: boolean | null;
|
|
5307
|
+
}
|
|
5308
|
+
|
|
5257
5309
|
@complex model informationalUrl {
|
|
5258
5310
|
logoUrl: string | null;
|
|
5259
5311
|
marketingUrl: string | null;
|
|
@@ -5297,6 +5349,13 @@ namespace reference.`microsoft.graph` {
|
|
|
5297
5349
|
resourceAppId: string;
|
|
5298
5350
|
}
|
|
5299
5351
|
|
|
5352
|
+
@complex model institutionData {
|
|
5353
|
+
description: string | null;
|
|
5354
|
+
displayName: string | null;
|
|
5355
|
+
location: physicalAddress | null;
|
|
5356
|
+
webUrl: string | null;
|
|
5357
|
+
}
|
|
5358
|
+
|
|
5300
5359
|
@complex model internetMessageHeader {
|
|
5301
5360
|
name: string | null;
|
|
5302
5361
|
value: string | null;
|
|
@@ -6110,10 +6169,20 @@ namespace reference.`microsoft.graph` {
|
|
|
6110
6169
|
websiteList: iosBookmark[] | null;
|
|
6111
6170
|
}
|
|
6112
6171
|
|
|
6172
|
+
/**
|
|
6173
|
+
* IP range base class for representing IPV4, IPV6 address ranges
|
|
6174
|
+
*/
|
|
6113
6175
|
@abstract
|
|
6114
6176
|
@complex model ipRange {
|
|
6115
6177
|
}
|
|
6116
6178
|
|
|
6179
|
+
@complex model ipSegmentConfiguration extends segmentConfiguration {
|
|
6180
|
+
@contains applicationSegments: ipApplicationSegment[];
|
|
6181
|
+
}
|
|
6182
|
+
|
|
6183
|
+
/**
|
|
6184
|
+
* IP range base class for representing IPV4, IPV6 address ranges
|
|
6185
|
+
*/
|
|
6117
6186
|
@complex model iPv4CidrRange extends ipRange {
|
|
6118
6187
|
cidrAddress: string;
|
|
6119
6188
|
}
|
|
@@ -6132,6 +6201,9 @@ namespace reference.`microsoft.graph` {
|
|
|
6132
6201
|
upperAddress: string;
|
|
6133
6202
|
}
|
|
6134
6203
|
|
|
6204
|
+
/**
|
|
6205
|
+
* IP range base class for representing IPV4, IPV6 address ranges
|
|
6206
|
+
*/
|
|
6135
6207
|
@complex model iPv6CidrRange extends ipRange {
|
|
6136
6208
|
cidrAddress: string;
|
|
6137
6209
|
}
|
|
@@ -6161,6 +6233,11 @@ namespace reference.`microsoft.graph` {
|
|
|
6161
6233
|
@complex model Json {
|
|
6162
6234
|
}
|
|
6163
6235
|
|
|
6236
|
+
@complex model kerberosSignOnSettings {
|
|
6237
|
+
kerberosServicePrincipalName: string | null;
|
|
6238
|
+
kerberosSignOnMappingAttributeType: kerberosSignOnMappingAttributeType | null;
|
|
6239
|
+
}
|
|
6240
|
+
|
|
6164
6241
|
/**
|
|
6165
6242
|
* Represents a Kerberos-type Single Sign-On extension profile.
|
|
6166
6243
|
*/
|
|
@@ -6402,6 +6479,16 @@ namespace reference.`microsoft.graph` {
|
|
|
6402
6479
|
uniqueIdType: locationUniqueIdType | null;
|
|
6403
6480
|
}
|
|
6404
6481
|
|
|
6482
|
+
@complex model locationConstraint {
|
|
6483
|
+
isRequired: boolean | null;
|
|
6484
|
+
locations: locationConstraintItem[] | null;
|
|
6485
|
+
suggestLocation: boolean | null;
|
|
6486
|
+
}
|
|
6487
|
+
|
|
6488
|
+
@complex model locationConstraintItem extends location {
|
|
6489
|
+
resolveAvailability: boolean | null;
|
|
6490
|
+
}
|
|
6491
|
+
|
|
6405
6492
|
/**
|
|
6406
6493
|
* Logged On User
|
|
6407
6494
|
*/
|
|
@@ -7408,6 +7495,21 @@ namespace reference.`microsoft.graph` {
|
|
|
7408
7495
|
tvRating: ratingUnitedStatesTelevisionType;
|
|
7409
7496
|
}
|
|
7410
7497
|
|
|
7498
|
+
@complex model meetingTimeSuggestion {
|
|
7499
|
+
attendeeAvailability: attendeeAvailability[] | null;
|
|
7500
|
+
confidence: float64 | null;
|
|
7501
|
+
locations: location[] | null;
|
|
7502
|
+
meetingTimeSlot: timeSlot | null;
|
|
7503
|
+
order: int32 | null;
|
|
7504
|
+
organizerAvailability: freeBusyStatus | null;
|
|
7505
|
+
suggestionReason: string | null;
|
|
7506
|
+
}
|
|
7507
|
+
|
|
7508
|
+
@complex model meetingTimeSuggestionsResult {
|
|
7509
|
+
emptySuggestionsReason: string | null;
|
|
7510
|
+
meetingTimeSuggestions: meetingTimeSuggestion[] | null;
|
|
7511
|
+
}
|
|
7512
|
+
|
|
7411
7513
|
@complex model membershipRuleEvaluationDetails {
|
|
7412
7514
|
membershipRuleEvaluationDetails: expressionEvaluationDetails | null;
|
|
7413
7515
|
}
|
|
@@ -7829,6 +7931,13 @@ namespace reference.`microsoft.graph` {
|
|
|
7829
7931
|
synchronizationPreventionType: onPremisesDirectorySynchronizationDeletionPreventionType | null;
|
|
7830
7932
|
}
|
|
7831
7933
|
|
|
7934
|
+
@complex model onPremisesApplicationSegment {
|
|
7935
|
+
alternateUrl: string | null;
|
|
7936
|
+
corsConfigurations: corsConfiguration[] | null;
|
|
7937
|
+
externalUrl: string | null;
|
|
7938
|
+
internalUrl: string | null;
|
|
7939
|
+
}
|
|
7940
|
+
|
|
7832
7941
|
@complex model onPremisesDirectorySynchronizationConfiguration {
|
|
7833
7942
|
accidentalDeletionPrevention: onPremisesAccidentalDeletionPrevention | null;
|
|
7834
7943
|
}
|
|
@@ -7880,6 +7989,42 @@ namespace reference.`microsoft.graph` {
|
|
|
7880
7989
|
value: string | null;
|
|
7881
7990
|
}
|
|
7882
7991
|
|
|
7992
|
+
@complex model onPremisesPublishing {
|
|
7993
|
+
alternateUrl: string | null;
|
|
7994
|
+
applicationServerTimeout: string | null;
|
|
7995
|
+
applicationType: string | null;
|
|
7996
|
+
externalAuthenticationType: externalAuthenticationType | null;
|
|
7997
|
+
externalUrl: string | null;
|
|
7998
|
+
internalUrl: string | null;
|
|
7999
|
+
isAccessibleViaZTNAClient: boolean | null;
|
|
8000
|
+
isBackendCertificateValidationEnabled: boolean | null;
|
|
8001
|
+
isContinuousAccessEvaluationEnabled: boolean | null;
|
|
8002
|
+
isDnsResolutionEnabled: boolean | null;
|
|
8003
|
+
isHttpOnlyCookieEnabled: boolean | null;
|
|
8004
|
+
isOnPremPublishingEnabled: boolean | null;
|
|
8005
|
+
isPersistentCookieEnabled: boolean | null;
|
|
8006
|
+
isSecureCookieEnabled: boolean | null;
|
|
8007
|
+
isStateSessionEnabled: boolean | null;
|
|
8008
|
+
isTranslateHostHeaderEnabled: boolean | null;
|
|
8009
|
+
isTranslateLinksInBodyEnabled: boolean | null;
|
|
8010
|
+
onPremisesApplicationSegments: onPremisesApplicationSegment[] | null;
|
|
8011
|
+
segmentsConfiguration: segmentConfiguration | null;
|
|
8012
|
+
singleSignOnSettings: onPremisesPublishingSingleSignOn | null;
|
|
8013
|
+
trafficRoutingMethod: trafficRoutingMethod;
|
|
8014
|
+
useAlternateUrlForTranslationAndRedirect: boolean | null;
|
|
8015
|
+
verifiedCustomDomainCertificatesMetadata: verifiedCustomDomainCertificatesMetadata | null;
|
|
8016
|
+
verifiedCustomDomainKeyCredential: keyCredential | null;
|
|
8017
|
+
verifiedCustomDomainPasswordCredential: passwordCredential | null;
|
|
8018
|
+
wafAllowedHeaders: wafAllowedHeadersDictionary | null;
|
|
8019
|
+
wafIpRanges: ipRange[] | null;
|
|
8020
|
+
wafProvider: string | null;
|
|
8021
|
+
}
|
|
8022
|
+
|
|
8023
|
+
@complex model onPremisesPublishingSingleSignOn {
|
|
8024
|
+
kerberosSignOnSettings: kerberosSignOnSettings | null;
|
|
8025
|
+
singleSignOnMode: singleSignOnMode | null;
|
|
8026
|
+
}
|
|
8027
|
+
|
|
7883
8028
|
@complex model openIdConnectSetting {
|
|
7884
8029
|
clientId: string;
|
|
7885
8030
|
discoveryUrl: string;
|
|
@@ -7952,6 +8097,11 @@ namespace reference.`microsoft.graph` {
|
|
|
7952
8097
|
saml2Token: optionalClaim[] | null;
|
|
7953
8098
|
}
|
|
7954
8099
|
|
|
8100
|
+
@complex model originTenantInfo {
|
|
8101
|
+
originTenantId: string | null;
|
|
8102
|
+
originUserId: string | null;
|
|
8103
|
+
}
|
|
8104
|
+
|
|
7955
8105
|
/**
|
|
7956
8106
|
* Count of devices with malware for each OS version
|
|
7957
8107
|
*/
|
|
@@ -8139,6 +8289,18 @@ namespace reference.`microsoft.graph` {
|
|
|
8139
8289
|
type: string | null;
|
|
8140
8290
|
}
|
|
8141
8291
|
|
|
8292
|
+
@complex model personDataSources {
|
|
8293
|
+
type: string[] | null;
|
|
8294
|
+
}
|
|
8295
|
+
|
|
8296
|
+
@complex model personNamePronounciation {
|
|
8297
|
+
displayName: string | null;
|
|
8298
|
+
first: string | null;
|
|
8299
|
+
last: string | null;
|
|
8300
|
+
maiden: string | null;
|
|
8301
|
+
middle: string | null;
|
|
8302
|
+
}
|
|
8303
|
+
|
|
8142
8304
|
@complex model perTenantTrafficSegmentsOverride {
|
|
8143
8305
|
percentage: int32;
|
|
8144
8306
|
tenantId: guid;
|
|
@@ -8149,6 +8311,10 @@ namespace reference.`microsoft.graph` {
|
|
|
8149
8311
|
type: phoneType | null;
|
|
8150
8312
|
}
|
|
8151
8313
|
|
|
8314
|
+
@privatePreview("photoEditPolicy")
|
|
8315
|
+
@complex model photoAllowedOperations {
|
|
8316
|
+
}
|
|
8317
|
+
|
|
8152
8318
|
@complex model physicalAddress {
|
|
8153
8319
|
city: string | null;
|
|
8154
8320
|
countryOrRegion: string | null;
|
|
@@ -8403,6 +8569,22 @@ namespace reference.`microsoft.graph` {
|
|
|
8403
8569
|
usageRights: usageRightsInfo | null;
|
|
8404
8570
|
}
|
|
8405
8571
|
|
|
8572
|
+
@complex model positionDetail {
|
|
8573
|
+
company: companyDetail | null;
|
|
8574
|
+
description: string | null;
|
|
8575
|
+
employeeId: string | null;
|
|
8576
|
+
employeeType: string | null;
|
|
8577
|
+
endMonthYear: offsetDateTime | null;
|
|
8578
|
+
jobTitle: string | null;
|
|
8579
|
+
layer: int32 | null;
|
|
8580
|
+
level: string | null;
|
|
8581
|
+
role: string | null;
|
|
8582
|
+
secondaryJobTitle: string | null;
|
|
8583
|
+
secondaryRole: string | null;
|
|
8584
|
+
startMonthYear: offsetDateTime | null;
|
|
8585
|
+
summary: string | null;
|
|
8586
|
+
}
|
|
8587
|
+
|
|
8406
8588
|
/**
|
|
8407
8589
|
* This type contains request details to download app diagnostic files.
|
|
8408
8590
|
*/
|
|
@@ -8529,6 +8711,12 @@ namespace reference.`microsoft.graph` {
|
|
|
8529
8711
|
statementUrl: string | null;
|
|
8530
8712
|
}
|
|
8531
8713
|
|
|
8714
|
+
@complex model profileSourceAnnotation {
|
|
8715
|
+
isDefaultSource: boolean | null;
|
|
8716
|
+
properties: string[] | null;
|
|
8717
|
+
sourceId: string | null;
|
|
8718
|
+
}
|
|
8719
|
+
|
|
8532
8720
|
@complex model propertyToEvaluate {
|
|
8533
8721
|
propertyName: string | null;
|
|
8534
8722
|
propertyValue: string | null;
|
|
@@ -8619,10 +8807,27 @@ namespace reference.`microsoft.graph` {
|
|
|
8619
8807
|
uri: string | null;
|
|
8620
8808
|
}
|
|
8621
8809
|
|
|
8810
|
+
@complex model regionalFormatOverrides {
|
|
8811
|
+
calendar: string | null;
|
|
8812
|
+
firstDayOfWeek: string | null;
|
|
8813
|
+
longDateFormat: string | null;
|
|
8814
|
+
longTimeFormat: string | null;
|
|
8815
|
+
shortDateFormat: string | null;
|
|
8816
|
+
shortTimeFormat: string | null;
|
|
8817
|
+
timeZone: string | null;
|
|
8818
|
+
}
|
|
8819
|
+
|
|
8622
8820
|
@complex model registrationEnforcement {
|
|
8623
8821
|
authenticationMethodsRegistrationCampaign: authenticationMethodsRegistrationCampaign | null;
|
|
8624
8822
|
}
|
|
8625
8823
|
|
|
8824
|
+
@complex model relatedPerson {
|
|
8825
|
+
displayName: string | null;
|
|
8826
|
+
relationship: personRelationship | null;
|
|
8827
|
+
userId: string | null;
|
|
8828
|
+
userPrincipalName: string | null;
|
|
8829
|
+
}
|
|
8830
|
+
|
|
8626
8831
|
@complex model reminder {
|
|
8627
8832
|
changeKey: string | null;
|
|
8628
8833
|
eventEndTime: dateTimeTimeZone | null;
|
|
@@ -9028,6 +9233,9 @@ namespace reference.`microsoft.graph` {
|
|
|
9028
9233
|
sourceType: securityBaselinePolicySourceType;
|
|
9029
9234
|
}
|
|
9030
9235
|
|
|
9236
|
+
@complex model segmentConfiguration {
|
|
9237
|
+
}
|
|
9238
|
+
|
|
9031
9239
|
@complex model selfSignedCertificate {
|
|
9032
9240
|
customKeyIdentifier: binary | null;
|
|
9033
9241
|
displayName: string | null;
|
|
@@ -9046,6 +9254,11 @@ namespace reference.`microsoft.graph` {
|
|
|
9046
9254
|
tenantId: string;
|
|
9047
9255
|
}
|
|
9048
9256
|
|
|
9257
|
+
@complex model serviceInformation {
|
|
9258
|
+
name: string | null;
|
|
9259
|
+
webUrl: string | null;
|
|
9260
|
+
}
|
|
9261
|
+
|
|
9049
9262
|
/**
|
|
9050
9263
|
* An abstract base class for all serviceNow authentication methods.
|
|
9051
9264
|
*/
|
|
@@ -9265,6 +9478,12 @@ namespace reference.`microsoft.graph` {
|
|
|
9265
9478
|
tenantId: string;
|
|
9266
9479
|
}
|
|
9267
9480
|
|
|
9481
|
+
@complex model timeConstraint {
|
|
9482
|
+
activityDomain: activityDomain | null;
|
|
9483
|
+
recurrence: patternedRecurrence | null;
|
|
9484
|
+
timeSlots: timeSlot[] | null;
|
|
9485
|
+
}
|
|
9486
|
+
|
|
9268
9487
|
/**
|
|
9269
9488
|
* Parameter passed to GetHealthMetricTimeSeries when requesting snapshot time series.
|
|
9270
9489
|
*/
|
|
@@ -9297,6 +9516,17 @@ namespace reference.`microsoft.graph` {
|
|
|
9297
9516
|
displayName: string | null;
|
|
9298
9517
|
}
|
|
9299
9518
|
|
|
9519
|
+
@complex model translationLanguageOverride {
|
|
9520
|
+
languageTag: string | null;
|
|
9521
|
+
translationBehavior: translationBehavior | null;
|
|
9522
|
+
}
|
|
9523
|
+
|
|
9524
|
+
@complex model translationPreferences {
|
|
9525
|
+
languageOverrides: translationLanguageOverride[];
|
|
9526
|
+
translationBehavior: translationBehavior | null;
|
|
9527
|
+
untranslatedLanguages: string[] | null;
|
|
9528
|
+
}
|
|
9529
|
+
|
|
9300
9530
|
/**
|
|
9301
9531
|
* Complex type that represents a certificate in the trust chain of another certificate issued by a certification authority external to Microsoft Cloud PKI. This complex type is only used when calling the uploadExternallySignedCertificationAuthorityCertificate action.
|
|
9302
9532
|
*/
|
|
@@ -9407,6 +9637,11 @@ namespace reference.`microsoft.graph` {
|
|
|
9407
9637
|
previousCombinations: authenticationMethodModes[];
|
|
9408
9638
|
}
|
|
9409
9639
|
|
|
9640
|
+
@complex model updateWindow {
|
|
9641
|
+
updateWindowEndTime: offsetDateTime | null;
|
|
9642
|
+
updateWindowStartTime: offsetDateTime | null;
|
|
9643
|
+
}
|
|
9644
|
+
|
|
9410
9645
|
@complex model updateWindowsDeviceAccountActionParameter {
|
|
9411
9646
|
calendarSyncEnabled: boolean | null;
|
|
9412
9647
|
deviceAccount: windowsDeviceAccount | null;
|
|
@@ -9682,6 +9917,14 @@ namespace reference.`microsoft.graph` {
|
|
|
9682
9917
|
rootDomains: rootDomains;
|
|
9683
9918
|
}
|
|
9684
9919
|
|
|
9920
|
+
@complex model verifiedCustomDomainCertificatesMetadata {
|
|
9921
|
+
expiryDate: offsetDateTime | null;
|
|
9922
|
+
issueDate: offsetDateTime | null;
|
|
9923
|
+
issuerName: string | null;
|
|
9924
|
+
subjectName: string | null;
|
|
9925
|
+
thumbprint: string | null;
|
|
9926
|
+
}
|
|
9927
|
+
|
|
9685
9928
|
@complex model verifiedDomain {
|
|
9686
9929
|
capabilities: string | null;
|
|
9687
9930
|
isDefault: boolean | null;
|
|
@@ -9946,6 +10189,10 @@ namespace reference.`microsoft.graph` {
|
|
|
9946
10189
|
totalLicensesCount: int32;
|
|
9947
10190
|
}
|
|
9948
10191
|
|
|
10192
|
+
@open
|
|
10193
|
+
@complex model wafAllowedHeadersDictionary extends Dictionary {
|
|
10194
|
+
}
|
|
10195
|
+
|
|
9949
10196
|
@complex model webApplication {
|
|
9950
10197
|
homePageUrl: string | null;
|
|
9951
10198
|
implicitGrantSettings: implicitGrantSettings | null;
|
|
@@ -10019,6 +10266,10 @@ namespace reference.`microsoft.graph` {
|
|
|
10019
10266
|
name: string | null;
|
|
10020
10267
|
}
|
|
10021
10268
|
|
|
10269
|
+
@complex model webSegmentConfiguration extends segmentConfiguration {
|
|
10270
|
+
@contains applicationSegments: webApplicationSegment[];
|
|
10271
|
+
}
|
|
10272
|
+
|
|
10022
10273
|
@complex model website {
|
|
10023
10274
|
address: string | null;
|
|
10024
10275
|
displayName: string | null;
|
|
@@ -10164,6 +10415,10 @@ namespace reference.`microsoft.graph` {
|
|
|
10164
10415
|
* Device restart behavior.
|
|
10165
10416
|
*/
|
|
10166
10417
|
deviceRestartBehavior: win32LobAppRestartBehavior;
|
|
10418
|
+
/**
|
|
10419
|
+
* Indicates whether app-in-use detection is enabled before app enforcement, and if enabled, the action to take when the app is detected to be in-use. Null indicates the feature is not enabled. Possible values are: 'notEnabled', 'fail', 'terminateWithoutUserInteraction', 'terminateWithUserInteraction'.
|
|
10420
|
+
*/
|
|
10421
|
+
inUseBehavior: win32LobAppInUseActionType | null;
|
|
10167
10422
|
/**
|
|
10168
10423
|
* The number of minutes the system will wait for install program to finish. Default value is 60 minutes.
|
|
10169
10424
|
*/
|
|
@@ -10294,6 +10549,24 @@ namespace reference.`microsoft.graph` {
|
|
|
10294
10549
|
scriptContent: string | null;
|
|
10295
10550
|
}
|
|
10296
10551
|
|
|
10552
|
+
/**
|
|
10553
|
+
* A complex type to store process rule data for a Win32 LOB app.
|
|
10554
|
+
*/
|
|
10555
|
+
@complex model win32LobAppProcessRule extends win32LobAppRule {
|
|
10556
|
+
/**
|
|
10557
|
+
* Indicates the process operation type. Default value is 'notConfigured'. Possible values are: 'notConfigured', 'exists'.
|
|
10558
|
+
*/
|
|
10559
|
+
operationType: win32LobAppProcessOperationType;
|
|
10560
|
+
/**
|
|
10561
|
+
* Indicates the display name for the process in the Intune admin console. Example: 'Microsoft Word'.
|
|
10562
|
+
*/
|
|
10563
|
+
processDisplayName: string | null;
|
|
10564
|
+
/**
|
|
10565
|
+
* Indicates the process name to be searched for on a managed device when enforcing a managed app. Example: 'TestApp.exe'.
|
|
10566
|
+
*/
|
|
10567
|
+
processName: string | null;
|
|
10568
|
+
}
|
|
10569
|
+
|
|
10297
10570
|
/**
|
|
10298
10571
|
* Contains product code and version properties to detect a Win32 App
|
|
10299
10572
|
*/
|
|
@@ -16511,6 +16784,7 @@ namespace reference.`microsoft.graph` {
|
|
|
16511
16784
|
logo: stream;
|
|
16512
16785
|
managerApplications: guid;
|
|
16513
16786
|
notes: string | null;
|
|
16787
|
+
onPremisesPublishing: onPremisesPublishing | null;
|
|
16514
16788
|
optionalClaims: optionalClaims | null;
|
|
16515
16789
|
parentalControlSettings: parentalControlSettings | null;
|
|
16516
16790
|
passwordCredentials: passwordCredential[];
|
|
@@ -16528,6 +16802,7 @@ namespace reference.`microsoft.graph` {
|
|
|
16528
16802
|
uniqueName: string | null;
|
|
16529
16803
|
web: webApplication | null;
|
|
16530
16804
|
@references appManagementPolicies: appManagementPolicy[];
|
|
16805
|
+
@references connectorGroup: connectorGroup | null;
|
|
16531
16806
|
@references createdOnBehalfOf: directoryObject | null;
|
|
16532
16807
|
@contains extensionProperties: extensionProperty[];
|
|
16533
16808
|
@contains federatedIdentityCredentials: federatedIdentityCredential[];
|
|
@@ -16537,6 +16812,10 @@ namespace reference.`microsoft.graph` {
|
|
|
16537
16812
|
@references tokenLifetimePolicies: tokenLifetimePolicy[];
|
|
16538
16813
|
}
|
|
16539
16814
|
|
|
16815
|
+
@abstract
|
|
16816
|
+
@entity model applicationSegment extends entity {
|
|
16817
|
+
}
|
|
16818
|
+
|
|
16540
16819
|
@entity model applicationTemplate extends entity {
|
|
16541
16820
|
categories: string[] | null;
|
|
16542
16821
|
configurationUris: configurationUri[] | null;
|
|
@@ -17561,6 +17840,23 @@ namespace reference.`microsoft.graph` {
|
|
|
17561
17840
|
@computed lastModifiedDateTime: offsetDateTime;
|
|
17562
17841
|
}
|
|
17563
17842
|
|
|
17843
|
+
@entity model connector extends entity {
|
|
17844
|
+
externalIp: string;
|
|
17845
|
+
machineName: string;
|
|
17846
|
+
status: connectorStatus;
|
|
17847
|
+
version: string;
|
|
17848
|
+
@references memberOf: connectorGroup[];
|
|
17849
|
+
}
|
|
17850
|
+
|
|
17851
|
+
@entity model connectorGroup extends entity {
|
|
17852
|
+
connectorGroupType: connectorGroupType;
|
|
17853
|
+
isDefault: boolean;
|
|
17854
|
+
name: string;
|
|
17855
|
+
region: connectorGroupRegion | null;
|
|
17856
|
+
@references applications: application[];
|
|
17857
|
+
@references members: connector[];
|
|
17858
|
+
}
|
|
17859
|
+
|
|
17564
17860
|
@open
|
|
17565
17861
|
@entity model contact extends outlookItem {
|
|
17566
17862
|
assistantName: string | null;
|
|
@@ -17612,6 +17908,10 @@ namespace reference.`microsoft.graph` {
|
|
|
17612
17908
|
@contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
|
|
17613
17909
|
}
|
|
17614
17910
|
|
|
17911
|
+
@entity model contactMergeSuggestions extends entity {
|
|
17912
|
+
isEnabled: boolean | null;
|
|
17913
|
+
}
|
|
17914
|
+
|
|
17615
17915
|
@open
|
|
17616
17916
|
@entity model contract extends directoryObject {
|
|
17617
17917
|
contractType: string | null;
|
|
@@ -17641,6 +17941,14 @@ namespace reference.`microsoft.graph` {
|
|
|
17641
17941
|
@contains posts: post[];
|
|
17642
17942
|
}
|
|
17643
17943
|
|
|
17944
|
+
@entity model corsConfiguration_v2 extends entity {
|
|
17945
|
+
allowedHeaders: string[] | null;
|
|
17946
|
+
allowedMethods: string[] | null;
|
|
17947
|
+
allowedOrigins: string[] | null;
|
|
17948
|
+
maxAgeInSeconds: int32 | null;
|
|
17949
|
+
resource: string;
|
|
17950
|
+
}
|
|
17951
|
+
|
|
17644
17952
|
@entity model countryNamedLocation extends namedLocation {
|
|
17645
17953
|
countriesAndRegions: string[];
|
|
17646
17954
|
countryLookupMethod: countryLookupMethodType | null;
|
|
@@ -19216,7 +19524,7 @@ namespace reference.`microsoft.graph` {
|
|
|
19216
19524
|
*/
|
|
19217
19525
|
roleScopeTagIds: string[] | null;
|
|
19218
19526
|
/**
|
|
19219
|
-
*
|
|
19527
|
+
* Specifies whether the PowerShell script runs in 32-bit mode. When set to true, the script runs in a 32-bit PowerShell host. Default is false.
|
|
19220
19528
|
*/
|
|
19221
19529
|
runAs32Bit: boolean;
|
|
19222
19530
|
/**
|
|
@@ -20896,6 +21204,9 @@ namespace reference.`microsoft.graph` {
|
|
|
20896
21204
|
* The remote assistance settings singleton
|
|
20897
21205
|
*/
|
|
20898
21206
|
@contains remoteAssistanceSettings: remoteAssistanceSettings | null;
|
|
21207
|
+
/**
|
|
21208
|
+
* Reports singleton
|
|
21209
|
+
*/
|
|
20899
21210
|
@contains reports: deviceManagementReports | null;
|
|
20900
21211
|
/**
|
|
20901
21212
|
* Collection of resource access settings associated with account.
|
|
@@ -22385,6 +22696,9 @@ namespace reference.`microsoft.graph` {
|
|
|
22385
22696
|
whenPartnerDevicesWillBeRemovedDateTime: offsetDateTime | null;
|
|
22386
22697
|
}
|
|
22387
22698
|
|
|
22699
|
+
/**
|
|
22700
|
+
* Singleton entity that acts as a container for all reports functionality.
|
|
22701
|
+
*/
|
|
22388
22702
|
@entity model deviceManagementReports extends entity {
|
|
22389
22703
|
/**
|
|
22390
22704
|
* Entity representing the configuration of a cached report.
|
|
@@ -22965,6 +23279,9 @@ namespace reference.`microsoft.graph` {
|
|
|
22965
23279
|
@contains customSecurityAttributeDefinitions: customSecurityAttributeDefinition[];
|
|
22966
23280
|
@contains deletedItems: directoryObject[];
|
|
22967
23281
|
@contains deviceLocalCredentials: deviceLocalCredentialInfo[];
|
|
23282
|
+
|
|
23283
|
+
@graphDeprecated("DirectoryFeatureRolloutPolicies")
|
|
23284
|
+
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
22968
23285
|
@contains federationConfigurations: identityProviderBase[];
|
|
22969
23286
|
@contains onPremisesSynchronization: onPremisesDirectorySynchronization[];
|
|
22970
23287
|
@contains publicKeyInfrastructure: publicKeyInfrastructureRoot | null;
|
|
@@ -23144,6 +23461,14 @@ namespace reference.`microsoft.graph` {
|
|
|
23144
23461
|
windowsSMode: windowsSModeConfiguration;
|
|
23145
23462
|
}
|
|
23146
23463
|
|
|
23464
|
+
@entity model educationalActivity extends itemFacet {
|
|
23465
|
+
completionMonthYear: offsetDateTime | null;
|
|
23466
|
+
endMonthYear: offsetDateTime | null;
|
|
23467
|
+
institution: institutionData | null;
|
|
23468
|
+
program: educationalActivityDetail | null;
|
|
23469
|
+
startMonthYear: offsetDateTime | null;
|
|
23470
|
+
}
|
|
23471
|
+
|
|
23147
23472
|
/**
|
|
23148
23473
|
* A pool represents a group of embedded SIM activation codes.
|
|
23149
23474
|
*/
|
|
@@ -23484,6 +23809,15 @@ namespace reference.`microsoft.graph` {
|
|
|
23484
23809
|
allowExternalIdentitiesToLeave: boolean;
|
|
23485
23810
|
}
|
|
23486
23811
|
|
|
23812
|
+
@entity model featureRolloutPolicy extends entity {
|
|
23813
|
+
description: string | null;
|
|
23814
|
+
displayName: string;
|
|
23815
|
+
feature: stagedFeatureName;
|
|
23816
|
+
isAppliedToOrganization: boolean;
|
|
23817
|
+
isEnabled: boolean;
|
|
23818
|
+
@contains appliesTo: directoryObject[];
|
|
23819
|
+
}
|
|
23820
|
+
|
|
23487
23821
|
@entity model federatedIdentityCredential extends entity {
|
|
23488
23822
|
audiences: string[];
|
|
23489
23823
|
claimsMatchingExpression: federatedIdentityExpression | null;
|
|
@@ -23577,6 +23911,8 @@ namespace reference.`microsoft.graph` {
|
|
|
23577
23911
|
@contains onPremisesSyncBehavior: onPremisesSyncBehavior | null;
|
|
23578
23912
|
@references owners: directoryObject[];
|
|
23579
23913
|
@contains permissionGrants: resourceSpecificPermissionGrant[];
|
|
23914
|
+
@contains photo: profilePhoto | null;
|
|
23915
|
+
@contains photos: profilePhoto[];
|
|
23580
23916
|
@contains planner: plannerGroup | null;
|
|
23581
23917
|
@contains rejectedSenders: directoryObject[];
|
|
23582
23918
|
@contains settings: directorySetting[];
|
|
@@ -24815,6 +25151,11 @@ namespace reference.`microsoft.graph` {
|
|
|
24815
25151
|
@computed @key resourceAppId: string;
|
|
24816
25152
|
}
|
|
24817
25153
|
|
|
25154
|
+
@entity model insightsSettings extends entity {
|
|
25155
|
+
disabledForGroup: string | null;
|
|
25156
|
+
isEnabledInOrganization: boolean | null;
|
|
25157
|
+
}
|
|
25158
|
+
|
|
24818
25159
|
@entity model internalDomainFederation extends samlOrWsFedProvider {
|
|
24819
25160
|
activeSignInUri: string | null;
|
|
24820
25161
|
federatedIdpMfaBehavior: federatedIdpMfaBehavior | null;
|
|
@@ -26391,7 +26732,7 @@ namespace reference.`microsoft.graph` {
|
|
|
26391
26732
|
}
|
|
26392
26733
|
|
|
26393
26734
|
/**
|
|
26394
|
-
* A class containing the properties used for iOS
|
|
26735
|
+
* A class containing the properties used for iOS lob app provisioning configuration PolicySetItem.
|
|
26395
26736
|
*/
|
|
26396
26737
|
@entity model iosLobAppProvisioningConfigurationPolicySetItem extends policySetItem {
|
|
26397
26738
|
}
|
|
@@ -27021,15 +27362,85 @@ namespace reference.`microsoft.graph` {
|
|
|
27021
27362
|
@references rootCertificateForServerValidation: iosTrustedRootCertificate | null;
|
|
27022
27363
|
}
|
|
27023
27364
|
|
|
27365
|
+
@entity model ipApplicationSegment extends applicationSegment {
|
|
27366
|
+
action: actionType;
|
|
27367
|
+
destinationHost: string | null;
|
|
27368
|
+
destinationType: privateNetworkDestinationType | null;
|
|
27369
|
+
port: int32 | null;
|
|
27370
|
+
ports: string[] | null;
|
|
27371
|
+
protocol: privateNetworkProtocol | null;
|
|
27372
|
+
@references application: application | null;
|
|
27373
|
+
}
|
|
27374
|
+
|
|
27024
27375
|
@entity model ipNamedLocation extends namedLocation {
|
|
27025
27376
|
ipRanges: ipRange[];
|
|
27026
27377
|
isTrusted: boolean;
|
|
27027
27378
|
}
|
|
27028
27379
|
|
|
27380
|
+
@entity model itemAddress extends itemFacet {
|
|
27381
|
+
detail: physicalAddress | null;
|
|
27382
|
+
displayName: string | null;
|
|
27383
|
+
geoCoordinates: geoCoordinates | null;
|
|
27384
|
+
}
|
|
27385
|
+
|
|
27029
27386
|
@entity model itemAttachment extends attachment {
|
|
27030
27387
|
@contains item: outlookItem | null;
|
|
27031
27388
|
}
|
|
27032
27389
|
|
|
27390
|
+
@entity model itemEmail extends itemFacet {
|
|
27391
|
+
address: string | null;
|
|
27392
|
+
displayName: string | null;
|
|
27393
|
+
type: emailType;
|
|
27394
|
+
}
|
|
27395
|
+
|
|
27396
|
+
@abstract
|
|
27397
|
+
@entity model itemFacet extends entity {
|
|
27398
|
+
allowedAudiences: allowedAudiences | null;
|
|
27399
|
+
createdBy: identitySet | null;
|
|
27400
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
27401
|
+
inference: inferenceData | null;
|
|
27402
|
+
isSearchable: boolean | null;
|
|
27403
|
+
lastModifiedBy: identitySet | null;
|
|
27404
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
27405
|
+
source: personDataSources | null;
|
|
27406
|
+
sources: profileSourceAnnotation[] | null;
|
|
27407
|
+
}
|
|
27408
|
+
|
|
27409
|
+
@entity model itemPatent extends itemFacet {
|
|
27410
|
+
description: string | null;
|
|
27411
|
+
displayName: string | null;
|
|
27412
|
+
isPending: boolean | null;
|
|
27413
|
+
issuedDate: offsetDateTime | null;
|
|
27414
|
+
issuingAuthority: string | null;
|
|
27415
|
+
number: string | null;
|
|
27416
|
+
webUrl: string | null;
|
|
27417
|
+
}
|
|
27418
|
+
|
|
27419
|
+
@entity model itemPhone extends itemFacet {
|
|
27420
|
+
displayName: string | null;
|
|
27421
|
+
number: string | null;
|
|
27422
|
+
type: phoneType;
|
|
27423
|
+
}
|
|
27424
|
+
|
|
27425
|
+
@entity model itemPublication extends itemFacet {
|
|
27426
|
+
description: string | null;
|
|
27427
|
+
displayName: string | null;
|
|
27428
|
+
publishedDate: offsetDateTime | null;
|
|
27429
|
+
publisher: string | null;
|
|
27430
|
+
thumbnailUrl: string | null;
|
|
27431
|
+
webUrl: string | null;
|
|
27432
|
+
}
|
|
27433
|
+
|
|
27434
|
+
@entity model languageProficiency extends itemFacet {
|
|
27435
|
+
displayName: string | null;
|
|
27436
|
+
proficiency: languageProficiencyLevel | null;
|
|
27437
|
+
reading: languageProficiencyLevel | null;
|
|
27438
|
+
spoken: languageProficiencyLevel | null;
|
|
27439
|
+
tag: string | null;
|
|
27440
|
+
thumbnailUrl: string | null;
|
|
27441
|
+
written: languageProficiencyLevel | null;
|
|
27442
|
+
}
|
|
27443
|
+
|
|
27033
27444
|
@entity model licenseDetails extends entity {
|
|
27034
27445
|
servicePlans: servicePlanInfo[];
|
|
27035
27446
|
skuId: guid | null;
|
|
@@ -28932,6 +29343,10 @@ namespace reference.`microsoft.graph` {
|
|
|
28932
29343
|
* Defines how app messaging redirection is protected by an App Protection Policy. Default is anyApp.
|
|
28933
29344
|
*/
|
|
28934
29345
|
protectedMessagingRedirectAppType: messagingRedirectAppType;
|
|
29346
|
+
/**
|
|
29347
|
+
* Indicates whether Microsoft Purview content evaluation is required before a managed app performs an outgoing data sharing action. Default value is notRequired. Possible values are: notRequired, requiredWhenOnline, required, unknownFutureValue.
|
|
29348
|
+
*/
|
|
29349
|
+
purviewContentEvaluationRequired: managedAppPurviewEvaluationRequirement;
|
|
28935
29350
|
/**
|
|
28936
29351
|
* Indicates whether users may use the "Save As" menu item to save a copy of protected files.
|
|
28937
29352
|
*/
|
|
@@ -31207,6 +31622,22 @@ namespace reference.`microsoft.graph` {
|
|
|
31207
31622
|
useSharedComputerActivation: boolean;
|
|
31208
31623
|
}
|
|
31209
31624
|
|
|
31625
|
+
@entity model onPremisesAgent extends entity {
|
|
31626
|
+
externalIp: string;
|
|
31627
|
+
machineName: string;
|
|
31628
|
+
status: agentStatus;
|
|
31629
|
+
supportedPublishingTypes: onPremisesPublishingType[];
|
|
31630
|
+
@references agentGroups: onPremisesAgentGroup[];
|
|
31631
|
+
}
|
|
31632
|
+
|
|
31633
|
+
@entity model onPremisesAgentGroup extends entity {
|
|
31634
|
+
displayName: string;
|
|
31635
|
+
isDefault: boolean;
|
|
31636
|
+
publishingType: onPremisesPublishingType;
|
|
31637
|
+
@references agents: onPremisesAgent[];
|
|
31638
|
+
@references publishedResources: publishedResource[];
|
|
31639
|
+
}
|
|
31640
|
+
|
|
31210
31641
|
/**
|
|
31211
31642
|
* Singleton entity which represents the Exchange OnPremises Conditional Access Settings for a tenant.
|
|
31212
31643
|
*/
|
|
@@ -31234,6 +31665,19 @@ namespace reference.`microsoft.graph` {
|
|
|
31234
31665
|
features: onPremisesDirectorySynchronizationFeature;
|
|
31235
31666
|
}
|
|
31236
31667
|
|
|
31668
|
+
@entity model onPremisesPublishingProfile extends entity {
|
|
31669
|
+
hybridAgentUpdaterConfiguration: hybridAgentUpdaterConfiguration | null;
|
|
31670
|
+
isDefaultAccessEnabled: boolean | null;
|
|
31671
|
+
isEnabled: boolean | null;
|
|
31672
|
+
@contains agentGroups: onPremisesAgentGroup[];
|
|
31673
|
+
@contains agents: onPremisesAgent[];
|
|
31674
|
+
@references applicationSegments: ipApplicationSegment[];
|
|
31675
|
+
@contains connectorGroups: connectorGroup[];
|
|
31676
|
+
@contains connectors: connector[];
|
|
31677
|
+
@contains publishedResources: publishedResource[];
|
|
31678
|
+
@contains sensors: privateAccessSensor[];
|
|
31679
|
+
}
|
|
31680
|
+
|
|
31237
31681
|
@entity model onPremisesSyncBehavior extends entity {
|
|
31238
31682
|
isCloudManaged: boolean;
|
|
31239
31683
|
}
|
|
@@ -31357,6 +31801,7 @@ namespace reference.`microsoft.graph` {
|
|
|
31357
31801
|
@references certificateBasedAuthConfiguration: certificateBasedAuthConfiguration[];
|
|
31358
31802
|
@contains extensions: extension[];
|
|
31359
31803
|
@contains partnerInformation: partnerInformation | null;
|
|
31804
|
+
@contains settings: organizationSettings | null;
|
|
31360
31805
|
}
|
|
31361
31806
|
|
|
31362
31807
|
@entity model organizationalBranding extends organizationalBrandingProperties {
|
|
@@ -31401,6 +31846,14 @@ namespace reference.`microsoft.graph` {
|
|
|
31401
31846
|
usernameHintText: string | null;
|
|
31402
31847
|
}
|
|
31403
31848
|
|
|
31849
|
+
@entity model organizationSettings extends entity {
|
|
31850
|
+
@contains contactInsights: insightsSettings | null;
|
|
31851
|
+
|
|
31852
|
+
@graphDeprecated("Beta:ItemInsightsOranizationSettings")
|
|
31853
|
+
@contains itemInsights: insightsSettings | null;
|
|
31854
|
+
@contains peopleInsights: insightsSettings | null;
|
|
31855
|
+
}
|
|
31856
|
+
|
|
31404
31857
|
@open
|
|
31405
31858
|
@entity model orgContact extends directoryObject {
|
|
31406
31859
|
addresses: physicalOfficeAddress[] | null;
|
|
@@ -31520,6 +31973,10 @@ namespace reference.`microsoft.graph` {
|
|
|
31520
31973
|
payloadType: assignmentFilterPayloadType;
|
|
31521
31974
|
}
|
|
31522
31975
|
|
|
31976
|
+
@entity model peopleAdminSettings extends entity {
|
|
31977
|
+
@contains itemInsights: insightsSettings | null;
|
|
31978
|
+
}
|
|
31979
|
+
|
|
31523
31980
|
@entity model permissionGrantConditionSet extends entity {
|
|
31524
31981
|
clientApplicationIds: string[] | null;
|
|
31525
31982
|
clientApplicationPublisherIds: string[] | null;
|
|
@@ -31566,6 +32023,83 @@ namespace reference.`microsoft.graph` {
|
|
|
31566
32023
|
yomiCompany: string | null;
|
|
31567
32024
|
}
|
|
31568
32025
|
|
|
32026
|
+
@entity model personAnnotation extends itemFacet {
|
|
32027
|
+
detail: itemBody | null;
|
|
32028
|
+
displayName: string | null;
|
|
32029
|
+
thumbnailUrl: string | null;
|
|
32030
|
+
}
|
|
32031
|
+
|
|
32032
|
+
@entity model personAnnualEvent extends itemFacet {
|
|
32033
|
+
date: offsetDateTime | null;
|
|
32034
|
+
displayName: string | null;
|
|
32035
|
+
type: personAnnualEventType | null;
|
|
32036
|
+
}
|
|
32037
|
+
|
|
32038
|
+
@entity model personAward extends itemFacet {
|
|
32039
|
+
description: string | null;
|
|
32040
|
+
displayName: string | null;
|
|
32041
|
+
issuedDate: offsetDateTime | null;
|
|
32042
|
+
issuingAuthority: string | null;
|
|
32043
|
+
thumbnailUrl: string | null;
|
|
32044
|
+
webUrl: string | null;
|
|
32045
|
+
}
|
|
32046
|
+
|
|
32047
|
+
@entity model personCertification extends itemFacet {
|
|
32048
|
+
certificationId: string | null;
|
|
32049
|
+
description: string | null;
|
|
32050
|
+
displayName: string | null;
|
|
32051
|
+
endDate: offsetDateTime | null;
|
|
32052
|
+
issuedDate: offsetDateTime | null;
|
|
32053
|
+
issuingAuthority: string | null;
|
|
32054
|
+
issuingCompany: string | null;
|
|
32055
|
+
startDate: offsetDateTime | null;
|
|
32056
|
+
thumbnailUrl: string | null;
|
|
32057
|
+
webUrl: string | null;
|
|
32058
|
+
}
|
|
32059
|
+
|
|
32060
|
+
@open
|
|
32061
|
+
@entity model personExtension extends extension {
|
|
32062
|
+
}
|
|
32063
|
+
|
|
32064
|
+
@entity model personInterest extends itemFacet {
|
|
32065
|
+
categories: string[] | null;
|
|
32066
|
+
collaborationTags: string[] | null;
|
|
32067
|
+
description: string | null;
|
|
32068
|
+
displayName: string | null;
|
|
32069
|
+
thumbnailUrl: string | null;
|
|
32070
|
+
webUrl: string | null;
|
|
32071
|
+
}
|
|
32072
|
+
|
|
32073
|
+
@entity model personName extends itemFacet {
|
|
32074
|
+
displayName: string | null;
|
|
32075
|
+
first: string | null;
|
|
32076
|
+
initials: string | null;
|
|
32077
|
+
languageTag: string | null;
|
|
32078
|
+
last: string | null;
|
|
32079
|
+
maiden: string | null;
|
|
32080
|
+
middle: string | null;
|
|
32081
|
+
nickname: string | null;
|
|
32082
|
+
pronunciation: personNamePronounciation | null;
|
|
32083
|
+
suffix: string | null;
|
|
32084
|
+
title: string | null;
|
|
32085
|
+
}
|
|
32086
|
+
|
|
32087
|
+
@entity model personResponsibility extends itemFacet {
|
|
32088
|
+
collaborationTags: string[] | null;
|
|
32089
|
+
description: string | null;
|
|
32090
|
+
displayName: string | null;
|
|
32091
|
+
thumbnailUrl: string | null;
|
|
32092
|
+
webUrl: string | null;
|
|
32093
|
+
}
|
|
32094
|
+
|
|
32095
|
+
@entity model personWebsite extends itemFacet {
|
|
32096
|
+
categories: string[] | null;
|
|
32097
|
+
description: string | null;
|
|
32098
|
+
displayName: string | null;
|
|
32099
|
+
thumbnailUrl: string | null;
|
|
32100
|
+
webUrl: string | null;
|
|
32101
|
+
}
|
|
32102
|
+
|
|
31569
32103
|
@entity model planner extends entity {
|
|
31570
32104
|
@contains buckets: plannerBucket[];
|
|
31571
32105
|
@contains plans: plannerPlan[];
|
|
@@ -31721,6 +32255,7 @@ namespace reference.`microsoft.graph` {
|
|
|
31721
32255
|
@contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
|
|
31722
32256
|
@contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
|
|
31723
32257
|
@contains externalIdentitiesPolicy: externalIdentitiesPolicy | null;
|
|
32258
|
+
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
31724
32259
|
@contains federatedTokenValidationPolicy: federatedTokenValidationPolicy | null;
|
|
31725
32260
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
31726
32261
|
@contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
|
|
@@ -31848,6 +32383,13 @@ namespace reference.`microsoft.graph` {
|
|
|
31848
32383
|
@contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
|
|
31849
32384
|
}
|
|
31850
32385
|
|
|
32386
|
+
@entity model privateAccessSensor extends entity {
|
|
32387
|
+
externalIp: string;
|
|
32388
|
+
machineName: string;
|
|
32389
|
+
status: sensorStatus;
|
|
32390
|
+
version: string;
|
|
32391
|
+
}
|
|
32392
|
+
|
|
31851
32393
|
/**
|
|
31852
32394
|
* The endpoint privilege management elevation result entity representing a single elevation action on a client device.
|
|
31853
32395
|
*/
|
|
@@ -32004,15 +32546,58 @@ namespace reference.`microsoft.graph` {
|
|
|
32004
32546
|
status: elevationRequestState;
|
|
32005
32547
|
}
|
|
32006
32548
|
|
|
32549
|
+
@entity model profile extends entity {
|
|
32550
|
+
@contains account: userAccountInformation[];
|
|
32551
|
+
@contains addresses: itemAddress[];
|
|
32552
|
+
@contains anniversaries: personAnnualEvent[];
|
|
32553
|
+
@contains awards: personAward[];
|
|
32554
|
+
@contains certifications: personCertification[];
|
|
32555
|
+
@contains educationalActivities: educationalActivity[];
|
|
32556
|
+
@contains emails: itemEmail[];
|
|
32557
|
+
@contains interests: personInterest[];
|
|
32558
|
+
@contains languages: languageProficiency[];
|
|
32559
|
+
@contains names: personName[];
|
|
32560
|
+
@contains notes: personAnnotation[];
|
|
32561
|
+
@contains patents: itemPatent[];
|
|
32562
|
+
@contains phones: itemPhone[];
|
|
32563
|
+
@contains positions: workPosition[];
|
|
32564
|
+
@contains projects: projectParticipation[];
|
|
32565
|
+
@contains publications: itemPublication[];
|
|
32566
|
+
@contains skills: skillProficiency[];
|
|
32567
|
+
@contains webAccounts: webAccount[];
|
|
32568
|
+
@contains websites: personWebsite[];
|
|
32569
|
+
}
|
|
32570
|
+
|
|
32007
32571
|
@entity model profilePhoto extends entity {
|
|
32008
32572
|
height: int32 | null;
|
|
32009
32573
|
width: int32 | null;
|
|
32010
32574
|
}
|
|
32011
32575
|
|
|
32576
|
+
@entity model profileSource extends entity {
|
|
32577
|
+
}
|
|
32578
|
+
|
|
32579
|
+
@entity model projectParticipation extends itemFacet {
|
|
32580
|
+
categories: string[] | null;
|
|
32581
|
+
client: companyDetail | null;
|
|
32582
|
+
collaborationTags: string[] | null;
|
|
32583
|
+
colleagues: relatedPerson[] | null;
|
|
32584
|
+
detail: positionDetail | null;
|
|
32585
|
+
displayName: string | null;
|
|
32586
|
+
sponsors: relatedPerson[] | null;
|
|
32587
|
+
thumbnailUrl: string | null;
|
|
32588
|
+
}
|
|
32589
|
+
|
|
32012
32590
|
@entity model publicKeyInfrastructureRoot extends entity {
|
|
32013
32591
|
@contains certificateBasedAuthConfigurations: certificateBasedAuthPki[];
|
|
32014
32592
|
}
|
|
32015
32593
|
|
|
32594
|
+
@entity model publishedResource extends entity {
|
|
32595
|
+
displayName: string | null;
|
|
32596
|
+
publishingType: onPremisesPublishingType;
|
|
32597
|
+
resourceName: string | null;
|
|
32598
|
+
@references agentGroups: onPremisesAgentGroup[];
|
|
32599
|
+
}
|
|
32600
|
+
|
|
32016
32601
|
@entity model qrPin extends entity {
|
|
32017
32602
|
code: string;
|
|
32018
32603
|
@computed createdDateTime: offsetDateTime | null;
|
|
@@ -32042,6 +32627,16 @@ namespace reference.`microsoft.graph` {
|
|
|
32042
32627
|
thumbnailUrl: string | null;
|
|
32043
32628
|
}
|
|
32044
32629
|
|
|
32630
|
+
@entity model regionalAndLanguageSettings extends entity {
|
|
32631
|
+
authoringLanguages: localeInfo[] | null;
|
|
32632
|
+
defaultDisplayLanguage: localeInfo | null;
|
|
32633
|
+
defaultRegionalFormat: localeInfo | null;
|
|
32634
|
+
defaultSpeechInputLanguage: localeInfo | null;
|
|
32635
|
+
defaultTranslationLanguage: localeInfo | null;
|
|
32636
|
+
regionalFormatOverrides: regionalFormatOverrides | null;
|
|
32637
|
+
translationPreferences: translationPreferences | null;
|
|
32638
|
+
}
|
|
32639
|
+
|
|
32045
32640
|
/**
|
|
32046
32641
|
* Report of remote actions initiated on the devices belonging to a certain tenant.
|
|
32047
32642
|
*/
|
|
@@ -32869,6 +33464,15 @@ namespace reference.`microsoft.graph` {
|
|
|
32869
33464
|
value: string | null;
|
|
32870
33465
|
}
|
|
32871
33466
|
|
|
33467
|
+
@entity model skillProficiency extends itemFacet {
|
|
33468
|
+
categories: string[] | null;
|
|
33469
|
+
collaborationTags: string[] | null;
|
|
33470
|
+
displayName: string | null;
|
|
33471
|
+
proficiency: skillProficiencyLevel | null;
|
|
33472
|
+
thumbnailUrl: string | null;
|
|
33473
|
+
webUrl: string | null;
|
|
33474
|
+
}
|
|
33475
|
+
|
|
32872
33476
|
@entity model softwareUpdateStatusSummary extends entity {
|
|
32873
33477
|
/**
|
|
32874
33478
|
* Number of compliant devices.
|
|
@@ -33479,7 +34083,10 @@ namespace reference.`microsoft.graph` {
|
|
|
33479
34083
|
@references ownedDevices: directoryObject[];
|
|
33480
34084
|
@references ownedObjects: directoryObject[];
|
|
33481
34085
|
@contains people: person[];
|
|
34086
|
+
@contains photo: profilePhoto | null;
|
|
34087
|
+
@contains photos: profilePhoto[];
|
|
33482
34088
|
@contains planner: plannerUser | null;
|
|
34089
|
+
@contains profile: profile | null;
|
|
33483
34090
|
@references registeredDevices: directoryObject[];
|
|
33484
34091
|
@contains scopedRoleMemberOf: scopedRoleMembership[];
|
|
33485
34092
|
@references sponsors: directoryObject[];
|
|
@@ -33491,6 +34098,15 @@ namespace reference.`microsoft.graph` {
|
|
|
33491
34098
|
@references windowsInformationProtectionDeviceRegistrations: windowsInformationProtectionDeviceRegistration[];
|
|
33492
34099
|
}
|
|
33493
34100
|
|
|
34101
|
+
@entity model userAccountInformation extends itemFacet {
|
|
34102
|
+
ageGroup: string | null;
|
|
34103
|
+
countryCode: string | null;
|
|
34104
|
+
originTenantInfo: originTenantInfo | null;
|
|
34105
|
+
preferredLanguageTag: localeInfo | null;
|
|
34106
|
+
userPersona: userPersona | null;
|
|
34107
|
+
userPrincipalName: string | null;
|
|
34108
|
+
}
|
|
34109
|
+
|
|
33494
34110
|
/**
|
|
33495
34111
|
* Contains properties for the installation status for a user. This will be deprecated starting May, 2023 (Intune Release 2305).
|
|
33496
34112
|
*/
|
|
@@ -35299,6 +35915,10 @@ namespace reference.`microsoft.graph` {
|
|
|
35299
35915
|
workFromAnywhereScore: float64;
|
|
35300
35916
|
}
|
|
35301
35917
|
|
|
35918
|
+
@entity model userInsightsSettings extends entity {
|
|
35919
|
+
isEnabled: boolean;
|
|
35920
|
+
}
|
|
35921
|
+
|
|
35302
35922
|
/**
|
|
35303
35923
|
* Contains properties for the installation state summary for a user.
|
|
35304
35924
|
*/
|
|
@@ -35379,6 +35999,12 @@ namespace reference.`microsoft.graph` {
|
|
|
35379
35999
|
userPrincipalName: string | null;
|
|
35380
36000
|
}
|
|
35381
36001
|
|
|
36002
|
+
@entity model userSettings extends entity {
|
|
36003
|
+
@contains contactMergeSuggestions: contactMergeSuggestions | null;
|
|
36004
|
+
@contains itemInsights: userInsightsSettings | null;
|
|
36005
|
+
@contains regionalAndLanguageSettings: regionalAndLanguageSettings | null;
|
|
36006
|
+
}
|
|
36007
|
+
|
|
35382
36008
|
/**
|
|
35383
36009
|
* Base VPN Configuration profile.
|
|
35384
36010
|
*/
|
|
@@ -35498,6 +36124,15 @@ namespace reference.`microsoft.graph` {
|
|
|
35498
36124
|
managedDeviceId: string | null;
|
|
35499
36125
|
}
|
|
35500
36126
|
|
|
36127
|
+
@entity model webAccount extends itemFacet {
|
|
36128
|
+
description: string | null;
|
|
36129
|
+
service: serviceInformation | null;
|
|
36130
|
+
statusMessage: string | null;
|
|
36131
|
+
thumbnailUrl: string | null;
|
|
36132
|
+
userId: string | null;
|
|
36133
|
+
webUrl: string | null;
|
|
36134
|
+
}
|
|
36135
|
+
|
|
35501
36136
|
/**
|
|
35502
36137
|
* Contains properties and inherited properties for web apps.
|
|
35503
36138
|
*/
|
|
@@ -35512,6 +36147,13 @@ namespace reference.`microsoft.graph` {
|
|
|
35512
36147
|
useManagedBrowser: boolean;
|
|
35513
36148
|
}
|
|
35514
36149
|
|
|
36150
|
+
@entity model webApplicationSegment extends applicationSegment {
|
|
36151
|
+
alternateUrl: string | null;
|
|
36152
|
+
externalUrl: string | null;
|
|
36153
|
+
internalUrl: string | null;
|
|
36154
|
+
@contains corsConfigurations: corsConfiguration_v2[];
|
|
36155
|
+
}
|
|
36156
|
+
|
|
35515
36157
|
@entity model whatIfAnalysisResult extends conditionalAccessPolicy {
|
|
35516
36158
|
analysisReasons: whatIfAnalysisReasons;
|
|
35517
36159
|
policyApplies: boolean;
|
|
@@ -41729,6 +42371,14 @@ namespace reference.`microsoft.graph` {
|
|
|
41729
42371
|
packageIdentifier: string | null;
|
|
41730
42372
|
}
|
|
41731
42373
|
|
|
42374
|
+
@entity model workPosition extends itemFacet {
|
|
42375
|
+
categories: string[] | null;
|
|
42376
|
+
colleagues: relatedPerson[] | null;
|
|
42377
|
+
detail: positionDetail | null;
|
|
42378
|
+
isCurrent: boolean | null;
|
|
42379
|
+
manager: relatedPerson | null;
|
|
42380
|
+
}
|
|
42381
|
+
|
|
41732
42382
|
@entity model x509CertificateCombinationConfiguration extends authenticationCombinationConfiguration {
|
|
41733
42383
|
allowedIssuerSkis: string[];
|
|
41734
42384
|
allowedPolicyOIDs: string[];
|
|
@@ -41851,6 +42501,20 @@ namespace reference.`microsoft.graph` {
|
|
|
41851
42501
|
notSupported: 6,
|
|
41852
42502
|
}
|
|
41853
42503
|
|
|
42504
|
+
enum actionType {
|
|
42505
|
+
tunnel: 0,
|
|
42506
|
+
exclude: 1,
|
|
42507
|
+
unknownFutureValue: 2,
|
|
42508
|
+
}
|
|
42509
|
+
|
|
42510
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
42511
|
+
enum activityDomain {
|
|
42512
|
+
`unknown`: 0,
|
|
42513
|
+
work: 1,
|
|
42514
|
+
personal: 2,
|
|
42515
|
+
unrestricted: 3,
|
|
42516
|
+
}
|
|
42517
|
+
|
|
41854
42518
|
enum activityType {
|
|
41855
42519
|
signin: 0,
|
|
41856
42520
|
user: 1,
|
|
@@ -41975,6 +42639,24 @@ namespace reference.`microsoft.graph` {
|
|
|
41975
42639
|
unknownFutureValue: 3,
|
|
41976
42640
|
}
|
|
41977
42641
|
|
|
42642
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
42643
|
+
enum agentStatus {
|
|
42644
|
+
active: 0,
|
|
42645
|
+
inactive: 1,
|
|
42646
|
+
}
|
|
42647
|
+
|
|
42648
|
+
@graphFlags
|
|
42649
|
+
enum allowedAudiences {
|
|
42650
|
+
me: 0,
|
|
42651
|
+
family: 1,
|
|
42652
|
+
contacts: 2,
|
|
42653
|
+
groupMembers: 4,
|
|
42654
|
+
organization: 8,
|
|
42655
|
+
federatedOrganizations: 16,
|
|
42656
|
+
everyone: 32,
|
|
42657
|
+
unknownFutureValue: 64,
|
|
42658
|
+
}
|
|
42659
|
+
|
|
41978
42660
|
@graphFlags
|
|
41979
42661
|
enum allowedRolePrincipalTypes {
|
|
41980
42662
|
user: 1,
|
|
@@ -43053,6 +43735,18 @@ namespace reference.`microsoft.graph` {
|
|
|
43053
43735
|
*/
|
|
43054
43736
|
wpaPersonal: 4,
|
|
43055
43737
|
unknownFutureValue: 5,
|
|
43738
|
+
/**
|
|
43739
|
+
* 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.
|
|
43740
|
+
*/
|
|
43741
|
+
wpa2Personal: 6,
|
|
43742
|
+
/**
|
|
43743
|
+
* 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.
|
|
43744
|
+
*/
|
|
43745
|
+
wpa3Personal: 7,
|
|
43746
|
+
/**
|
|
43747
|
+
* 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.
|
|
43748
|
+
*/
|
|
43749
|
+
wpa3Enterprise: 8,
|
|
43056
43750
|
}
|
|
43057
43751
|
|
|
43058
43752
|
/**
|
|
@@ -43209,7 +43903,6 @@ namespace reference.`microsoft.graph` {
|
|
|
43209
43903
|
/**
|
|
43210
43904
|
* Wi-Fi Security Types for AOSP Device Owner.
|
|
43211
43905
|
*/
|
|
43212
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
43213
43906
|
enum aospDeviceOwnerWiFiSecurityType {
|
|
43214
43907
|
/**
|
|
43215
43908
|
* Open (No Authentication).
|
|
@@ -43227,6 +43920,23 @@ namespace reference.`microsoft.graph` {
|
|
|
43227
43920
|
* WPA-Enterprise/WPA2-Enterprise. Must use AOSPDeviceOwnerEnterpriseWifiConfiguration type to configure enterprise options.
|
|
43228
43921
|
*/
|
|
43229
43922
|
wpaEnterprise: 4,
|
|
43923
|
+
unknownFutureValue: 5,
|
|
43924
|
+
/**
|
|
43925
|
+
* 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.
|
|
43926
|
+
*/
|
|
43927
|
+
wpa2Personal: 6,
|
|
43928
|
+
/**
|
|
43929
|
+
* 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.
|
|
43930
|
+
*/
|
|
43931
|
+
wpa2Enterprise: 7,
|
|
43932
|
+
/**
|
|
43933
|
+
* Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2.
|
|
43934
|
+
*/
|
|
43935
|
+
wpa3Personal: 8,
|
|
43936
|
+
/**
|
|
43937
|
+
* 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.
|
|
43938
|
+
*/
|
|
43939
|
+
wpa3Enterprise: 9,
|
|
43230
43940
|
}
|
|
43231
43941
|
|
|
43232
43942
|
/**
|
|
@@ -45112,6 +45822,20 @@ namespace reference.`microsoft.graph` {
|
|
|
45112
45822
|
notConfigured: 3,
|
|
45113
45823
|
}
|
|
45114
45824
|
|
|
45825
|
+
enum connectorGroupRegion {
|
|
45826
|
+
nam: 0,
|
|
45827
|
+
eur: 1,
|
|
45828
|
+
aus: 2,
|
|
45829
|
+
asia: 3,
|
|
45830
|
+
ind: 4,
|
|
45831
|
+
unknownFutureValue: 5,
|
|
45832
|
+
}
|
|
45833
|
+
|
|
45834
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
45835
|
+
enum connectorGroupType {
|
|
45836
|
+
applicationProxy: 0,
|
|
45837
|
+
}
|
|
45838
|
+
|
|
45115
45839
|
/**
|
|
45116
45840
|
* Connector health state for connector status
|
|
45117
45841
|
*/
|
|
@@ -45206,6 +45930,12 @@ namespace reference.`microsoft.graph` {
|
|
|
45206
45930
|
futureValue: 15,
|
|
45207
45931
|
}
|
|
45208
45932
|
|
|
45933
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
45934
|
+
enum connectorStatus {
|
|
45935
|
+
active: 0,
|
|
45936
|
+
inactive: 1,
|
|
45937
|
+
}
|
|
45938
|
+
|
|
45209
45939
|
enum continuousAccessEvaluationMode {
|
|
45210
45940
|
strictEnforcement: 0,
|
|
45211
45941
|
disabled: 1,
|
|
@@ -49632,6 +50362,12 @@ namespace reference.`microsoft.graph` {
|
|
|
49632
50362
|
all: 2,
|
|
49633
50363
|
}
|
|
49634
50364
|
|
|
50365
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
50366
|
+
enum externalAuthenticationType {
|
|
50367
|
+
passthru: 0,
|
|
50368
|
+
aadPreAuthentication: 1,
|
|
50369
|
+
}
|
|
50370
|
+
|
|
49635
50371
|
enum externalEmailOtpState {
|
|
49636
50372
|
default: 0,
|
|
49637
50373
|
enabled: 1,
|
|
@@ -50737,6 +51473,15 @@ namespace reference.`microsoft.graph` {
|
|
|
50737
51473
|
hybridAzureADJoined: 3,
|
|
50738
51474
|
}
|
|
50739
51475
|
|
|
51476
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
51477
|
+
enum kerberosSignOnMappingAttributeType {
|
|
51478
|
+
userPrincipalName: 0,
|
|
51479
|
+
onPremisesUserPrincipalName: 1,
|
|
51480
|
+
userPrincipalUsername: 2,
|
|
51481
|
+
onPremisesUserPrincipalUsername: 3,
|
|
51482
|
+
onPremisesSAMAccountName: 4,
|
|
51483
|
+
}
|
|
51484
|
+
|
|
50740
51485
|
/**
|
|
50741
51486
|
* Key Size Options.
|
|
50742
51487
|
*/
|
|
@@ -50845,6 +51590,16 @@ namespace reference.`microsoft.graph` {
|
|
|
50845
51590
|
unknownFutureValue: 3,
|
|
50846
51591
|
}
|
|
50847
51592
|
|
|
51593
|
+
enum languageProficiencyLevel {
|
|
51594
|
+
elementary: 0,
|
|
51595
|
+
conversational: 1,
|
|
51596
|
+
limitedWorking: 2,
|
|
51597
|
+
professionalWorking: 3,
|
|
51598
|
+
fullProfessional: 4,
|
|
51599
|
+
nativeOrBilingual: 5,
|
|
51600
|
+
unknownFutureValue: 6,
|
|
51601
|
+
}
|
|
51602
|
+
|
|
50848
51603
|
/**
|
|
50849
51604
|
* Possible values for LanManagerAuthenticationLevel
|
|
50850
51605
|
*/
|
|
@@ -51820,6 +52575,25 @@ namespace reference.`microsoft.graph` {
|
|
|
51820
52575
|
alphanumericAndSymbol: 1,
|
|
51821
52576
|
}
|
|
51822
52577
|
|
|
52578
|
+
/**
|
|
52579
|
+
* Specifies whether Microsoft Purview Data Loss Prevention (DLP) content evaluation is required before data sharing.
|
|
52580
|
+
*/
|
|
52581
|
+
enum managedAppPurviewEvaluationRequirement {
|
|
52582
|
+
/**
|
|
52583
|
+
* Microsoft Purview Data Loss Prevention (DLP) content evaluation is not required.
|
|
52584
|
+
*/
|
|
52585
|
+
notRequired: 0,
|
|
52586
|
+
/**
|
|
52587
|
+
* Microsoft Purview Data Loss Prevention (DLP) content evaluation is required when online; sharing is allowed if the service is unreachable.
|
|
52588
|
+
*/
|
|
52589
|
+
requiredWhenOnline: 1,
|
|
52590
|
+
/**
|
|
52591
|
+
* Microsoft Purview Data Loss Prevention (DLP) content evaluation is always required; sharing is blocked if the service is unreachable.
|
|
52592
|
+
*/
|
|
52593
|
+
required: 2,
|
|
52594
|
+
unknownFutureValue: 3,
|
|
52595
|
+
}
|
|
52596
|
+
|
|
51823
52597
|
/**
|
|
51824
52598
|
* An admin initiated action to be applied on a managed app.
|
|
51825
52599
|
*/
|
|
@@ -53098,6 +53872,17 @@ namespace reference.`microsoft.graph` {
|
|
|
53098
53872
|
unknownFutureValue: 3,
|
|
53099
53873
|
}
|
|
53100
53874
|
|
|
53875
|
+
enum onPremisesPublishingType {
|
|
53876
|
+
applicationProxy: 0,
|
|
53877
|
+
exchangeOnline: 1,
|
|
53878
|
+
authentication: 2,
|
|
53879
|
+
provisioning: 3,
|
|
53880
|
+
intunePfx: 4,
|
|
53881
|
+
oflineDomainJoin: 5,
|
|
53882
|
+
unknownFutureValue: 6,
|
|
53883
|
+
privateAccess: 7,
|
|
53884
|
+
}
|
|
53885
|
+
|
|
53101
53886
|
/**
|
|
53102
53887
|
* Work From Anywhere windows device upgrade eligibility status.
|
|
53103
53888
|
*/
|
|
@@ -53169,6 +53954,18 @@ namespace reference.`microsoft.graph` {
|
|
|
53169
53954
|
* Default. Indicates that the configured policy type is unknown. Not a valid policy type in an OperationApprovalPolicy.
|
|
53170
53955
|
*/
|
|
53171
53956
|
`unknown`: 0,
|
|
53957
|
+
/**
|
|
53958
|
+
* Indicates that the configured policy type is for a Device Wipe Action.
|
|
53959
|
+
*/
|
|
53960
|
+
deviceWipe: 2,
|
|
53961
|
+
/**
|
|
53962
|
+
* Indicates that the configured policy type is for a Device Retire Action
|
|
53963
|
+
*/
|
|
53964
|
+
deviceRetire: 3,
|
|
53965
|
+
/**
|
|
53966
|
+
* Indicates that the configured policy type is for a Device Delete Action.
|
|
53967
|
+
*/
|
|
53968
|
+
deviceDelete: 5,
|
|
53172
53969
|
/**
|
|
53173
53970
|
* Indicates that the configured policy type is an application type, such as mobile apps or built-in apps.
|
|
53174
53971
|
*/
|
|
@@ -53182,6 +53979,10 @@ namespace reference.`microsoft.graph` {
|
|
|
53182
53979
|
*/
|
|
53183
53980
|
role: 18,
|
|
53184
53981
|
unknownFutureValue: 21,
|
|
53982
|
+
/**
|
|
53983
|
+
* Indicates that the configured policy type is for Tenant Configuration operations.
|
|
53984
|
+
*/
|
|
53985
|
+
tenantConfiguration: 28,
|
|
53185
53986
|
}
|
|
53186
53987
|
|
|
53187
53988
|
/**
|
|
@@ -53468,6 +54269,33 @@ namespace reference.`microsoft.graph` {
|
|
|
53468
54269
|
allowedApps: 2,
|
|
53469
54270
|
}
|
|
53470
54271
|
|
|
54272
|
+
enum personAnnualEventType {
|
|
54273
|
+
birthday: 0,
|
|
54274
|
+
wedding: 1,
|
|
54275
|
+
work: 2,
|
|
54276
|
+
other: 3,
|
|
54277
|
+
unknownFutureValue: 5,
|
|
54278
|
+
}
|
|
54279
|
+
|
|
54280
|
+
enum personRelationship {
|
|
54281
|
+
manager: 0,
|
|
54282
|
+
colleague: 1,
|
|
54283
|
+
directReport: 2,
|
|
54284
|
+
dotLineReport: 3,
|
|
54285
|
+
assistant: 4,
|
|
54286
|
+
dotLineManager: 5,
|
|
54287
|
+
alternateContact: 6,
|
|
54288
|
+
friend: 7,
|
|
54289
|
+
spouse: 8,
|
|
54290
|
+
sibling: 9,
|
|
54291
|
+
child: 10,
|
|
54292
|
+
parent: 11,
|
|
54293
|
+
sponsor: 12,
|
|
54294
|
+
emergencyContact: 13,
|
|
54295
|
+
other: 14,
|
|
54296
|
+
unknownFutureValue: 15,
|
|
54297
|
+
}
|
|
54298
|
+
|
|
53471
54299
|
enum perUserMfaState {
|
|
53472
54300
|
disabled: 0,
|
|
53473
54301
|
enforced: 1,
|
|
@@ -53742,6 +54570,23 @@ namespace reference.`microsoft.graph` {
|
|
|
53742
54570
|
notAllowed: 3,
|
|
53743
54571
|
}
|
|
53744
54572
|
|
|
54573
|
+
enum privateNetworkDestinationType {
|
|
54574
|
+
ipAddress: 0,
|
|
54575
|
+
ipRange: 1,
|
|
54576
|
+
ipRangeCidr: 2,
|
|
54577
|
+
fqdn: 3,
|
|
54578
|
+
dnsSuffix: 4,
|
|
54579
|
+
unknownFutureValue: 5,
|
|
54580
|
+
servicePrincipalName: 6,
|
|
54581
|
+
}
|
|
54582
|
+
|
|
54583
|
+
@graphFlags
|
|
54584
|
+
enum privateNetworkProtocol {
|
|
54585
|
+
tcp: 1,
|
|
54586
|
+
udp: 2,
|
|
54587
|
+
unknownFutureValue: 4,
|
|
54588
|
+
}
|
|
54589
|
+
|
|
53745
54590
|
/**
|
|
53746
54591
|
* Indicates the type of elevation occured
|
|
53747
54592
|
*/
|
|
@@ -55287,6 +56132,12 @@ namespace reference.`microsoft.graph` {
|
|
|
55287
56132
|
unknownFutureValue: 3,
|
|
55288
56133
|
}
|
|
55289
56134
|
|
|
56135
|
+
enum sensorStatus {
|
|
56136
|
+
active: 0,
|
|
56137
|
+
inactive: 1,
|
|
56138
|
+
unknownFutureValue: 2,
|
|
56139
|
+
}
|
|
56140
|
+
|
|
55290
56141
|
/**
|
|
55291
56142
|
* Status of ServiceNow Connection
|
|
55292
56143
|
*/
|
|
@@ -55410,6 +56261,16 @@ namespace reference.`microsoft.graph` {
|
|
|
55410
56261
|
hours: 1,
|
|
55411
56262
|
}
|
|
55412
56263
|
|
|
56264
|
+
enum singleSignOnMode {
|
|
56265
|
+
none: 0,
|
|
56266
|
+
onPremisesKerberos: 1,
|
|
56267
|
+
saml: 3,
|
|
56268
|
+
pingHeaderBased: 4,
|
|
56269
|
+
aadHeaderBased: 5,
|
|
56270
|
+
oAuthToken: 6,
|
|
56271
|
+
unknownFutureValue: 7,
|
|
56272
|
+
}
|
|
56273
|
+
|
|
55413
56274
|
/**
|
|
55414
56275
|
* Possible values for site security level.
|
|
55415
56276
|
*/
|
|
@@ -55441,6 +56302,25 @@ namespace reference.`microsoft.graph` {
|
|
|
55441
56302
|
high: 5,
|
|
55442
56303
|
}
|
|
55443
56304
|
|
|
56305
|
+
enum skillProficiencyLevel {
|
|
56306
|
+
elementary: 0,
|
|
56307
|
+
limitedWorking: 1,
|
|
56308
|
+
generalProfessional: 2,
|
|
56309
|
+
advancedProfessional: 3,
|
|
56310
|
+
expert: 4,
|
|
56311
|
+
unknownFutureValue: 5,
|
|
56312
|
+
}
|
|
56313
|
+
|
|
56314
|
+
enum stagedFeatureName {
|
|
56315
|
+
passthroughAuthentication: 0,
|
|
56316
|
+
seamlessSso: 1,
|
|
56317
|
+
passwordHashSync: 2,
|
|
56318
|
+
emailAsAlternateId: 3,
|
|
56319
|
+
unknownFutureValue: 4,
|
|
56320
|
+
certificateBasedAuthentication: 5,
|
|
56321
|
+
multiFactorAuthentication: 6,
|
|
56322
|
+
}
|
|
56323
|
+
|
|
55444
56324
|
/**
|
|
55445
56325
|
* State Management Setting.
|
|
55446
56326
|
*/
|
|
@@ -55616,6 +56496,21 @@ namespace reference.`microsoft.graph` {
|
|
|
55616
56496
|
NPSExtension: 5,
|
|
55617
56497
|
}
|
|
55618
56498
|
|
|
56499
|
+
enum trafficRoutingMethod {
|
|
56500
|
+
none: 0,
|
|
56501
|
+
random: 1,
|
|
56502
|
+
sessionPersistence: 2,
|
|
56503
|
+
performance: 3,
|
|
56504
|
+
unknownFutureValue: 4,
|
|
56505
|
+
}
|
|
56506
|
+
|
|
56507
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
56508
|
+
enum translationBehavior {
|
|
56509
|
+
Ask: 0,
|
|
56510
|
+
Yes: 1,
|
|
56511
|
+
No: 2,
|
|
56512
|
+
}
|
|
56513
|
+
|
|
55619
56514
|
/**
|
|
55620
56515
|
* Possible values for automatic update classification.
|
|
55621
56516
|
*/
|
|
@@ -55979,6 +56874,15 @@ namespace reference.`microsoft.graph` {
|
|
|
55979
56874
|
samAccountName: 2,
|
|
55980
56875
|
}
|
|
55981
56876
|
|
|
56877
|
+
enum userPersona {
|
|
56878
|
+
`unknown`: 0,
|
|
56879
|
+
externalMember: 1,
|
|
56880
|
+
externalGuest: 2,
|
|
56881
|
+
internalMember: 3,
|
|
56882
|
+
internalGuest: 4,
|
|
56883
|
+
unknownFutureValue: 5,
|
|
56884
|
+
}
|
|
56885
|
+
|
|
55982
56886
|
/**
|
|
55983
56887
|
* Supported values for the intended purpose of a user PFX certificate.
|
|
55984
56888
|
*/
|
|
@@ -56759,6 +57663,10 @@ namespace reference.`microsoft.graph` {
|
|
|
56759
57663
|
* Indicates Wi-Fi security type is associated with WPA3-Personal. Provides stronger encryption using Simultaneous Authentication of Equals (SAE).
|
|
56760
57664
|
*/
|
|
56761
57665
|
wpa3Personal: 7,
|
|
57666
|
+
/**
|
|
57667
|
+
* 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.
|
|
57668
|
+
*/
|
|
57669
|
+
wpa3Enterprise: 8,
|
|
56762
57670
|
}
|
|
56763
57671
|
|
|
56764
57672
|
/**
|
|
@@ -56890,6 +57798,29 @@ namespace reference.`microsoft.graph` {
|
|
|
56890
57798
|
unknownFutureValue: 9,
|
|
56891
57799
|
}
|
|
56892
57800
|
|
|
57801
|
+
/**
|
|
57802
|
+
* Indicates whether app-in-use detection is enabled before app enforcement, and if enabled, the action to take when the app is detected to be in-use.
|
|
57803
|
+
*/
|
|
57804
|
+
enum win32LobAppInUseActionType {
|
|
57805
|
+
/**
|
|
57806
|
+
* Default. Indicates that no in-use detection will be evaluated before an app enforcement.
|
|
57807
|
+
*/
|
|
57808
|
+
notEnabled: 0,
|
|
57809
|
+
/**
|
|
57810
|
+
* Indicates that the in-use detection will occur immediately before app enforcement. Enforcement will not occur if the app is detected to be in-use, and an error status will be reported for the app.
|
|
57811
|
+
*/
|
|
57812
|
+
fail: 1,
|
|
57813
|
+
/**
|
|
57814
|
+
* Indicates that in-use detection will occur immediately before app enforcement. If the app is detected to be in-use, the processes specified in the corresponding process detection rules will be terminated, and app enforcement will commence.
|
|
57815
|
+
*/
|
|
57816
|
+
terminateWithoutUserInteraction: 2,
|
|
57817
|
+
/**
|
|
57818
|
+
* Indicates that in-use detection will occur immediately before app enforcement. If the app is detected to be in-use, the end user will be prompted according to the configured deferral and countdown settings, and the processes specified in the corresponding process detection rules will be terminated before app enforcement is commenced. If any of the processes cannot be terminated, the app will not be enforced, and an error status will be reported for the app.
|
|
57819
|
+
*/
|
|
57820
|
+
terminateWithUserInteraction: 3,
|
|
57821
|
+
unknownFutureValue: 4,
|
|
57822
|
+
}
|
|
57823
|
+
|
|
56893
57824
|
/**
|
|
56894
57825
|
* Indicates the package type of an MSI Win32LobApp.
|
|
56895
57826
|
*/
|
|
@@ -56998,6 +57929,21 @@ namespace reference.`microsoft.graph` {
|
|
|
56998
57929
|
`boolean`: 6,
|
|
56999
57930
|
}
|
|
57000
57931
|
|
|
57932
|
+
/**
|
|
57933
|
+
* A list of possible operations for rules used to make determinations about whether an application is in-use based on process state.
|
|
57934
|
+
*/
|
|
57935
|
+
enum win32LobAppProcessOperationType {
|
|
57936
|
+
/**
|
|
57937
|
+
* Default. Not configured.
|
|
57938
|
+
*/
|
|
57939
|
+
notConfigured: 0,
|
|
57940
|
+
/**
|
|
57941
|
+
* Indicates that the rule evaluates whether the specified process exists (is running) on the device.
|
|
57942
|
+
*/
|
|
57943
|
+
exists: 1,
|
|
57944
|
+
unknownFutureValue: 2,
|
|
57945
|
+
}
|
|
57946
|
+
|
|
57001
57947
|
/**
|
|
57002
57948
|
* Contains all supported registry data detection type.
|
|
57003
57949
|
*/
|
|
@@ -57152,7 +58098,6 @@ namespace reference.`microsoft.graph` {
|
|
|
57152
58098
|
/**
|
|
57153
58099
|
* Contains rule types for Win32 LOB apps.
|
|
57154
58100
|
*/
|
|
57155
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
57156
58101
|
enum win32LobAppRuleType {
|
|
57157
58102
|
/**
|
|
57158
58103
|
* Detection rule.
|
|
@@ -57162,6 +58107,11 @@ namespace reference.`microsoft.graph` {
|
|
|
57162
58107
|
* Requirement rule.
|
|
57163
58108
|
*/
|
|
57164
58109
|
requirement: 1,
|
|
58110
|
+
/**
|
|
58111
|
+
* Indicates that the associated rule represents an executable for app in-use detection.
|
|
58112
|
+
*/
|
|
58113
|
+
inUse: 2,
|
|
58114
|
+
unknownFutureValue: 3,
|
|
57165
58115
|
}
|
|
57166
58116
|
|
|
57167
58117
|
/**
|