@microsoft/typespec-msgraph-reference 1.0.6 → 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.
@@ -9,6 +9,7 @@ scalar binary; //TODO: Enables support for Edm.Binary
9
9
 
10
10
  @deprecatedDefinition("Deprecation", "<ChangeLogCategory>", "2024-04-10", "2026-04-10", "The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API.")
11
11
  @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.")
12
+ @privatePreviewDefinition("remoteTenantGroupsAPI", "2025-12-02", "2028-12-07", "<theOwner>")
12
13
  @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.")
13
14
  @deprecatedDefinition("Removal", "<ChangeLogCategory>", "2026-01-28", "2028-01-01", "This API is deprecated and will stop returning data after January, 2028.")
14
15
  // Metadata item DeprecatedDefinition_Removal was already defined with a different value.
@@ -1073,6 +1074,13 @@ namespace reference.`microsoft.graph` {
1073
1074
  authenticationContextValue: string | null;
1074
1075
  }
1075
1076
 
1077
+ @complex model authenticationAppDeviceDetails {
1078
+ appVersion: string | null;
1079
+ clientApp: string | null;
1080
+ deviceId: string | null;
1081
+ operatingSystem: string | null;
1082
+ }
1083
+
1076
1084
  @complex model authenticationAttributeCollectionInputConfiguration {
1077
1085
  attribute: string;
1078
1086
  defaultValue: string | null;
@@ -1964,6 +1972,12 @@ namespace reference.`microsoft.graph` {
1964
1972
  locale: string | null;
1965
1973
  }
1966
1974
 
1975
+ @complex model cloudVideoInteropInfo {
1976
+ moreInfoWebUrl: string | null;
1977
+ tenantKey: string | null;
1978
+ videoTeleconferenceId: string | null;
1979
+ }
1980
+
1967
1981
  @complex model coachmarkLocation {
1968
1982
  length: int32 | null;
1969
1983
  offset: int32 | null;
@@ -2354,6 +2368,15 @@ namespace reference.`microsoft.graph` {
2354
2368
  applicationRestrictions: customAppManagementApplicationConfiguration | null;
2355
2369
  }
2356
2370
 
2371
+ @complex model customDataProvidedResourceUploadSessionRequest {
2372
+ data: reference.`microsoft.graph.customDataProvidedResourcePayloads`.data;
2373
+ }
2374
+
2375
+ @complex model customDataProvidedResourceUploadStats {
2376
+ filesUploaded: int32;
2377
+ totalBytesUploaded: int64;
2378
+ }
2379
+
2357
2380
  @abstract
2358
2381
  @complex model customExtensionAuthenticationConfiguration {
2359
2382
  }
@@ -5777,6 +5800,10 @@ namespace reference.`microsoft.graph` {
5777
5800
  @complex model placeMode {
5778
5801
  }
5779
5802
 
5803
+ @complex model placeServicePlanInfo {
5804
+ servicePlanId: string | null;
5805
+ }
5806
+
5780
5807
  @open
5781
5808
  @complex model plannerAppliedCategories {
5782
5809
  }
@@ -9296,6 +9323,7 @@ namespace reference.`microsoft.graph` {
9296
9323
  @references environment: accessPackageResourceEnvironment | null;
9297
9324
  @contains roles: accessPackageResourceRole[];
9298
9325
  @contains scopes: accessPackageResourceScope[];
9326
+ @contains uploadSessions: customDataProvidedResourceUploadSession[];
9299
9327
  }
9300
9328
 
9301
9329
  @entity model accessPackageResourceEnvironment extends entity {
@@ -11647,6 +11675,13 @@ namespace reference.`microsoft.graph` {
11647
11675
  @entity model cloudPcReport extends entity {
11648
11676
  }
11649
11677
 
11678
+ @entity model cloudPcServicePlan extends entity {
11679
+ displayName: string;
11680
+ ramInGB: int32;
11681
+ storageInGB: int32;
11682
+ vCpuCount: int32;
11683
+ }
11684
+
11650
11685
  @entity model cloudPcUserSetting extends entity {
11651
11686
  @computed createdDateTime: offsetDateTime | null;
11652
11687
  displayName: string | null;
@@ -12159,6 +12194,30 @@ files, events, and updates for people sharing a common interest or goal.
12159
12194
  endpointConfiguration: customExtensionEndpointConfiguration | null;
12160
12195
  }
12161
12196
 
12197
+ @entity model customDataProvidedResource extends accessPackageResource {
12198
+ notificationEndpointConfiguration: customExtensionEndpointConfiguration | null;
12199
+ }
12200
+
12201
+ @entity model customDataProvidedResourceAccessReviewUploadSession extends customDataProvidedResourceUploadSession {
12202
+ }
12203
+
12204
+ @entity model customDataProvidedResourceFile extends entity {
12205
+ name: string;
12206
+ size: int64;
12207
+ uploadedDateTime: offsetDateTime;
12208
+ }
12209
+
12210
+ @abstract
12211
+ @entity model customDataProvidedResourceUploadSession extends entity {
12212
+ @computed createdDateTime: offsetDateTime;
12213
+ data: reference.`microsoft.graph.customDataProvidedResourcePayloads`.data | null;
12214
+ isUploadDone: boolean;
12215
+ referenceId: string | null;
12216
+ stats: customDataProvidedResourceUploadStats;
12217
+ status: customDataProvidedResourceUploadStatus;
12218
+ @references files: customDataProvidedResourceFile[];
12219
+ }
12220
+
12162
12221
  @entity model customExtensionStageSetting extends entity {
12163
12222
  stage: accessPackageCustomExtensionStage;
12164
12223
  @references customExtension: customCalloutExtension | null;
@@ -12327,6 +12386,7 @@ files, events, and updates for people sharing a common interest or goal.
12327
12386
  heightAdjustableState: placeFeatureEnablement;
12328
12387
  mailboxDetails: mailboxDetails | null;
12329
12388
  mode: placeMode | null;
12389
+ servicePlans: placeServicePlanInfo[];
12330
12390
  }
12331
12391
 
12332
12392
  /**
@@ -13770,6 +13830,9 @@ files, events, and updates for people sharing a common interest or goal.
13770
13830
  @contains onPremisesSynchronization: onPremisesDirectorySynchronization[];
13771
13831
  @contains publicKeyInfrastructure: publicKeyInfrastructureRoot | null;
13772
13832
  @contains recovery: reference.`microsoft.graph.entraRecoveryServices`.recovery | null;
13833
+
13834
+ @privatePreview("remoteTenantGroupsAPI")
13835
+ @contains remoteTenantGroups: remoteTenantGroup[];
13773
13836
  @contains subscriptions: companySubscription[];
13774
13837
  }
13775
13838
 
@@ -15109,6 +15172,7 @@ within the time frame of their original request.
15109
15172
  @entity model identityGovernance extends MsGraph.SharedModels.entity {
15110
15173
  @contains accessReviews: accessReviewSet | null;
15111
15174
  @contains appConsent: appConsentApprovalRoute | null;
15175
+ @contains catalogs: accessPackageCatalog[];
15112
15176
  @contains entitlementManagement: entitlementManagement | null;
15113
15177
  @contains lifecycleWorkflows: reference.`microsoft.graph.identityGovernance`.lifecycleWorkflowsContainer | null;
15114
15178
  @contains privilegedAccess: privilegedAccessRoot | null;
@@ -16368,6 +16432,7 @@ within the time frame of their original request.
16368
16432
  @contains drive: drive | null;
16369
16433
  @contains items: listItem[];
16370
16434
  @contains operations: richLongRunningOperation[];
16435
+ @contains permissions: permission[];
16371
16436
  @contains subscriptions: subscription[];
16372
16437
  }
16373
16438
 
@@ -16379,6 +16444,7 @@ within the time frame of their original request.
16379
16444
  @contains documentSetVersions: documentSetVersion[];
16380
16445
  @contains driveItem: driveItem | null;
16381
16446
  @contains fields: fieldValueSet | null;
16447
+ @contains permissions: permission[];
16382
16448
  @contains versions: listItemVersion[];
16383
16449
  }
16384
16450
 
@@ -18450,6 +18516,7 @@ within the time frame of their original request.
18450
18516
  audioConferencing: audioConferencing | null;
18451
18517
  chatInfo: chatInfo | null;
18452
18518
  chatRestrictions: chatRestrictions | null;
18519
+ cloudVideoInteropInfo: cloudVideoInteropInfo | null;
18453
18520
  expiryDateTime: offsetDateTime | null;
18454
18521
  isEndToEndEncryptionEnabled: boolean | null;
18455
18522
  isEntryExitAnnounced: boolean | null;
@@ -18459,6 +18526,7 @@ within the time frame of their original request.
18459
18526
  lobbyBypassSettings: lobbyBypassSettings | null;
18460
18527
  meetingOptionsWebUrl: string | null;
18461
18528
  meetingSpokenLanguageTag: string | null;
18529
+ meetingType: onlineMeetingType | null;
18462
18530
  recordAutomatically: boolean | null;
18463
18531
  sensitivityLabelAssignment: onlineMeetingSensitivityLabelAssignment | null;
18464
18532
  shareMeetingChatHistoryDefault: meetingChatHistoryDefaultMode | null;
@@ -18855,6 +18923,7 @@ within the time frame of their original request.
18855
18923
  label: string | null;
18856
18924
  parentId: string | null;
18857
18925
  phone: string | null;
18926
+ placeId: string | null;
18858
18927
  tags: string[];
18859
18928
  @contains checkIns: checkInClaim[];
18860
18929
  }
@@ -19519,6 +19588,15 @@ within the time frame of their original request.
19519
19588
  @contains targetDeviceGroups: targetDeviceGroup[];
19520
19589
  }
19521
19590
 
19591
+ @privatePreview("remoteTenantGroupsAPI")
19592
+ @entity model remoteTenantGroup extends directoryObject {
19593
+ remoteGroupDisplayName: string | null;
19594
+ remoteGroupId: guid | null;
19595
+ remoteTenantDisplayName: string | null;
19596
+ remoteTenantId: guid | null;
19597
+ remoteTenantPrimaryDomain: string | null;
19598
+ }
19599
+
19522
19600
  @entity model reportRoot extends MsGraph.SharedModels.entity {
19523
19601
  @contains authenticationMethods: authenticationMethodsRoot | null;
19524
19602
  @contains dailyPrintUsageByPrinter: printUsageByPrinter[];
@@ -19759,7 +19837,6 @@ within the time frame of their original request.
19759
19837
  floorLabel: string | null;
19760
19838
  floorNumber: int32 | null;
19761
19839
  nickname: string;
19762
- placeId: string | null;
19763
19840
  teamsEnabledState: placeFeatureEnablement;
19764
19841
  videoDeviceName: string | null;
19765
19842
  }
@@ -20365,23 +20442,29 @@ within the time frame of their original request.
20365
20442
  appDisplayName: string | null;
20366
20443
  appId: string | null;
20367
20444
  appliedConditionalAccessPolicies: appliedConditionalAccessPolicy[] | null;
20445
+ authenticationAppDeviceDetails: authenticationAppDeviceDetails | null;
20368
20446
  clientAppUsed: string | null;
20369
20447
  conditionalAccessStatus: conditionalAccessStatus | null;
20370
20448
  correlationId: string | null;
20371
20449
  @computed createdDateTime: offsetDateTime;
20372
20450
  deviceDetail: deviceDetail | null;
20451
+ homeTenantId: string | null;
20373
20452
  ipAddress: string | null;
20374
20453
  isInteractive: boolean | null;
20375
20454
  location: signInLocation | null;
20376
20455
  resourceDisplayName: string | null;
20377
20456
  resourceId: string | null;
20457
+ resourceTenantId: string | null;
20378
20458
  riskDetail: riskDetail | null;
20379
20459
  riskEventTypes: riskEventType[] | null;
20380
20460
  riskEventTypes_v2: string[] | null;
20381
20461
  riskLevelAggregated: riskLevel | null;
20382
20462
  riskLevelDuringSignIn: riskLevel | null;
20383
20463
  riskState: riskState | null;
20464
+ servicePrincipalId: string | null;
20465
+ servicePrincipalName: string | null;
20384
20466
  status: signInStatus | null;
20467
+ userAgent: string | null;
20385
20468
  userDisplayName: string | null;
20386
20469
  userId: string;
20387
20470
  userPrincipalName: string | null;
@@ -22688,6 +22771,7 @@ within the time frame of their original request.
22688
22771
  @contains onPremisesConnections: cloudPcOnPremisesConnection[];
22689
22772
  @contains provisioningPolicies: cloudPcProvisioningPolicy[];
22690
22773
  @contains report: cloudPcReport | null;
22774
+ @contains servicePlans: cloudPcServicePlan[];
22691
22775
  @contains userSettings: cloudPcUserSetting[];
22692
22776
  }
22693
22777
 
@@ -22697,6 +22781,7 @@ within the time frame of their original request.
22697
22781
  displayName: string | null;
22698
22782
  endDateTime: dateTimeTimeZone | null;
22699
22783
  externalEventInformation: virtualEventExternalInformation[] | null;
22784
+ isRegistrationRequired: boolean | null;
22700
22785
  settings: virtualEventSettings | null;
22701
22786
  startDateTime: dateTimeTimeZone | null;
22702
22787
  status: virtualEventStatus | null;
@@ -22727,6 +22812,8 @@ within the time frame of their original request.
22727
22812
 
22728
22813
  @entity model virtualEventRegistrationConfiguration extends entity {
22729
22814
  capacity: int32 | null;
22815
+ isManualApprovalEnabled: boolean | null;
22816
+ isWaitlistEnabled: boolean | null;
22730
22817
  registrationWebUrl: string | null;
22731
22818
  @contains questions: virtualEventRegistrationQuestionBase[];
22732
22819
  }
@@ -22747,6 +22834,7 @@ within the time frame of their original request.
22747
22834
  }
22748
22835
 
22749
22836
  @entity model virtualEventSession extends onlineMeetingBase {
22837
+ capacity: int32 | null;
22750
22838
  endDateTime: dateTimeTimeZone | null;
22751
22839
  startDateTime: dateTimeTimeZone | null;
22752
22840
  videoOnDemandWebUrl: string | null;
@@ -22760,9 +22848,15 @@ within the time frame of their original request.
22760
22848
 
22761
22849
  @entity model virtualEventTownhall extends virtualEvent {
22762
22850
  audience: meetingAudience | null;
22851
+ capacity: int32 | null;
22763
22852
  coOrganizers: communicationsUserIdentity[] | null;
22764
22853
  invitedAttendees: identity[] | null;
22765
22854
  isInviteOnly: boolean | null;
22855
+ @contains registrationConfiguration: virtualEventTownhallRegistrationConfiguration | null;
22856
+ @contains registrations: virtualEventRegistration[];
22857
+ }
22858
+
22859
+ @entity model virtualEventTownhallRegistrationConfiguration extends virtualEventRegistrationConfiguration {
22766
22860
  }
22767
22861
 
22768
22862
  @entity model virtualEventWebinar extends virtualEvent {
@@ -22773,8 +22867,6 @@ within the time frame of their original request.
22773
22867
  }
22774
22868
 
22775
22869
  @entity model virtualEventWebinarRegistrationConfiguration extends virtualEventRegistrationConfiguration {
22776
- isManualApprovalEnabled: boolean | null;
22777
- isWaitlistEnabled: boolean | null;
22778
22870
  }
22779
22871
 
22780
22872
  @entity model voiceAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
@@ -25757,7 +25849,6 @@ within the time frame of their original request.
25757
25849
  emailAddress: string | null;
25758
25850
  mode: placeMode | null;
25759
25851
  nickname: string;
25760
- placeId: string | null;
25761
25852
  }
25762
25853
 
25763
25854
  @entity model x509CertificateAuthenticationMethodConfiguration extends authenticationMethodConfiguration {
@@ -27784,6 +27875,13 @@ within the time frame of their original request.
27784
27875
  unknownFutureValue: 7,
27785
27876
  }
27786
27877
 
27878
+ enum customDataProvidedResourceUploadStatus {
27879
+ active: 0,
27880
+ complete: 1,
27881
+ expired: 2,
27882
+ unknownFutureValue: 3,
27883
+ }
27884
+
27787
27885
  enum customExtensionCalloutInstanceStatus {
27788
27886
  calloutSent: 1,
27789
27887
  callbackReceived: 2,
@@ -30828,6 +30926,15 @@ within the time frame of their original request.
30828
30926
  coorganizer: 4,
30829
30927
  }
30830
30928
 
30929
+ enum onlineMeetingType {
30930
+ adhoc: 0,
30931
+ scheduled: 1,
30932
+ recurring: 2,
30933
+ broadcast: 3,
30934
+ meetnow: 4,
30935
+ unknownFutureValue: 5,
30936
+ }
30937
+
30831
30938
  @graphFlags
30832
30939
  enum onlineMeetingVideoDisabledReason {
30833
30940
  watermarkProtection: 1,
@@ -36752,6 +36859,25 @@ namespace reference.`microsoft.graph.callRecords` {
36752
36859
  unknownFutureValue: 7,
36753
36860
  }
36754
36861
 
36862
+ }
36863
+ @publicNamespace("microsoft.graph.customdataprovidedresourcepayloads")
36864
+ namespace reference.`microsoft.graph.customDataProvidedResourcePayloads` {
36865
+ @complex model accessReviewContextData extends accessReviewContextDataBase {
36866
+ }
36867
+
36868
+ @abstract
36869
+ @complex model accessReviewContextDataBase extends data {
36870
+ reviewDefinitionId: string;
36871
+ reviewInstanceId: string;
36872
+ }
36873
+
36874
+ @complex model applyDecisionContextData extends accessReviewContextDataBase {
36875
+ }
36876
+
36877
+ @abstract
36878
+ @complex model data {
36879
+ }
36880
+
36755
36881
  }
36756
36882
  @publicNamespace("microsoft.graph.entrarecoveryservices")
36757
36883
  namespace reference.`microsoft.graph.entraRecoveryServices` {
@@ -15,6 +15,8 @@ scalar binary; //TODO: Enables support for Edm.Binary
15
15
  // Metadata item DeprecatedDefinition_SynchronizationSecret_Deprecation was already defined with a different value.
16
16
  @deprecatedDefinition("AccessReviewReportBreakingChanges", "<ChangeLogCategory>", "2021-07-30", "2022-01-30", "This property is being deprecated. Use the fulfilledDateTime value in the individual report instance instead")
17
17
  // Metadata item DeprecatedDefinition_AccessReviewReportBreakingChanges was already defined with a different value.
18
+ @deprecatedDefinition("beta:DisplayNameRename", "<ChangeLogCategory>", "2026-04-28", "2027-04-28", "The agentDisplayName property is deprecated. Use displayName instead.")
19
+ @deprecatedDefinition("beta:IdentityIDRename", "<ChangeLogCategory>", "2026-04-28", "2027-04-28", "The agentId property is deprecated. Use identityId instead.")
18
20
  @deprecatedDefinition("AuthenticationStrengthsRemove", "<ChangeLogCategory>", "2023-02-01", "2023-03-31", "The 'authenticationStrengths' segment is deprecated. Please use 'authenticationStrength' instead.")
19
21
  @deprecatedDefinition("credentialUserRegistrationDetails", "<ChangeLogCategory>", "2023-06-21", "2024-06-30", "The Reporting userCredentialUsageDetails API is deprecated and will stop returning data on June 30, 2025. Please use the new userEventsSummary API.")
20
22
  // Metadata item DeprecatedDefinition_credentialUserRegistrationDetails was already defined with a different value.
@@ -290,6 +292,10 @@ namespace reference.`microsoft.graph` {
290
292
  orientation: pageOrientation | null;
291
293
  }
292
294
 
295
+ @complex model agentSignIn extends signInIdentity {
296
+ agentServicePrincipalId: string | null;
297
+ }
298
+
293
299
  @complex model agreementFileData {
294
300
  data: binary | null;
295
301
  }
@@ -1101,12 +1107,16 @@ namespace reference.`microsoft.graph` {
1101
1107
  }
1102
1108
 
1103
1109
  @complex model conditionalAccessClientApplications {
1110
+ agentIdServicePrincipalFilter: conditionalAccessFilter | null;
1111
+ excludeAgentIdServicePrincipals: string[];
1104
1112
  excludeServicePrincipals: string[];
1113
+ includeAgentIdServicePrincipals: string[];
1105
1114
  includeServicePrincipals: string[];
1106
1115
  servicePrincipalFilter: conditionalAccessFilter | null;
1107
1116
  }
1108
1117
 
1109
1118
  @complex model conditionalAccessConditionSet {
1119
+ agentIdRiskLevels: conditionalAccessAgentIdRiskLevels | null;
1110
1120
  applications: conditionalAccessApplications | null;
1111
1121
  authenticationFlows: conditionalAccessAuthenticationFlows | null;
1112
1122
  clientApplications: conditionalAccessClientApplications | null;
@@ -4113,6 +4123,7 @@ namespace reference.`microsoft.graph` {
4113
4123
  appId: string | null;
4114
4124
  serviceArea: string | null;
4115
4125
  tenantId: string | null;
4126
+ throttledRequests: int64 | null;
4116
4127
  usageDateTime: offsetDateTime | null;
4117
4128
  usageMB: int64 | null;
4118
4129
  usageRequests: int64 | null;
@@ -4251,6 +4262,7 @@ namespace reference.`microsoft.graph` {
4251
4262
  }
4252
4263
 
4253
4264
  @complex model signInConditions {
4265
+ agentIdRiskLevel: agentIdRiskLevel | null;
4254
4266
  authenticationFlow: authenticationFlow | null;
4255
4267
  clientAppType: conditionalAccessClientApp | null;
4256
4268
  country: string | null;
@@ -4504,6 +4516,9 @@ namespace reference.`microsoft.graph` {
4504
4516
  tabId: string | null;
4505
4517
  }
4506
4518
 
4519
+ @complex model targetAgentIdentitySponsorsOrOwners extends userSet {
4520
+ }
4521
+
4507
4522
  @complex model targetResource {
4508
4523
  displayName: string | null;
4509
4524
  groupType: groupType | null;
@@ -5812,6 +5827,34 @@ namespace reference.`microsoft.graph` {
5812
5827
  @references sponsors: directoryObject[];
5813
5828
  }
5814
5829
 
5830
+ @entity model agentRiskDetection extends entity {
5831
+ activityDateTime: offsetDateTime | null;
5832
+ additionalInfo: string | null;
5833
+
5834
+ @graphDeprecated("beta:DisplayNameRename")
5835
+ agentDisplayName: string | null;
5836
+
5837
+ @graphDeprecated("beta:IdentityIDRename")
5838
+ agentId: string | null;
5839
+ blueprintId: string | null;
5840
+ clientSessionId: string | null;
5841
+ detectedDateTime: offsetDateTime | null;
5842
+ detectionTimingType: riskDetectionTimingType;
5843
+ displayName: string;
5844
+ identityId: string;
5845
+ identityType: agentIdentityType;
5846
+ @computed lastModifiedDateTime: offsetDateTime | null;
5847
+ riskDetail: riskDetail;
5848
+ riskEventType: string;
5849
+ riskEvidence: string | null;
5850
+ riskLevel: riskLevel;
5851
+ riskState: riskState;
5852
+ signInClientDisplayName: string | null;
5853
+ signInCorrelationId: string | null;
5854
+ signInRequestId: string | null;
5855
+ source: string | null;
5856
+ }
5857
+
5815
5858
  @open
5816
5859
  @entity model agentUser extends user {
5817
5860
  }
@@ -7753,7 +7796,9 @@ namespace reference.`microsoft.graph` {
7753
7796
  }
7754
7797
 
7755
7798
  @entity model identityProtectionRoot extends MsGraph.SharedModels.entity {
7799
+ @contains agentRiskDetections: agentRiskDetection[];
7756
7800
  @contains riskDetections: riskDetection[];
7801
+ @contains riskyAgents: riskyAgent[];
7757
7802
  @contains riskyServicePrincipals: riskyServicePrincipal[];
7758
7803
  @contains riskyUsers: riskyUser[];
7759
7804
  @contains servicePrincipalRiskDetections: servicePrincipalRiskDetection[];
@@ -9320,6 +9365,31 @@ namespace reference.`microsoft.graph` {
9320
9365
  userPrincipalName: string | null;
9321
9366
  }
9322
9367
 
9368
+ @entity model riskyAgent extends entity {
9369
+ agentDisplayName: string | null;
9370
+ blueprintId: string | null;
9371
+ identityType: agentIdentityType;
9372
+ isDeleted: boolean;
9373
+ isEnabled: boolean;
9374
+ isProcessing: boolean;
9375
+ riskDetail: riskDetail;
9376
+ @computed riskLastModifiedDateTime: offsetDateTime | null;
9377
+ riskLevel: riskLevel;
9378
+ riskState: riskState;
9379
+ }
9380
+
9381
+ @entity model riskyAgentIdentity extends riskyAgent {
9382
+ @references agentIdentity: agentIdentity | null;
9383
+ }
9384
+
9385
+ @entity model riskyAgentIdentityBlueprintPrincipal extends riskyAgent {
9386
+ @references agentIdentityBlueprintPrincipal: agentIdentityBlueprintPrincipal | null;
9387
+ }
9388
+
9389
+ @entity model riskyAgentUser extends riskyAgent {
9390
+ @references agentUser: agentUser | null;
9391
+ }
9392
+
9323
9393
  @entity model riskyServicePrincipal extends entity {
9324
9394
 
9325
9395
  @graphDeprecated("accountEnabledDeprecated")
@@ -11435,6 +11505,8 @@ namespace reference.`microsoft.graph` {
11435
11505
  target: 1,
11436
11506
  createdBy: 2,
11437
11507
  unknownFutureValue: 99,
11508
+ targetManager: 100,
11509
+ targetAgentIdentitySponsorOrOwner: 101,
11438
11510
  }
11439
11511
 
11440
11512
  enum accessPackageAssignmentRequestFilterByCurrentUserOptions {
@@ -11442,6 +11514,10 @@ namespace reference.`microsoft.graph` {
11442
11514
  createdBy: 2,
11443
11515
  approver: 3,
11444
11516
  unknownFutureValue: 99,
11517
+ targetOrRequestor: 100,
11518
+ targetManager: 101,
11519
+ requestForOthers: 102,
11520
+ targetAgentIdentitySponsorOrOwner: 103,
11445
11521
  }
11446
11522
 
11447
11523
  enum accessPackageCustomExtensionHandlerStatus {
@@ -11542,6 +11618,22 @@ namespace reference.`microsoft.graph` {
11542
11618
  unknownFutureValue: 3,
11543
11619
  }
11544
11620
 
11621
+ enum agentIdentityType {
11622
+ agentIdentity: 0,
11623
+ agentUser: 1,
11624
+ unknownFutureValue: 2,
11625
+ agentIdentityBlueprintPrincipal: 3,
11626
+ user: 4,
11627
+ }
11628
+
11629
+ enum agentIdRiskLevel {
11630
+ none: 0,
11631
+ low: 1,
11632
+ medium: 2,
11633
+ high: 4,
11634
+ unknownFutureValue: 8,
11635
+ }
11636
+
11545
11637
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
11546
11638
  enum agentStatus {
11547
11639
  active: 0,
@@ -12197,6 +12289,14 @@ namespace reference.`microsoft.graph` {
12197
12289
  Label: 0,
12198
12290
  }
12199
12291
 
12292
+ @graphFlags
12293
+ enum conditionalAccessAgentIdRiskLevels {
12294
+ low: 1,
12295
+ medium: 2,
12296
+ high: 4,
12297
+ unknownFutureValue: 8,
12298
+ }
12299
+
12200
12300
  enum conditionalAccessClientApp {
12201
12301
  all: 0,
12202
12302
  browser: 1,
@@ -12742,12 +12842,12 @@ namespace reference.`microsoft.graph` {
12742
12842
  unknownFutureValue: 2,
12743
12843
  }
12744
12844
 
12745
- #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
12746
12845
  enum groupAccessType {
12747
12846
  none: 0,
12748
12847
  private: 1,
12749
12848
  secret: 2,
12750
12849
  public: 3,
12850
+ unknownFutureValue: 4,
12751
12851
  }
12752
12852
 
12753
12853
  enum groupPrivacy {
@@ -13701,7 +13801,10 @@ namespace reference.`microsoft.graph` {
13701
13801
  userChangedPasswordOnPremises: 15,
13702
13802
  adminDismissedRiskForSignIn: 16,
13703
13803
  adminConfirmedAccountSafe: 17,
13704
- microsoftRevokedSessions: 18,
13804
+ adminConfirmedAgentSafe: 18,
13805
+ adminConfirmedAgentCompromised: 19,
13806
+ adminDismissedRiskForAgent: 20,
13807
+ microsoftRevokedSessions: 21,
13705
13808
  }
13706
13809
 
13707
13810
  enum riskDetectionTimingType {
@@ -14726,6 +14829,8 @@ namespace reference.`microsoft.graph` {
14726
14829
  insiderRisk: 131072,
14727
14830
  authenticationFlow: 262144,
14728
14831
  unknownFutureValue: 524288,
14832
+ agentIdRisk: 1048576,
14833
+ agentIdentities: 2097152,
14729
14834
  }
14730
14835
 
14731
14836
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."