@microsoft/typespec-msgraph-reference 1.0.5 → 1.0.7
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 +19 -19
- package/.rush/temp/shrinkwrap-deps.json +10 -10
- package/CHANGELOG.md +18 -0
- package/lib/Bleu/Beta/main.tsp +235 -6
- package/lib/Bleu/V1.0/main.tsp +672 -12
- package/lib/Delos/Beta/main.tsp +3542 -22
- package/lib/Delos/V1.0/main.tsp +2963 -38
- package/lib/Fairfax/Beta/main.tsp +360 -5
- package/lib/Fairfax/V1.0/main.tsp +325 -25
- package/lib/GovSG/Beta/main.tsp +1 -0
- package/lib/GovSG/V1.0/main.tsp +29 -1
- package/lib/Mooncake/Beta/main.tsp +209 -4
- package/lib/Mooncake/V1.0/main.tsp +122 -1
- package/lib/Prod/Beta/main.tsp +1550 -175
- package/lib/Prod/V1.0/main.tsp +3736 -84
- package/lib/USNat/Beta/main.tsp +375 -2
- package/lib/USNat/V1.0/main.tsp +317 -22
- package/lib/USSec/Beta/main.tsp +392 -2
- package/lib/USSec/V1.0/main.tsp +317 -22
- package/package.json +2 -2
|
@@ -257,12 +257,44 @@ namespace reference.`microsoft.graph` {
|
|
|
257
257
|
blueprintId: string | null;
|
|
258
258
|
}
|
|
259
259
|
|
|
260
|
+
@complex model aiInteractionAttachment {
|
|
261
|
+
attachmentId: string | null;
|
|
262
|
+
content: string | null;
|
|
263
|
+
contentType: string | null;
|
|
264
|
+
contentUrl: string | null;
|
|
265
|
+
name: string | null;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
@complex model aiInteractionContext {
|
|
269
|
+
contextReference: string | null;
|
|
270
|
+
contextType: string | null;
|
|
271
|
+
displayName: string | null;
|
|
272
|
+
}
|
|
273
|
+
|
|
260
274
|
@complex model aiInteractionEntity {
|
|
261
275
|
identifier: string | null;
|
|
262
276
|
name: string | null;
|
|
263
277
|
version: string | null;
|
|
264
278
|
}
|
|
265
279
|
|
|
280
|
+
@complex model aiInteractionLink {
|
|
281
|
+
displayName: string | null;
|
|
282
|
+
linkType: string | null;
|
|
283
|
+
linkUrl: string | null;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
@complex model aiInteractionMention {
|
|
287
|
+
mentioned: aiInteractionMentionedIdentitySet | null;
|
|
288
|
+
mentionId: int32 | null;
|
|
289
|
+
mentionText: string | null;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
@open
|
|
293
|
+
@complex model aiInteractionMentionedIdentitySet extends identitySet {
|
|
294
|
+
conversation: teamworkConversationIdentity | null;
|
|
295
|
+
tag: teamworkTagIdentity | null;
|
|
296
|
+
}
|
|
297
|
+
|
|
266
298
|
@complex model aiInteractionPlugin extends aiInteractionEntity {
|
|
267
299
|
}
|
|
268
300
|
|
|
@@ -304,6 +336,9 @@ namespace reference.`microsoft.graph` {
|
|
|
304
336
|
@complex model allDevicesAssignmentTarget extends deviceAndAppManagementAssignmentTarget {
|
|
305
337
|
}
|
|
306
338
|
|
|
339
|
+
@complex model allDomains extends validatingDomains {
|
|
340
|
+
}
|
|
341
|
+
|
|
307
342
|
/**
|
|
308
343
|
* Represents an assignment to all licensed users in the tenant.
|
|
309
344
|
*/
|
|
@@ -564,6 +599,11 @@ namespace reference.`microsoft.graph` {
|
|
|
564
599
|
skuId: guid | null;
|
|
565
600
|
}
|
|
566
601
|
|
|
602
|
+
@complex model assignedPlaceMode extends placeMode {
|
|
603
|
+
assignedUserEmailAddress: string | null;
|
|
604
|
+
assignedUserId: string | null;
|
|
605
|
+
}
|
|
606
|
+
|
|
567
607
|
@complex model assignedPlan {
|
|
568
608
|
assignedDateTime: offsetDateTime | null;
|
|
569
609
|
capabilityStatus: string | null;
|
|
@@ -761,6 +801,13 @@ namespace reference.`microsoft.graph` {
|
|
|
761
801
|
authenticationContextValue: string | null;
|
|
762
802
|
}
|
|
763
803
|
|
|
804
|
+
@complex model authenticationAppDeviceDetails {
|
|
805
|
+
appVersion: string | null;
|
|
806
|
+
clientApp: string | null;
|
|
807
|
+
deviceId: string | null;
|
|
808
|
+
operatingSystem: string | null;
|
|
809
|
+
}
|
|
810
|
+
|
|
764
811
|
@complex model authenticationBehaviors {
|
|
765
812
|
blockAzureADGraphAccess: boolean | null;
|
|
766
813
|
removeUnverifiedEmailClaim: boolean | null;
|
|
@@ -2464,6 +2511,9 @@ namespace reference.`microsoft.graph` {
|
|
|
2464
2511
|
objectId: string | null;
|
|
2465
2512
|
}
|
|
2466
2513
|
|
|
2514
|
+
@complex model dropInPlaceMode extends placeMode {
|
|
2515
|
+
}
|
|
2516
|
+
|
|
2467
2517
|
/**
|
|
2468
2518
|
* Allows IT admins to set a predefined default search engine for MDM-Controlled devices.
|
|
2469
2519
|
*/
|
|
@@ -2520,6 +2570,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2520
2570
|
users: string[] | null;
|
|
2521
2571
|
}
|
|
2522
2572
|
|
|
2573
|
+
@complex model enumeratedDomains extends validatingDomains {
|
|
2574
|
+
domainNames: string[];
|
|
2575
|
+
}
|
|
2576
|
+
|
|
2523
2577
|
@complex model enumeratedScopes extends inheritableScopes {
|
|
2524
2578
|
scopes: string[];
|
|
2525
2579
|
}
|
|
@@ -2839,6 +2893,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2839
2893
|
enableIdTokenIssuance: boolean | null;
|
|
2840
2894
|
}
|
|
2841
2895
|
|
|
2896
|
+
@complex model importBuildingMapSetting {
|
|
2897
|
+
isDryRun: boolean;
|
|
2898
|
+
}
|
|
2899
|
+
|
|
2842
2900
|
@complex model importedWindowsAutopilotDeviceIdentityState {
|
|
2843
2901
|
/**
|
|
2844
2902
|
* Device error code reported by Device Directory Service(DDS).
|
|
@@ -3558,6 +3616,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3558
3616
|
v13_0: boolean;
|
|
3559
3617
|
}
|
|
3560
3618
|
|
|
3619
|
+
@complex model mailboxDetails {
|
|
3620
|
+
emailAddress: string | null;
|
|
3621
|
+
externalDirectoryObjectId: string | null;
|
|
3622
|
+
}
|
|
3623
|
+
|
|
3561
3624
|
@complex model mailboxSettings {
|
|
3562
3625
|
archiveFolder: string | null;
|
|
3563
3626
|
automaticRepliesSetting: automaticRepliesSetting | null;
|
|
@@ -4162,6 +4225,7 @@ namespace reference.`microsoft.graph` {
|
|
|
4162
4225
|
}
|
|
4163
4226
|
|
|
4164
4227
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
4228
|
+
allowOnPremUpdateOfOnPremisesObjectIdentifierEnabled: boolean | null;
|
|
4165
4229
|
blockCloudObjectTakeoverThroughHardMatchEnabled: boolean | null;
|
|
4166
4230
|
blockSoftMatchEnabled: boolean | null;
|
|
4167
4231
|
bypassDirSyncOverridesEnabled: boolean | null;
|
|
@@ -4436,6 +4500,10 @@ namespace reference.`microsoft.graph` {
|
|
|
4436
4500
|
street: string | null;
|
|
4437
4501
|
}
|
|
4438
4502
|
|
|
4503
|
+
@abstract
|
|
4504
|
+
@complex model placeMode {
|
|
4505
|
+
}
|
|
4506
|
+
|
|
4439
4507
|
@open
|
|
4440
4508
|
@complex model plannerAppliedCategories {
|
|
4441
4509
|
}
|
|
@@ -5061,6 +5129,9 @@ namespace reference.`microsoft.graph` {
|
|
|
5061
5129
|
resourceAppId: string;
|
|
5062
5130
|
}
|
|
5063
5131
|
|
|
5132
|
+
@complex model reservablePlaceMode extends placeMode {
|
|
5133
|
+
}
|
|
5134
|
+
|
|
5064
5135
|
/**
|
|
5065
5136
|
* Reset passcode action result
|
|
5066
5137
|
*/
|
|
@@ -5109,6 +5180,12 @@ namespace reference.`microsoft.graph` {
|
|
|
5109
5180
|
@complex model resourceData {
|
|
5110
5181
|
}
|
|
5111
5182
|
|
|
5183
|
+
@complex model resourceLink {
|
|
5184
|
+
linkType: resourceLinkType;
|
|
5185
|
+
name: string | null;
|
|
5186
|
+
value: string | null;
|
|
5187
|
+
}
|
|
5188
|
+
|
|
5112
5189
|
@complex model resourcePermission {
|
|
5113
5190
|
type: string;
|
|
5114
5191
|
value: string;
|
|
@@ -5748,6 +5825,9 @@ namespace reference.`microsoft.graph` {
|
|
|
5748
5825
|
tabId: string | null;
|
|
5749
5826
|
}
|
|
5750
5827
|
|
|
5828
|
+
@complex model targetAgentIdentitySponsorsOrOwners extends subjectSet {
|
|
5829
|
+
}
|
|
5830
|
+
|
|
5751
5831
|
@complex model targetApplicationOwners extends subjectSet {
|
|
5752
5832
|
}
|
|
5753
5833
|
|
|
@@ -6073,6 +6153,10 @@ namespace reference.`microsoft.graph` {
|
|
|
6073
6153
|
tone: tone;
|
|
6074
6154
|
}
|
|
6075
6155
|
|
|
6156
|
+
@complex model unavailablePlaceMode extends placeMode {
|
|
6157
|
+
reason: string | null;
|
|
6158
|
+
}
|
|
6159
|
+
|
|
6076
6160
|
@complex model unifiedApprovalStage {
|
|
6077
6161
|
approvalStageTimeOutInDays: int32 | null;
|
|
6078
6162
|
escalationApprovers: subjectSet[] | null;
|
|
@@ -6350,10 +6434,9 @@ namespace reference.`microsoft.graph` {
|
|
|
6350
6434
|
userId: string | null;
|
|
6351
6435
|
}
|
|
6352
6436
|
|
|
6353
|
-
@
|
|
6354
|
-
|
|
6355
|
-
|
|
6356
|
-
workLocationType: workLocationType;
|
|
6437
|
+
@abstract
|
|
6438
|
+
@complex model validatingDomains {
|
|
6439
|
+
rootDomains: rootDomains;
|
|
6357
6440
|
}
|
|
6358
6441
|
|
|
6359
6442
|
@complex model verifiedDomain {
|
|
@@ -7593,6 +7676,30 @@ namespace reference.`microsoft.graph` {
|
|
|
7593
7676
|
@entity model agreementFileVersion extends agreementFileProperties {
|
|
7594
7677
|
}
|
|
7595
7678
|
|
|
7679
|
+
@entity model aiInteraction extends entity {
|
|
7680
|
+
appClass: string;
|
|
7681
|
+
attachments: aiInteractionAttachment[] | null;
|
|
7682
|
+
body: itemBody | null;
|
|
7683
|
+
contexts: aiInteractionContext[] | null;
|
|
7684
|
+
conversationType: string | null;
|
|
7685
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
7686
|
+
etag: string | null;
|
|
7687
|
+
from: identitySet;
|
|
7688
|
+
interactionType: aiInteractionType;
|
|
7689
|
+
links: aiInteractionLink[] | null;
|
|
7690
|
+
locale: string;
|
|
7691
|
+
mentions: aiInteractionMention[] | null;
|
|
7692
|
+
requestId: string;
|
|
7693
|
+
sessionId: string;
|
|
7694
|
+
}
|
|
7695
|
+
|
|
7696
|
+
@entity model aiInteractionHistory extends entity {
|
|
7697
|
+
}
|
|
7698
|
+
|
|
7699
|
+
@entity model aiUser extends entity {
|
|
7700
|
+
@contains interactionHistory: aiInteractionHistory | null;
|
|
7701
|
+
}
|
|
7702
|
+
|
|
7596
7703
|
@graphDeprecated("Deprecation")
|
|
7597
7704
|
@open
|
|
7598
7705
|
@entity model alert extends entity {
|
|
@@ -8676,6 +8783,11 @@ namespace reference.`microsoft.graph` {
|
|
|
8676
8783
|
publication: publicationFacet | null;
|
|
8677
8784
|
}
|
|
8678
8785
|
|
|
8786
|
+
@abstract
|
|
8787
|
+
@entity model baseMapFeature extends entity {
|
|
8788
|
+
properties: string | null;
|
|
8789
|
+
}
|
|
8790
|
+
|
|
8679
8791
|
@entity model baseSitePage extends baseItem {
|
|
8680
8792
|
pageLayout: pageLayoutType | null;
|
|
8681
8793
|
publishingState: publicationFacet | null;
|
|
@@ -8879,6 +8991,18 @@ namespace reference.`microsoft.graph` {
|
|
|
8879
8991
|
@entity model bookingStaffMemberBase extends entity {
|
|
8880
8992
|
}
|
|
8881
8993
|
|
|
8994
|
+
@entity model building extends place {
|
|
8995
|
+
resourceLinks: resourceLink[];
|
|
8996
|
+
wifiState: placeFeatureEnablement;
|
|
8997
|
+
@contains map: buildingMap | null;
|
|
8998
|
+
}
|
|
8999
|
+
|
|
9000
|
+
@entity model buildingMap extends baseMapFeature {
|
|
9001
|
+
placeId: string | null;
|
|
9002
|
+
@contains footprints: footprintMap[];
|
|
9003
|
+
@contains levels: levelMap[];
|
|
9004
|
+
}
|
|
9005
|
+
|
|
8882
9006
|
@entity model bulkUpload extends entity {
|
|
8883
9007
|
}
|
|
8884
9008
|
|
|
@@ -9079,6 +9203,12 @@ namespace reference.`microsoft.graph` {
|
|
|
9079
9203
|
messageType: chatMessageType;
|
|
9080
9204
|
}
|
|
9081
9205
|
|
|
9206
|
+
@entity model checkInClaim extends MsGraph.SharedModels.entity {
|
|
9207
|
+
@computed @key calendarEventId: string;
|
|
9208
|
+
checkInMethod: checkInMethod;
|
|
9209
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
9210
|
+
}
|
|
9211
|
+
|
|
9082
9212
|
@entity model checklistItem extends entity {
|
|
9083
9213
|
checkedDateTime: offsetDateTime | null;
|
|
9084
9214
|
@computed createdDateTime: offsetDateTime;
|
|
@@ -9206,6 +9336,13 @@ namespace reference.`microsoft.graph` {
|
|
|
9206
9336
|
@entity model cloudPcReport extends entity {
|
|
9207
9337
|
}
|
|
9208
9338
|
|
|
9339
|
+
@entity model cloudPcServicePlan extends entity {
|
|
9340
|
+
displayName: string;
|
|
9341
|
+
ramInGB: int32;
|
|
9342
|
+
storageInGB: int32;
|
|
9343
|
+
vCpuCount: int32;
|
|
9344
|
+
}
|
|
9345
|
+
|
|
9209
9346
|
@entity model cloudPcUserSetting extends entity {
|
|
9210
9347
|
@computed createdDateTime: offsetDateTime | null;
|
|
9211
9348
|
displayName: string | null;
|
|
@@ -9476,6 +9613,11 @@ namespace reference.`microsoft.graph` {
|
|
|
9476
9613
|
@contains posts: post[];
|
|
9477
9614
|
}
|
|
9478
9615
|
|
|
9616
|
+
@entity model copilotRoot extends MsGraph.SharedModels.entity {
|
|
9617
|
+
@contains interactionHistory: aiInteractionHistory | null;
|
|
9618
|
+
@contains users: aiUser[];
|
|
9619
|
+
}
|
|
9620
|
+
|
|
9479
9621
|
@entity model countryNamedLocation extends namedLocation {
|
|
9480
9622
|
countriesAndRegions: string[];
|
|
9481
9623
|
countryLookupMethod: countryLookupMethodType | null;
|
|
@@ -9671,6 +9813,13 @@ namespace reference.`microsoft.graph` {
|
|
|
9671
9813
|
@contains channels: channel[];
|
|
9672
9814
|
}
|
|
9673
9815
|
|
|
9816
|
+
@entity model desk extends place {
|
|
9817
|
+
displayDeviceName: string | null;
|
|
9818
|
+
heightAdjustableState: placeFeatureEnablement;
|
|
9819
|
+
mailboxDetails: mailboxDetails | null;
|
|
9820
|
+
mode: placeMode | null;
|
|
9821
|
+
}
|
|
9822
|
+
|
|
9674
9823
|
/**
|
|
9675
9824
|
* A managed or unmanaged app that is installed on a managed device. Unmanaged apps will only appear for devices marked as corporate owned.
|
|
9676
9825
|
*/
|
|
@@ -11576,7 +11725,11 @@ namespace reference.`microsoft.graph` {
|
|
|
11576
11725
|
description: string | null;
|
|
11577
11726
|
issuer: string;
|
|
11578
11727
|
name: string;
|
|
11579
|
-
subject: string;
|
|
11728
|
+
subject: string | null;
|
|
11729
|
+
}
|
|
11730
|
+
|
|
11731
|
+
@entity model federatedTokenValidationPolicy extends directoryObject {
|
|
11732
|
+
validatingDomains: validatingDomains;
|
|
11580
11733
|
}
|
|
11581
11734
|
|
|
11582
11735
|
@entity model fido2AuthenticationMethod extends authenticationMethod {
|
|
@@ -11675,6 +11828,17 @@ namespace reference.`microsoft.graph` {
|
|
|
11675
11828
|
supportedAttributeTypes: attributeType[];
|
|
11676
11829
|
}
|
|
11677
11830
|
|
|
11831
|
+
@entity model fixtureMap extends baseMapFeature {
|
|
11832
|
+
placeId: string | null;
|
|
11833
|
+
}
|
|
11834
|
+
|
|
11835
|
+
@entity model floor extends place {
|
|
11836
|
+
sortOrder: int32 | null;
|
|
11837
|
+
}
|
|
11838
|
+
|
|
11839
|
+
@entity model footprintMap extends baseMapFeature {
|
|
11840
|
+
}
|
|
11841
|
+
|
|
11678
11842
|
@abstract
|
|
11679
11843
|
@entity model governanceInsight extends entity {
|
|
11680
11844
|
insightCreatedDateTime: offsetDateTime | null;
|
|
@@ -11682,6 +11846,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11682
11846
|
|
|
11683
11847
|
@open
|
|
11684
11848
|
@entity model group extends directoryObject {
|
|
11849
|
+
accessType: groupAccessType | null;
|
|
11685
11850
|
allowExternalSenders: boolean | null;
|
|
11686
11851
|
assignedLabels: assignedLabel[] | null;
|
|
11687
11852
|
assignedLicenses: assignedLicense[] | null;
|
|
@@ -11698,6 +11863,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11698
11863
|
infoCatalogs: string[];
|
|
11699
11864
|
isArchived: boolean | null;
|
|
11700
11865
|
isAssignableToRole: boolean | null;
|
|
11866
|
+
isFavorite: boolean | null;
|
|
11701
11867
|
isManagementRestricted: boolean | null;
|
|
11702
11868
|
isSubscribedByMail: boolean | null;
|
|
11703
11869
|
licenseProcessingState: licenseProcessingState | null;
|
|
@@ -11725,7 +11891,9 @@ namespace reference.`microsoft.graph` {
|
|
|
11725
11891
|
serviceProvisioningErrors: serviceProvisioningError[] | null;
|
|
11726
11892
|
theme: string | null;
|
|
11727
11893
|
uniqueName: string | null;
|
|
11894
|
+
unseenConversationsCount: int32 | null;
|
|
11728
11895
|
unseenCount: int32 | null;
|
|
11896
|
+
unseenMessagesCount: int32 | null;
|
|
11729
11897
|
visibility: string | null;
|
|
11730
11898
|
welcomeMessageEnabled: boolean | null;
|
|
11731
11899
|
@contains acceptedSenders: directoryObject[];
|
|
@@ -12918,6 +13086,13 @@ namespace reference.`microsoft.graph` {
|
|
|
12918
13086
|
rights: usageRights;
|
|
12919
13087
|
}
|
|
12920
13088
|
|
|
13089
|
+
@entity model levelMap extends baseMapFeature {
|
|
13090
|
+
placeId: string | null;
|
|
13091
|
+
@contains fixtures: fixtureMap[];
|
|
13092
|
+
@contains sections: sectionMap[];
|
|
13093
|
+
@contains units: unitMap[];
|
|
13094
|
+
}
|
|
13095
|
+
|
|
12921
13096
|
@entity model licenseDetails extends entity {
|
|
12922
13097
|
servicePlans: servicePlanInfo[];
|
|
12923
13098
|
skuId: guid | null;
|
|
@@ -12941,6 +13116,7 @@ namespace reference.`microsoft.graph` {
|
|
|
12941
13116
|
@contains drive: drive | null;
|
|
12942
13117
|
@contains items: listItem[];
|
|
12943
13118
|
@contains operations: richLongRunningOperation[];
|
|
13119
|
+
@contains permissions: permission[];
|
|
12944
13120
|
@contains subscriptions: subscription[];
|
|
12945
13121
|
}
|
|
12946
13122
|
|
|
@@ -12952,6 +13128,7 @@ namespace reference.`microsoft.graph` {
|
|
|
12952
13128
|
@contains documentSetVersions: documentSetVersion[];
|
|
12953
13129
|
@contains driveItem: driveItem | null;
|
|
12954
13130
|
@contains fields: fieldValueSet | null;
|
|
13131
|
+
@contains permissions: permission[];
|
|
12955
13132
|
@contains versions: listItemVersion[];
|
|
12956
13133
|
}
|
|
12957
13134
|
|
|
@@ -15013,7 +15190,12 @@ namespace reference.`microsoft.graph` {
|
|
|
15013
15190
|
address: physicalAddress | null;
|
|
15014
15191
|
displayName: string;
|
|
15015
15192
|
geoCoordinates: outlookGeoCoordinates | null;
|
|
15193
|
+
isWheelChairAccessible: boolean | null;
|
|
15194
|
+
label: string | null;
|
|
15195
|
+
parentId: string | null;
|
|
15016
15196
|
phone: string | null;
|
|
15197
|
+
tags: string[];
|
|
15198
|
+
@contains checkIns: checkInClaim[];
|
|
15017
15199
|
}
|
|
15018
15200
|
|
|
15019
15201
|
@entity model planner extends entity {
|
|
@@ -15134,6 +15316,7 @@ namespace reference.`microsoft.graph` {
|
|
|
15134
15316
|
@contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
|
|
15135
15317
|
@contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
|
|
15136
15318
|
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
15319
|
+
@contains federatedTokenValidationPolicy: federatedTokenValidationPolicy | null;
|
|
15137
15320
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
15138
15321
|
@contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
|
|
15139
15322
|
@contains permissionGrantPolicies: permissionGrantPolicy[];
|
|
@@ -15164,7 +15347,6 @@ namespace reference.`microsoft.graph` {
|
|
|
15164
15347
|
activity: string | null;
|
|
15165
15348
|
availability: string | null;
|
|
15166
15349
|
statusMessage: presenceStatusMessage | null;
|
|
15167
|
-
workLocation: userWorkLocation | null;
|
|
15168
15350
|
}
|
|
15169
15351
|
|
|
15170
15352
|
@entity model print extends MsGraph.SharedModels.entity {
|
|
@@ -15702,16 +15884,16 @@ namespace reference.`microsoft.graph` {
|
|
|
15702
15884
|
emailAddress: string | null;
|
|
15703
15885
|
floorLabel: string | null;
|
|
15704
15886
|
floorNumber: int32 | null;
|
|
15705
|
-
isWheelChairAccessible: boolean | null;
|
|
15706
|
-
label: string | null;
|
|
15707
15887
|
nickname: string;
|
|
15708
|
-
|
|
15888
|
+
placeId: string | null;
|
|
15889
|
+
teamsEnabledState: placeFeatureEnablement;
|
|
15709
15890
|
videoDeviceName: string | null;
|
|
15710
15891
|
}
|
|
15711
15892
|
|
|
15712
15893
|
@entity model roomList extends place {
|
|
15713
15894
|
emailAddress: string | null;
|
|
15714
15895
|
@contains rooms: room[];
|
|
15896
|
+
@contains workspaces: workspace[];
|
|
15715
15897
|
}
|
|
15716
15898
|
|
|
15717
15899
|
@entity model samlOrWsFedExternalDomainFederation extends samlOrWsFedProvider {
|
|
@@ -15744,6 +15926,13 @@ namespace reference.`microsoft.graph` {
|
|
|
15744
15926
|
@entity model searchEntity extends entity {
|
|
15745
15927
|
}
|
|
15746
15928
|
|
|
15929
|
+
@entity model section extends place {
|
|
15930
|
+
}
|
|
15931
|
+
|
|
15932
|
+
@entity model sectionMap extends baseMapFeature {
|
|
15933
|
+
placeId: string | null;
|
|
15934
|
+
}
|
|
15935
|
+
|
|
15747
15936
|
@open
|
|
15748
15937
|
@entity model secureScore extends entity {
|
|
15749
15938
|
activeUserCount: int32 | null;
|
|
@@ -16148,23 +16337,29 @@ namespace reference.`microsoft.graph` {
|
|
|
16148
16337
|
appDisplayName: string | null;
|
|
16149
16338
|
appId: string | null;
|
|
16150
16339
|
appliedConditionalAccessPolicies: appliedConditionalAccessPolicy[] | null;
|
|
16340
|
+
authenticationAppDeviceDetails: authenticationAppDeviceDetails | null;
|
|
16151
16341
|
clientAppUsed: string | null;
|
|
16152
16342
|
conditionalAccessStatus: conditionalAccessStatus | null;
|
|
16153
16343
|
correlationId: string | null;
|
|
16154
16344
|
@computed createdDateTime: offsetDateTime;
|
|
16155
16345
|
deviceDetail: deviceDetail | null;
|
|
16346
|
+
homeTenantId: string | null;
|
|
16156
16347
|
ipAddress: string | null;
|
|
16157
16348
|
isInteractive: boolean | null;
|
|
16158
16349
|
location: signInLocation | null;
|
|
16159
16350
|
resourceDisplayName: string | null;
|
|
16160
16351
|
resourceId: string | null;
|
|
16352
|
+
resourceTenantId: string | null;
|
|
16161
16353
|
riskDetail: riskDetail | null;
|
|
16162
16354
|
riskEventTypes: riskEventType[] | null;
|
|
16163
16355
|
riskEventTypes_v2: string[] | null;
|
|
16164
16356
|
riskLevelAggregated: riskLevel | null;
|
|
16165
16357
|
riskLevelDuringSignIn: riskLevel | null;
|
|
16166
16358
|
riskState: riskState | null;
|
|
16359
|
+
servicePrincipalId: string | null;
|
|
16360
|
+
servicePrincipalName: string | null;
|
|
16167
16361
|
status: signInStatus | null;
|
|
16362
|
+
userAgent: string | null;
|
|
16168
16363
|
userDisplayName: string | null;
|
|
16169
16364
|
userId: string;
|
|
16170
16365
|
userPrincipalName: string | null;
|
|
@@ -16929,6 +17124,10 @@ namespace reference.`microsoft.graph` {
|
|
|
16929
17124
|
@references roleDefinition: unifiedRoleDefinition | null;
|
|
16930
17125
|
}
|
|
16931
17126
|
|
|
17127
|
+
@entity model unitMap extends baseMapFeature {
|
|
17128
|
+
placeId: string | null;
|
|
17129
|
+
}
|
|
17130
|
+
|
|
16932
17131
|
@open
|
|
16933
17132
|
@entity model unmuteParticipantOperation extends commsOperation {
|
|
16934
17133
|
}
|
|
@@ -18132,6 +18331,7 @@ namespace reference.`microsoft.graph` {
|
|
|
18132
18331
|
@contains onPremisesConnections: cloudPcOnPremisesConnection[];
|
|
18133
18332
|
@contains provisioningPolicies: cloudPcProvisioningPolicy[];
|
|
18134
18333
|
@contains report: cloudPcReport | null;
|
|
18334
|
+
@contains servicePlans: cloudPcServicePlan[];
|
|
18135
18335
|
@contains userSettings: cloudPcUserSetting[];
|
|
18136
18336
|
}
|
|
18137
18337
|
|
|
@@ -21046,6 +21246,15 @@ namespace reference.`microsoft.graph` {
|
|
|
21046
21246
|
protected: boolean;
|
|
21047
21247
|
}
|
|
21048
21248
|
|
|
21249
|
+
@entity model workspace extends place {
|
|
21250
|
+
capacity: int32 | null;
|
|
21251
|
+
displayDeviceName: string | null;
|
|
21252
|
+
emailAddress: string | null;
|
|
21253
|
+
mode: placeMode | null;
|
|
21254
|
+
nickname: string;
|
|
21255
|
+
placeId: string | null;
|
|
21256
|
+
}
|
|
21257
|
+
|
|
21049
21258
|
@entity model x509CertificateAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
|
|
21050
21259
|
authenticationModeConfiguration: x509CertificateAuthenticationModeConfiguration | null;
|
|
21051
21260
|
certificateAuthorityScopes: x509CertificateAuthorityScope[] | null;
|
|
@@ -21064,6 +21273,8 @@ namespace reference.`microsoft.graph` {
|
|
|
21064
21273
|
target: 1,
|
|
21065
21274
|
createdBy: 2,
|
|
21066
21275
|
unknownFutureValue: 99,
|
|
21276
|
+
targetManager: 100,
|
|
21277
|
+
targetAgentIdentitySponsorOrOwner: 101,
|
|
21067
21278
|
}
|
|
21068
21279
|
|
|
21069
21280
|
enum accessPackageAssignmentRequestFilterByCurrentUserOptions {
|
|
@@ -21071,6 +21282,10 @@ namespace reference.`microsoft.graph` {
|
|
|
21071
21282
|
createdBy: 2,
|
|
21072
21283
|
approver: 3,
|
|
21073
21284
|
unknownFutureValue: 99,
|
|
21285
|
+
targetOrRequestor: 100,
|
|
21286
|
+
targetManager: 101,
|
|
21287
|
+
requestForOthers: 102,
|
|
21288
|
+
targetAgentIdentitySponsorOrOwner: 103,
|
|
21074
21289
|
}
|
|
21075
21290
|
|
|
21076
21291
|
enum accessPackageAssignmentState {
|
|
@@ -21260,6 +21475,12 @@ namespace reference.`microsoft.graph` {
|
|
|
21260
21475
|
unknownFutureValue: 5,
|
|
21261
21476
|
}
|
|
21262
21477
|
|
|
21478
|
+
enum aiInteractionType {
|
|
21479
|
+
userPrompt: 0,
|
|
21480
|
+
aiResponse: 1,
|
|
21481
|
+
unknownFutureValue: 2,
|
|
21482
|
+
}
|
|
21483
|
+
|
|
21263
21484
|
enum alertFeedback {
|
|
21264
21485
|
`unknown`: 0,
|
|
21265
21486
|
truePositive: 1,
|
|
@@ -21296,6 +21517,7 @@ namespace reference.`microsoft.graph` {
|
|
|
21296
21517
|
allDirectoryServicePrincipals: 6,
|
|
21297
21518
|
allConfiguredConnectedOrganizationUsers: 7,
|
|
21298
21519
|
allExternalUsers: 8,
|
|
21520
|
+
allDirectoryAgentIdentities: 9,
|
|
21299
21521
|
unknownFutureValue: 10,
|
|
21300
21522
|
}
|
|
21301
21523
|
|
|
@@ -22193,6 +22415,14 @@ namespace reference.`microsoft.graph` {
|
|
|
22193
22415
|
unknownFutureValue: 3,
|
|
22194
22416
|
}
|
|
22195
22417
|
|
|
22418
|
+
enum checkInMethod {
|
|
22419
|
+
unspecified: 0,
|
|
22420
|
+
manual: 1,
|
|
22421
|
+
inferred: 2,
|
|
22422
|
+
verified: 3,
|
|
22423
|
+
unknownFutureValue: 4,
|
|
22424
|
+
}
|
|
22425
|
+
|
|
22196
22426
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
22197
22427
|
@graphFlags
|
|
22198
22428
|
enum clonableTeamParts {
|
|
@@ -23875,6 +24105,14 @@ namespace reference.`microsoft.graph` {
|
|
|
23875
24105
|
unknownFutureValue: 2,
|
|
23876
24106
|
}
|
|
23877
24107
|
|
|
24108
|
+
enum groupAccessType {
|
|
24109
|
+
none: 0,
|
|
24110
|
+
private: 1,
|
|
24111
|
+
secret: 2,
|
|
24112
|
+
public: 3,
|
|
24113
|
+
unknownFutureValue: 4,
|
|
24114
|
+
}
|
|
24115
|
+
|
|
23878
24116
|
enum groupType {
|
|
23879
24117
|
unifiedGroups: 0,
|
|
23880
24118
|
azureAD: 1,
|
|
@@ -25105,6 +25343,13 @@ namespace reference.`microsoft.graph` {
|
|
|
25105
25343
|
other: 3,
|
|
25106
25344
|
}
|
|
25107
25345
|
|
|
25346
|
+
enum placeFeatureEnablement {
|
|
25347
|
+
`unknown`: 0,
|
|
25348
|
+
enabled: 1,
|
|
25349
|
+
disabled: 2,
|
|
25350
|
+
unknownFutureValue: 3,
|
|
25351
|
+
}
|
|
25352
|
+
|
|
25108
25353
|
enum plannerContainerType {
|
|
25109
25354
|
group: 1,
|
|
25110
25355
|
unknownFutureValue: 2,
|
|
@@ -27076,6 +27321,11 @@ namespace reference.`microsoft.graph` {
|
|
|
27076
27321
|
unknownFutureValue: 8,
|
|
27077
27322
|
}
|
|
27078
27323
|
|
|
27324
|
+
enum resourceLinkType {
|
|
27325
|
+
url: 0,
|
|
27326
|
+
unknownFutureValue: 1,
|
|
27327
|
+
}
|
|
27328
|
+
|
|
27079
27329
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
27080
27330
|
enum responseType {
|
|
27081
27331
|
none: 0,
|
|
@@ -27205,6 +27455,16 @@ namespace reference.`microsoft.graph` {
|
|
|
27205
27455
|
unknownFutureValue: 4,
|
|
27206
27456
|
}
|
|
27207
27457
|
|
|
27458
|
+
enum rootDomains {
|
|
27459
|
+
none: 0,
|
|
27460
|
+
all: 1,
|
|
27461
|
+
allFederated: 2,
|
|
27462
|
+
allManaged: 3,
|
|
27463
|
+
enumerated: 4,
|
|
27464
|
+
allManagedAndEnumeratedFederated: 5,
|
|
27465
|
+
unknownFutureValue: 6,
|
|
27466
|
+
}
|
|
27467
|
+
|
|
27208
27468
|
enum routingType {
|
|
27209
27469
|
forwarded: 0,
|
|
27210
27470
|
lookup: 1,
|
|
@@ -29570,22 +29830,6 @@ namespace reference.`microsoft.graph` {
|
|
|
29570
29830
|
failed: 3,
|
|
29571
29831
|
}
|
|
29572
29832
|
|
|
29573
|
-
enum workLocationSource {
|
|
29574
|
-
none: 0,
|
|
29575
|
-
manual: 1,
|
|
29576
|
-
scheduled: 2,
|
|
29577
|
-
automatic: 3,
|
|
29578
|
-
unknownFutureValue: 4,
|
|
29579
|
-
}
|
|
29580
|
-
|
|
29581
|
-
enum workLocationType {
|
|
29582
|
-
unspecified: 0,
|
|
29583
|
-
office: 1,
|
|
29584
|
-
remote: 2,
|
|
29585
|
-
timeOff: 3,
|
|
29586
|
-
unknownFutureValue: 4,
|
|
29587
|
-
}
|
|
29588
|
-
|
|
29589
29833
|
enum x509CertificateAffinityLevel {
|
|
29590
29834
|
low: 0,
|
|
29591
29835
|
high: 1,
|
|
@@ -30299,6 +30543,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30299
30543
|
triggerAttributes: triggerAttribute[];
|
|
30300
30544
|
}
|
|
30301
30545
|
|
|
30546
|
+
@complex model countBasedQuarantineCondition extends quarantineCondition {
|
|
30547
|
+
threshold: int64;
|
|
30548
|
+
}
|
|
30549
|
+
|
|
30302
30550
|
@complex model customTaskExtensionCallbackConfiguration extends reference.`microsoft.graph`.customExtensionCallbackConfiguration {
|
|
30303
30551
|
@references authorizedApps: reference.`microsoft.graph`.application[];
|
|
30304
30552
|
}
|
|
@@ -30331,6 +30579,32 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30331
30579
|
valueType: valueType;
|
|
30332
30580
|
}
|
|
30333
30581
|
|
|
30582
|
+
@complex model percentageBasedQuarantineCondition extends quarantineCondition {
|
|
30583
|
+
percentage: int32;
|
|
30584
|
+
}
|
|
30585
|
+
|
|
30586
|
+
@complex model previewFailedTask {
|
|
30587
|
+
definitionId: string;
|
|
30588
|
+
failureReason: string;
|
|
30589
|
+
name: string;
|
|
30590
|
+
taskId: string;
|
|
30591
|
+
}
|
|
30592
|
+
|
|
30593
|
+
@abstract
|
|
30594
|
+
@complex model quarantineCondition {
|
|
30595
|
+
}
|
|
30596
|
+
|
|
30597
|
+
@complex model quarantineConfiguration {
|
|
30598
|
+
conditions: quarantineCondition[];
|
|
30599
|
+
matchMode: matchMode;
|
|
30600
|
+
}
|
|
30601
|
+
|
|
30602
|
+
@complex model quarantineDetails {
|
|
30603
|
+
quarantinedDateTime: offsetDateTime | null;
|
|
30604
|
+
quarantineReason: string | null;
|
|
30605
|
+
quarantineType: quarantineType;
|
|
30606
|
+
}
|
|
30607
|
+
|
|
30334
30608
|
@complex model ruleBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
30335
30609
|
rule: string;
|
|
30336
30610
|
}
|
|
@@ -30417,6 +30691,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30417
30691
|
@complex model workflowExecutionTrigger {
|
|
30418
30692
|
}
|
|
30419
30693
|
|
|
30694
|
+
@complex model workflowSetting {
|
|
30695
|
+
quarantineConfiguration: quarantineConfiguration | null;
|
|
30696
|
+
}
|
|
30697
|
+
|
|
30420
30698
|
@complex model workflowsInsightsByCategory {
|
|
30421
30699
|
failedJoinerRuns: int32;
|
|
30422
30700
|
failedLeaverRuns: int32;
|
|
@@ -30454,6 +30732,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30454
30732
|
|
|
30455
30733
|
@entity model lifecycleManagementSettings extends reference.`microsoft.graph`.entity {
|
|
30456
30734
|
emailSettings: reference.`microsoft.graph`.emailSettings;
|
|
30735
|
+
quarantineConfiguration: quarantineConfiguration | null;
|
|
30457
30736
|
workflowScheduleIntervalInHours: int32;
|
|
30458
30737
|
}
|
|
30459
30738
|
|
|
@@ -30511,6 +30790,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30511
30790
|
completedDateTime: offsetDateTime | null;
|
|
30512
30791
|
@computed createdDateTime: offsetDateTime;
|
|
30513
30792
|
failureReason: string | null;
|
|
30793
|
+
processingInfo: string | null;
|
|
30514
30794
|
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
30515
30795
|
startedDateTime: offsetDateTime | null;
|
|
30516
30796
|
@references subject: reference.`microsoft.graph`.user;
|
|
@@ -30551,8 +30831,11 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30551
30831
|
deletedDateTime: offsetDateTime | null;
|
|
30552
30832
|
@computed @key id: string;
|
|
30553
30833
|
nextScheduleRunDateTime: offsetDateTime | null;
|
|
30834
|
+
quarantineDetails: quarantineDetails;
|
|
30835
|
+
settings: workflowSetting;
|
|
30554
30836
|
version: int32 | null;
|
|
30555
30837
|
@references executionScope: userProcessingResult[];
|
|
30838
|
+
@references previewScope: reference.`microsoft.graph`.directoryObject[];
|
|
30556
30839
|
@contains runs: run[];
|
|
30557
30840
|
@contains taskReports: taskReport[];
|
|
30558
30841
|
@contains userProcessingResults: userProcessingResult[];
|
|
@@ -30584,6 +30867,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30584
30867
|
}
|
|
30585
30868
|
|
|
30586
30869
|
@entity model workflowVersion extends workflowBase {
|
|
30870
|
+
settings: workflowSetting;
|
|
30587
30871
|
@computed @key versionNumber: int32;
|
|
30588
30872
|
}
|
|
30589
30873
|
|
|
@@ -30628,6 +30912,13 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30628
30912
|
canceled: 4,
|
|
30629
30913
|
failed: 5,
|
|
30630
30914
|
unknownFutureValue: 6,
|
|
30915
|
+
quarantined: 8,
|
|
30916
|
+
}
|
|
30917
|
+
|
|
30918
|
+
enum matchMode {
|
|
30919
|
+
any: 0,
|
|
30920
|
+
all: 1,
|
|
30921
|
+
unknownFutureValue: 2,
|
|
30631
30922
|
}
|
|
30632
30923
|
|
|
30633
30924
|
enum membershipChangeType {
|
|
@@ -30636,6 +30927,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30636
30927
|
unknownFutureValue: 3,
|
|
30637
30928
|
}
|
|
30638
30929
|
|
|
30930
|
+
enum quarantineType {
|
|
30931
|
+
notQuarantined: 0,
|
|
30932
|
+
countBasedThresholdExceeded: 1,
|
|
30933
|
+
percentageBasedThresholdExceeded: 2,
|
|
30934
|
+
multipleConditionsExceeded: 3,
|
|
30935
|
+
unknownFutureValue: 4,
|
|
30936
|
+
}
|
|
30937
|
+
|
|
30639
30938
|
enum valueType {
|
|
30640
30939
|
`enum`: 0,
|
|
30641
30940
|
`string`: 1,
|
|
@@ -30649,6 +30948,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
30649
30948
|
onDemand: 1,
|
|
30650
30949
|
unknownFutureValue: 2,
|
|
30651
30950
|
activatedWithScope: 3,
|
|
30951
|
+
preview: 4,
|
|
30652
30952
|
}
|
|
30653
30953
|
|
|
30654
30954
|
enum workflowTriggerTimeBasedAttribute {
|