@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.
@@ -31,6 +31,8 @@ scalar binary; //TODO: Enables support for Edm.Binary
31
31
  // Metadata item DeprecatedDefinition_SynchronizationSecret_Deprecation was already defined with a different value.
32
32
  @deprecatedDefinition("AccessReviewReportBreakingChanges", "<ChangeLogCategory>", "2021-07-30", "2022-01-30", "This property is being deprecated. Use the fulfilledDateTime value in the individual report instance instead")
33
33
  // Metadata item DeprecatedDefinition_AccessReviewReportBreakingChanges was already defined with a different value.
34
+ @deprecatedDefinition("beta:DisplayNameRename", "<ChangeLogCategory>", "2026-04-28", "2027-04-28", "The agentDisplayName property is deprecated. Use displayName instead.")
35
+ @deprecatedDefinition("beta:IdentityIDRename", "<ChangeLogCategory>", "2026-04-28", "2027-04-28", "The agentId property is deprecated. Use identityId instead.")
34
36
  @deprecatedDefinition("identityProvider", "<ChangeLogCategory>", "2021-08-24", "2023-03-15", "The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API.")
35
37
  // Metadata item DeprecatedDefinition_identityProvider was already defined with a different value.
36
38
  @deprecatedDefinition("connectionSettings", "<ChangeLogCategory>", "2023-10-12", "2024-08-31", "Starting from August 31, 2024, connectionSettings property will no longer be supported and will be marked as deprecated. Please use onnectionSetting instead.")
@@ -362,6 +364,10 @@ namespace reference.`microsoft.graph` {
362
364
  shareUserExperienceAnalyticsData: adminConsentState;
363
365
  }
364
366
 
367
+ @complex model agentSignIn extends signInIdentity {
368
+ agentServicePrincipalId: string | null;
369
+ }
370
+
365
371
  @complex model aggregationOption {
366
372
  bucketDefinition: bucketAggregationDefinition;
367
373
  field: string;
@@ -376,12 +382,44 @@ namespace reference.`microsoft.graph` {
376
382
  blueprintId: string | null;
377
383
  }
378
384
 
385
+ @complex model aiInteractionAttachment {
386
+ attachmentId: string | null;
387
+ content: string | null;
388
+ contentType: string | null;
389
+ contentUrl: string | null;
390
+ name: string | null;
391
+ }
392
+
393
+ @complex model aiInteractionContext {
394
+ contextReference: string | null;
395
+ contextType: string | null;
396
+ displayName: string | null;
397
+ }
398
+
379
399
  @complex model aiInteractionEntity {
380
400
  identifier: string | null;
381
401
  name: string | null;
382
402
  version: string | null;
383
403
  }
384
404
 
405
+ @complex model aiInteractionLink {
406
+ displayName: string | null;
407
+ linkType: string | null;
408
+ linkUrl: string | null;
409
+ }
410
+
411
+ @complex model aiInteractionMention {
412
+ mentioned: aiInteractionMentionedIdentitySet | null;
413
+ mentionId: int32 | null;
414
+ mentionText: string | null;
415
+ }
416
+
417
+ @open
418
+ @complex model aiInteractionMentionedIdentitySet extends identitySet {
419
+ conversation: teamworkConversationIdentity | null;
420
+ tag: teamworkTagIdentity | null;
421
+ }
422
+
385
423
  @complex model aiInteractionPlugin extends aiInteractionEntity {
386
424
  }
387
425
 
@@ -3199,12 +3237,16 @@ namespace reference.`microsoft.graph` {
3199
3237
  }
3200
3238
 
3201
3239
  @complex model conditionalAccessClientApplications {
3240
+ agentIdServicePrincipalFilter: conditionalAccessFilter | null;
3241
+ excludeAgentIdServicePrincipals: string[];
3202
3242
  excludeServicePrincipals: string[];
3243
+ includeAgentIdServicePrincipals: string[];
3203
3244
  includeServicePrincipals: string[];
3204
3245
  servicePrincipalFilter: conditionalAccessFilter | null;
3205
3246
  }
3206
3247
 
3207
3248
  @complex model conditionalAccessConditionSet {
3249
+ agentIdRiskLevels: conditionalAccessAgentIdRiskLevels | null;
3208
3250
  applications: conditionalAccessApplications | null;
3209
3251
  authenticationFlows: conditionalAccessAuthenticationFlows | null;
3210
3252
  clientApplications: conditionalAccessClientApplications | null;
@@ -3841,6 +3883,10 @@ namespace reference.`microsoft.graph` {
3841
3883
  @complex model customAppScopeAttributesDictionary extends Dictionary {
3842
3884
  }
3843
3885
 
3886
+ @open
3887
+ @complex model customEmojiFromIdentitySet extends identitySet {
3888
+ }
3889
+
3844
3890
  @abstract
3845
3891
  @complex model customExtensionAuthenticationConfiguration {
3846
3892
  }
@@ -6460,6 +6506,17 @@ namespace reference.`microsoft.graph` {
6460
6506
  status: deviceScopeActionStatus;
6461
6507
  }
6462
6508
 
6509
+ @complex model deviceSyncStatusResponse {
6510
+ /**
6511
+ * Indicates the collection of sync component statuses representing infrastructure and policy progress. Each entry represents a component that has started reporting during this sync operation. Components appear in the collection only after they begin executing. Read-only. Not nullable.
6512
+ */
6513
+ components: syncComponent[];
6514
+ /**
6515
+ * Indicates the managed device identifier. Used to correlate this sync status snapshot with the device that was synced. This is the same id used in the managedDevice entity. Example: 'd1e2f3a4-b5c6-7890-abcd-ef1234567890'. Read-only. Not nullable.
6516
+ */
6517
+ deviceId: string;
6518
+ }
6519
+
6463
6520
  @open
6464
6521
  @complex model Dictionary {
6465
6522
  }
@@ -6873,6 +6930,10 @@ namespace reference.`microsoft.graph` {
6873
6930
  discoveredSensitiveTypes: discoveredSensitiveType[] | null;
6874
6931
  }
6875
6932
 
6933
+ @complex model evaluationScope {
6934
+ type: evaluationScopeType;
6935
+ }
6936
+
6876
6937
  @complex model eventCreationOptions {
6877
6938
  saveToGroupCalendarOnly: boolean | null;
6878
6939
  }
@@ -10751,6 +10812,7 @@ namespace reference.`microsoft.graph` {
10751
10812
  }
10752
10813
 
10753
10814
  @complex model onPremisesDirectorySynchronizationFeature {
10815
+ allowOnPremUpdateOfOnPremisesObjectIdentifierEnabled: boolean | null;
10754
10816
  blockCloudObjectTakeoverThroughHardMatchEnabled: boolean | null;
10755
10817
  blockSoftMatchEnabled: boolean | null;
10756
10818
  bypassDirSyncOverridesEnabled: boolean | null;
@@ -11478,6 +11540,9 @@ namespace reference.`microsoft.graph` {
11478
11540
  @complex model policyLocationDomain extends policyLocation {
11479
11541
  }
11480
11542
 
11543
+ @complex model policyLocationTool extends policyLocation {
11544
+ }
11545
+
11481
11546
  @complex model policyLocationUrl extends policyLocation {
11482
11547
  }
11483
11548
 
@@ -11485,6 +11550,7 @@ namespace reference.`microsoft.graph` {
11485
11550
  @complex model policyScopeBase {
11486
11551
  activities: userActivityTypes;
11487
11552
  executionMode: executionMode;
11553
+ locationExclusions: policyLocation[];
11488
11554
  locations: policyLocation[];
11489
11555
  policyActions: dlpActionInfo[];
11490
11556
  }
@@ -11829,6 +11895,7 @@ namespace reference.`microsoft.graph` {
11829
11895
  activityMetadata: activityMetadata;
11830
11896
  contentEntries: processContentMetadataBase[];
11831
11897
  deviceMetadata: deviceMetadata;
11898
+ evaluationScope: evaluationScope | null;
11832
11899
  integratedAppMetadata: integratedApplicationMetadata;
11833
11900
  protectedAppMetadata: protectedApplicationMetadata | null;
11834
11901
  }
@@ -11886,6 +11953,7 @@ namespace reference.`microsoft.graph` {
11886
11953
 
11887
11954
  @complex model protectedApplicationMetadata extends integratedApplicationMetadata {
11888
11955
  applicationLocation: policyLocation | null;
11956
+ sourceLocation: policyLocation | null;
11889
11957
  }
11890
11958
 
11891
11959
  @complex model protectedContent {
@@ -13097,6 +13165,7 @@ This model is shared with the CCS retrieval API and search where it is already u
13097
13165
  }
13098
13166
 
13099
13167
  @complex model signInConditions {
13168
+ agentIdRiskLevel: agentIdRiskLevel | null;
13100
13169
  authenticationFlow: authenticationFlow | null;
13101
13170
  clientAppType: conditionalAccessClientApp | null;
13102
13171
  country: string | null;
@@ -13288,6 +13357,25 @@ This model is shared with the CCS retrieval API and search where it is already u
13288
13357
  nameIdPolicyFormat: string | null;
13289
13358
  }
13290
13359
 
13360
+ @complex model syncComponent {
13361
+ /**
13362
+ * Indicates additional information for this sync stage. This is a flexible string that can be null (no additional info), a progress indicator such as '3/6' (completed out of total), or a list of individual item names. Read-only. Nullable.
13363
+ */
13364
+ moreInfo: string | null;
13365
+ /**
13366
+ * Indicates the sync stage name. The backend abstracts internal infrastructure into 6 user-facing stages. Fixed values are: notifyingDevice, deviceConnecting, policies, applications, scripts, compliance. Read-only. Not nullable.
13367
+ */
13368
+ name: string;
13369
+ /**
13370
+ * Indicates the date and time when this stage last reported status. The date and time information is shown using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Read-only. Not nullable.
13371
+ */
13372
+ reportedDateTime: offsetDateTime;
13373
+ /**
13374
+ * Indicates the current status of this sync stage. Default value is none. Possible values are: none, inProgress, success, failure, partialSuccess, unknownFutureValue. Stages only appear in the response once they have started, so none is a schema default and will not typically appear in responses. Read-only. Not nullable.
13375
+ */
13376
+ status: syncComponentStatus;
13377
+ }
13378
+
13291
13379
  @complex model synchronizationError {
13292
13380
  code: string | null;
13293
13381
  message: string | null;
@@ -13407,6 +13495,9 @@ This model is shared with the CCS retrieval API and search where it is already u
13407
13495
  tabId: string | null;
13408
13496
  }
13409
13497
 
13498
+ @complex model targetAgentIdentitySponsorsOrOwners extends userSet {
13499
+ }
13500
+
13410
13501
  @complex model targetResource {
13411
13502
  displayName: string | null;
13412
13503
  groupType: groupType | null;
@@ -17614,6 +17705,34 @@ This model is shared with the CCS retrieval API and search where it is already u
17614
17705
  @references sponsors: directoryObject[];
17615
17706
  }
17616
17707
 
17708
+ @entity model agentRiskDetection extends entity {
17709
+ activityDateTime: offsetDateTime | null;
17710
+ additionalInfo: string | null;
17711
+
17712
+ @graphDeprecated("beta:DisplayNameRename")
17713
+ agentDisplayName: string | null;
17714
+
17715
+ @graphDeprecated("beta:IdentityIDRename")
17716
+ agentId: string | null;
17717
+ blueprintId: string | null;
17718
+ clientSessionId: string | null;
17719
+ detectedDateTime: offsetDateTime | null;
17720
+ detectionTimingType: riskDetectionTimingType;
17721
+ displayName: string;
17722
+ identityId: string;
17723
+ identityType: agentIdentityType;
17724
+ @computed lastModifiedDateTime: offsetDateTime | null;
17725
+ riskDetail: riskDetail;
17726
+ riskEventType: string;
17727
+ riskEvidence: string | null;
17728
+ riskLevel: riskLevel;
17729
+ riskState: riskState;
17730
+ signInClientDisplayName: string | null;
17731
+ signInCorrelationId: string | null;
17732
+ signInRequestId: string | null;
17733
+ source: string | null;
17734
+ }
17735
+
17617
17736
  @open
17618
17737
  @entity model agentUser extends user {
17619
17738
  }
@@ -17666,6 +17785,30 @@ This model is shared with the CCS retrieval API and search where it is already u
17666
17785
  @entity model agreementFileVersion extends agreementFileProperties {
17667
17786
  }
17668
17787
 
17788
+ @entity model aiInteraction extends entity {
17789
+ appClass: string;
17790
+ attachments: aiInteractionAttachment[] | null;
17791
+ body: itemBody | null;
17792
+ contexts: aiInteractionContext[] | null;
17793
+ conversationType: string | null;
17794
+ @computed createdDateTime: offsetDateTime | null;
17795
+ etag: string | null;
17796
+ from: identitySet;
17797
+ interactionType: aiInteractionType;
17798
+ links: aiInteractionLink[] | null;
17799
+ locale: string;
17800
+ mentions: aiInteractionMention[] | null;
17801
+ requestId: string;
17802
+ sessionId: string;
17803
+ }
17804
+
17805
+ @entity model aiInteractionHistory extends entity {
17806
+ }
17807
+
17808
+ @entity model aiUser extends entity {
17809
+ @contains interactionHistory: aiInteractionHistory | null;
17810
+ }
17811
+
17669
17812
  @graphDeprecated("Deprecation")
17670
17813
  @open
17671
17814
  @entity model alert extends entity {
@@ -23456,6 +23599,7 @@ This model is shared with the CCS retrieval API and search where it is already u
23456
23599
  imageDisplayName: string | null;
23457
23600
  isDisasterRecoveryActive: boolean;
23458
23601
  lastLoginResult: cloudPcLoginResult | null;
23602
+ @computed lastLogoffDateTime: offsetDateTime | null;
23459
23603
  @computed lastModifiedDateTime: offsetDateTime;
23460
23604
  lastRemoteActionResult: cloudPcRemoteActionResult | null;
23461
23605
  managedDeviceId: string | null;
@@ -24253,6 +24397,8 @@ typically alternating request/response, implicitly forming a turn.Represents a c
24253
24397
  * The users conversations with Copilot Chat.
24254
24398
  */
24255
24399
  @contains conversations: copilotConversation[];
24400
+ @contains interactionHistory: aiInteractionHistory | null;
24401
+ @contains users: aiUser[];
24256
24402
  }
24257
24403
 
24258
24404
  @entity model corsConfiguration_v2 extends entity {
@@ -27252,9 +27398,6 @@ typically alternating request/response, implicitly forming a turn.Represents a c
27252
27398
  status: appLogUploadState;
27253
27399
  }
27254
27400
 
27255
- /**
27256
- * Singleton that acts as container for a collection of Resource Access entities.
27257
- */
27258
27401
  @entity model deviceManagement extends entity {
27259
27402
  /**
27260
27403
  * The date & time when tenant data moved between scaleunits.
@@ -31918,7 +32061,9 @@ typically alternating request/response, implicitly forming a turn.Represents a c
31918
32061
  }
31919
32062
 
31920
32063
  @entity model identityProtectionRoot extends MsGraph.SharedModels.entity {
32064
+ @contains agentRiskDetections: agentRiskDetection[];
31921
32065
  @contains riskDetections: riskDetection[];
32066
+ @contains riskyAgents: riskyAgent[];
31922
32067
  @contains riskyServicePrincipals: riskyServicePrincipal[];
31923
32068
  @contains riskyUsers: riskyUser[];
31924
32069
  @contains servicePrincipalRiskDetections: servicePrincipalRiskDetection[];
@@ -40790,6 +40935,31 @@ typically alternating request/response, implicitly forming a turn.Represents a c
40790
40935
  userPrincipalName: string | null;
40791
40936
  }
40792
40937
 
40938
+ @entity model riskyAgent extends entity {
40939
+ agentDisplayName: string | null;
40940
+ blueprintId: string | null;
40941
+ identityType: agentIdentityType;
40942
+ isDeleted: boolean;
40943
+ isEnabled: boolean;
40944
+ isProcessing: boolean;
40945
+ riskDetail: riskDetail;
40946
+ @computed riskLastModifiedDateTime: offsetDateTime | null;
40947
+ riskLevel: riskLevel;
40948
+ riskState: riskState;
40949
+ }
40950
+
40951
+ @entity model riskyAgentIdentity extends riskyAgent {
40952
+ @references agentIdentity: agentIdentity | null;
40953
+ }
40954
+
40955
+ @entity model riskyAgentIdentityBlueprintPrincipal extends riskyAgent {
40956
+ @references agentIdentityBlueprintPrincipal: agentIdentityBlueprintPrincipal | null;
40957
+ }
40958
+
40959
+ @entity model riskyAgentUser extends riskyAgent {
40960
+ @references agentUser: agentUser | null;
40961
+ }
40962
+
40793
40963
  @entity model riskyServicePrincipal extends entity {
40794
40964
 
40795
40965
  @graphDeprecated("accountEnabledDeprecated")
@@ -42411,6 +42581,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
42411
42581
  @contains deletedChats: deletedChat[];
42412
42582
  @contains deletedTeams: deletedTeam[];
42413
42583
  @contains devices: teamworkDevice[];
42584
+ @contains messaging: teamworkMessaging | null;
42414
42585
  @contains teamsAppSettings: teamsAppSettings | null;
42415
42586
  @contains teamTemplates: teamTemplate[];
42416
42587
  }
@@ -42418,6 +42589,13 @@ typically alternating request/response, implicitly forming a turn.Represents a c
42418
42589
  @entity model teamworkBot extends entity {
42419
42590
  }
42420
42591
 
42592
+ @entity model teamworkCustomEmoji extends MsGraph.SharedModels.entity {
42593
+ contentBytes: string | null;
42594
+ createdBy: customEmojiFromIdentitySet;
42595
+ @computed createdDateTime: offsetDateTime;
42596
+ @computed @key displayName: string;
42597
+ }
42598
+
42421
42599
  @entity model teamworkDevice extends entity {
42422
42600
  activityState: teamworkDeviceActivityState | null;
42423
42601
  companyAssetTag: string | null;
@@ -42488,6 +42666,10 @@ typically alternating request/response, implicitly forming a turn.Represents a c
42488
42666
  contentType: string | null;
42489
42667
  }
42490
42668
 
42669
+ @entity model teamworkMessaging extends entity {
42670
+ @contains customEmojis: teamworkCustomEmoji[];
42671
+ }
42672
+
42491
42673
  @entity model teamworkPeripheral extends entity {
42492
42674
  displayName: string | null;
42493
42675
  productId: string | null;
@@ -45369,6 +45551,10 @@ typically alternating request/response, implicitly forming a turn.Represents a c
45369
45551
  * You purchase multiple licenses for iOS apps through the Apple Volume Purchase Program for Business or Education. This involves setting up an Apple VPP account from the Apple website and uploading the Apple VPP Business or Education token to Intune. You can then synchronize your volume purchase information with Intune and track your volume-purchased app use. You can upload multiple Apple VPP Business or Education tokens.
45370
45552
  */
45371
45553
  @entity model vppToken extends entity {
45554
+ /**
45555
+ * Indicates the delivery protocol used to deliver apps associated with this VPP token. This property is set at token creation and cannot be modified afterward. Default value is default. Possible values are: default, mobileDeviceManagement, declarativeDeviceManagement. Not nullable.
45556
+ */
45557
+ appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol;
45372
45558
  /**
45373
45559
  * The apple Id associated with the given Apple Volume Purchase Program Token.
45374
45560
  */
@@ -52209,6 +52395,8 @@ typically alternating request/response, implicitly forming a turn.Represents a c
52209
52395
  target: 1,
52210
52396
  createdBy: 2,
52211
52397
  unknownFutureValue: 99,
52398
+ targetManager: 100,
52399
+ targetAgentIdentitySponsorOrOwner: 101,
52212
52400
  }
52213
52401
 
52214
52402
  enum accessPackageAssignmentRequestFilterByCurrentUserOptions {
@@ -52216,6 +52404,10 @@ typically alternating request/response, implicitly forming a turn.Represents a c
52216
52404
  createdBy: 2,
52217
52405
  approver: 3,
52218
52406
  unknownFutureValue: 99,
52407
+ targetOrRequestor: 100,
52408
+ targetManager: 101,
52409
+ requestForOthers: 102,
52410
+ targetAgentIdentitySponsorOrOwner: 103,
52219
52411
  }
52220
52412
 
52221
52413
  enum accessPackageCustomExtensionHandlerStatus {
@@ -52445,6 +52637,22 @@ typically alternating request/response, implicitly forming a turn.Represents a c
52445
52637
  unknownFutureValue: 3,
52446
52638
  }
52447
52639
 
52640
+ enum agentIdentityType {
52641
+ agentIdentity: 0,
52642
+ agentUser: 1,
52643
+ unknownFutureValue: 2,
52644
+ agentIdentityBlueprintPrincipal: 3,
52645
+ user: 4,
52646
+ }
52647
+
52648
+ enum agentIdRiskLevel {
52649
+ none: 0,
52650
+ low: 1,
52651
+ medium: 2,
52652
+ high: 4,
52653
+ unknownFutureValue: 8,
52654
+ }
52655
+
52448
52656
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
52449
52657
  enum agentStatus {
52450
52658
  active: 0,
@@ -52471,6 +52679,12 @@ typically alternating request/response, implicitly forming a turn.Represents a c
52471
52679
  unknownFutureValue: 5,
52472
52680
  }
52473
52681
 
52682
+ enum aiInteractionType {
52683
+ userPrompt: 0,
52684
+ aiResponse: 1,
52685
+ unknownFutureValue: 2,
52686
+ }
52687
+
52474
52688
  enum alertFeedback {
52475
52689
  `unknown`: 0,
52476
52690
  truePositive: 1,
@@ -56636,6 +56850,14 @@ typically alternating request/response, implicitly forming a turn.Represents a c
56636
56850
  Label: 0,
56637
56851
  }
56638
56852
 
56853
+ @graphFlags
56854
+ enum conditionalAccessAgentIdRiskLevels {
56855
+ low: 1,
56856
+ medium: 2,
56857
+ high: 4,
56858
+ unknownFutureValue: 8,
56859
+ }
56860
+
56639
56861
  enum conditionalAccessClientApp {
56640
56862
  all: 0,
56641
56863
  browser: 1,
@@ -57762,6 +57984,53 @@ typically alternating request/response, implicitly forming a turn.Represents a c
57762
57984
  policySets: 1,
57763
57985
  }
57764
57986
 
57987
+ /**
57988
+ * The DeviceAndAppManagementPayloadType represents the type of a payload assigned to a target.
57989
+ */
57990
+ enum deviceAndAppManagementPayloadType {
57991
+ /**
57992
+ * Default value. Do not use.
57993
+ */
57994
+ `unknown`: 0,
57995
+ /**
57996
+ * Indicates that the payload is of settings catalog type.
57997
+ */
57998
+ settingsCatalog: 1,
57999
+ /**
58000
+ * Indicates that the payload is of security baseline type.
58001
+ */
58002
+ securityBaseline: 2,
58003
+ /**
58004
+ * Indicates that the payload is of antivirus type.
58005
+ */
58006
+ antivirus: 3,
58007
+ /**
58008
+ * Indicates that the payload is of disk encryption type.
58009
+ */
58010
+ diskEncryption: 4,
58011
+ /**
58012
+ * Indicates that the payload is of attack surface reduction type.
58013
+ */
58014
+ attackSurfaceReduction: 5,
58015
+ /**
58016
+ * Indicates that the payload is of firewall type.
58017
+ */
58018
+ firewall: 6,
58019
+ /**
58020
+ * Indicates that the payload is of endpoint detection and response type.
58021
+ */
58022
+ endpointDetectionAndResponse: 7,
58023
+ /**
58024
+ * Indicates that the payload is of compliance policy type.
58025
+ */
58026
+ compliancePolicy: 8,
58027
+ /**
58028
+ * Indicates that the payload is of device restriction type.
58029
+ */
58030
+ deviceRestrictions: 9,
58031
+ unknownFutureValue: 10,
58032
+ }
58033
+
57765
58034
  /**
57766
58035
  * Device app management task category.
57767
58036
  */
@@ -61650,6 +61919,13 @@ typically alternating request/response, implicitly forming a turn.Represents a c
61650
61919
  IgnoreLookupReferenceResolutionFailure: 2,
61651
61920
  }
61652
61921
 
61922
+ enum evaluationScopeType {
61923
+ tenant: 0,
61924
+ agent: 1,
61925
+ anonymousUser: 2,
61926
+ unknownFutureValue: 3,
61927
+ }
61928
+
61653
61929
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
61654
61930
  enum eventType {
61655
61931
  singleInstance: 0,
@@ -62052,12 +62328,12 @@ typically alternating request/response, implicitly forming a turn.Represents a c
62052
62328
  enabled: 2,
62053
62329
  }
62054
62330
 
62055
- #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
62056
62331
  enum groupAccessType {
62057
62332
  none: 0,
62058
62333
  private: 1,
62059
62334
  secret: 2,
62060
62335
  public: 3,
62336
+ unknownFutureValue: 4,
62061
62337
  }
62062
62338
 
62063
62339
  /**
@@ -68980,7 +69256,10 @@ typically alternating request/response, implicitly forming a turn.Represents a c
68980
69256
  userChangedPasswordOnPremises: 15,
68981
69257
  adminDismissedRiskForSignIn: 16,
68982
69258
  adminConfirmedAccountSafe: 17,
68983
- microsoftRevokedSessions: 18,
69259
+ adminConfirmedAgentSafe: 18,
69260
+ adminConfirmedAgentCompromised: 19,
69261
+ adminDismissedRiskForAgent: 20,
69262
+ microsoftRevokedSessions: 21,
68984
69263
  }
68985
69264
 
68986
69265
  enum riskDetectionTimingType {
@@ -69877,6 +70156,33 @@ typically alternating request/response, implicitly forming a turn.Represents a c
69877
70156
  commonNameAsDurableDeviceId: 9,
69878
70157
  }
69879
70158
 
70159
+ /**
70160
+ * A list of possible status states for a sync infrastructure component or policy during a device sync operation.
70161
+ */
70162
+ enum syncComponentStatus {
70163
+ /**
70164
+ * Default. The component has not yet started reporting status. This is a schema default and will not typically appear in responses, as components only appear once they begin executing.
70165
+ */
70166
+ none: 0,
70167
+ /**
70168
+ * Indicates the component is currently executing. For infrastructure components (PNSv1, DCI, SCGW), this means the notification or check-in is in flight. For policies, this means the policy is being applied to the device.
70169
+ */
70170
+ inProgress: 1,
70171
+ /**
70172
+ * Indicates the component completed successfully. The component has finished its work and reported a successful outcome.
70173
+ */
70174
+ success: 2,
70175
+ /**
70176
+ * Indicates the stage encountered an error. When this value is set, the moreInfo property on the syncComponent will contain additional diagnostic details about the failure.
70177
+ */
70178
+ failure: 3,
70179
+ /**
70180
+ * Indicates the stage completed but not all items succeeded. For example, some policies applied successfully while others failed. The moreInfo property may contain details on the partial outcome.
70181
+ */
70182
+ partialSuccess: 4,
70183
+ unknownFutureValue: 5,
70184
+ }
70185
+
69880
70186
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
69881
70187
  enum synchronizationDisposition {
69882
70188
  Normal: 0,
@@ -71495,6 +71801,8 @@ typically alternating request/response, implicitly forming a turn.Represents a c
71495
71801
  insiderRisk: 131072,
71496
71802
  authenticationFlow: 262144,
71497
71803
  unknownFutureValue: 524288,
71804
+ agentIdRisk: 1048576,
71805
+ agentIdentities: 2097152,
71498
71806
  }
71499
71807
 
71500
71808
  /**
@@ -75284,6 +75592,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
75284
75592
  subject: workflowSubject | null;
75285
75593
  }
75286
75594
 
75595
+ @complex model countBasedQuarantineCondition extends quarantineCondition {
75596
+ threshold: int64;
75597
+ }
75598
+
75287
75599
  @complex model customTaskExtensionCallbackConfiguration extends reference.`microsoft.graph`.customExtensionCallbackConfiguration {
75288
75600
  @references authorizedApps: reference.`microsoft.graph`.application[];
75289
75601
  }
@@ -75323,6 +75635,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
75323
75635
  valueType: valueType;
75324
75636
  }
75325
75637
 
75638
+ @complex model percentageBasedQuarantineCondition extends quarantineCondition {
75639
+ percentage: int32;
75640
+ }
75641
+
75326
75642
  @complex model previewFailedTask {
75327
75643
  definitionId: string;
75328
75644
  failureReason: string;
@@ -75338,6 +75654,21 @@ namespace reference.`microsoft.graph.identityGovernance` {
75338
75654
  id: string;
75339
75655
  }
75340
75656
 
75657
+ @abstract
75658
+ @complex model quarantineCondition {
75659
+ }
75660
+
75661
+ @complex model quarantineConfiguration {
75662
+ conditions: quarantineCondition[];
75663
+ matchMode: matchMode;
75664
+ }
75665
+
75666
+ @complex model quarantineDetails {
75667
+ quarantinedDateTime: offsetDateTime | null;
75668
+ quarantineReason: string | null;
75669
+ quarantineType: quarantineType;
75670
+ }
75671
+
75341
75672
  @complex model ruleBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
75342
75673
  rule: string;
75343
75674
  }
@@ -75424,6 +75755,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
75424
75755
  @complex model workflowExecutionTrigger {
75425
75756
  }
75426
75757
 
75758
+ @complex model workflowSetting {
75759
+ quarantineConfiguration: quarantineConfiguration | null;
75760
+ }
75761
+
75427
75762
  @complex model workflowsInsightsByCategory {
75428
75763
  failedJoinerRuns: int32;
75429
75764
  failedLeaverRuns: int32;
@@ -75466,6 +75801,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
75466
75801
 
75467
75802
  @entity model lifecycleManagementSettings extends reference.`microsoft.graph`.entity {
75468
75803
  emailSettings: reference.`microsoft.graph`.emailSettings;
75804
+ quarantineConfiguration: quarantineConfiguration | null;
75469
75805
  workflowScheduleIntervalInHours: int32;
75470
75806
  }
75471
75807
 
@@ -75539,6 +75875,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
75539
75875
  completedDateTime: offsetDateTime | null;
75540
75876
  @computed createdDateTime: offsetDateTime;
75541
75877
  failureReason: string | null;
75878
+ processingInfo: string | null;
75542
75879
  processingStatus: lifecycleWorkflowProcessingStatus;
75543
75880
  startedDateTime: offsetDateTime | null;
75544
75881
  workflowSubject: workflowSubject | null;
@@ -75580,6 +75917,8 @@ namespace reference.`microsoft.graph.identityGovernance` {
75580
75917
  deletedDateTime: offsetDateTime | null;
75581
75918
  @computed @key id: string;
75582
75919
  nextScheduleRunDateTime: offsetDateTime | null;
75920
+ quarantineDetails: quarantineDetails;
75921
+ settings: workflowSetting;
75583
75922
  version: int32 | null;
75584
75923
  @references executionScope: userProcessingResult[];
75585
75924
 
@@ -75617,6 +75956,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
75617
75956
  }
75618
75957
 
75619
75958
  @entity model workflowVersion extends workflowBase {
75959
+ settings: workflowSetting;
75620
75960
  @computed @key versionNumber: int32;
75621
75961
  }
75622
75962
 
@@ -75670,6 +76010,13 @@ namespace reference.`microsoft.graph.identityGovernance` {
75670
76010
  canceled: 4,
75671
76011
  failed: 5,
75672
76012
  unknownFutureValue: 6,
76013
+ quarantined: 8,
76014
+ }
76015
+
76016
+ enum matchMode {
76017
+ any: 0,
76018
+ all: 1,
76019
+ unknownFutureValue: 2,
75673
76020
  }
75674
76021
 
75675
76022
  enum membershipChangeType {
@@ -75678,6 +76025,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
75678
76025
  unknownFutureValue: 3,
75679
76026
  }
75680
76027
 
76028
+ enum quarantineType {
76029
+ notQuarantined: 0,
76030
+ countBasedThresholdExceeded: 1,
76031
+ percentageBasedThresholdExceeded: 2,
76032
+ multipleConditionsExceeded: 3,
76033
+ unknownFutureValue: 4,
76034
+ }
76035
+
75681
76036
  enum valueType {
75682
76037
  `enum`: 0,
75683
76038
  `string`: 1,