@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.
- package/.rush/temp/package-deps_build.json +18 -18
- package/.rush/temp/shrinkwrap-deps.json +10 -10
- package/CHANGELOG.md +9 -0
- package/lib/Bleu/Beta/main.tsp +114 -3
- package/lib/Bleu/V1.0/main.tsp +295 -11
- package/lib/Delos/Beta/main.tsp +212 -3
- package/lib/Delos/V1.0/main.tsp +225 -0
- package/lib/Fairfax/Beta/main.tsp +296 -2
- package/lib/Fairfax/V1.0/main.tsp +267 -24
- package/lib/GovSG/V1.0/main.tsp +27 -0
- package/lib/Mooncake/Beta/main.tsp +145 -1
- package/lib/Mooncake/V1.0/main.tsp +64 -0
- package/lib/Prod/Beta/main.tsp +608 -6
- package/lib/Prod/V1.0/main.tsp +130 -4
- package/lib/USNat/Beta/main.tsp +107 -2
- package/lib/USNat/V1.0/main.tsp +62 -21
- package/lib/USSec/Beta/main.tsp +124 -2
- package/lib/USSec/V1.0/main.tsp +62 -21
- package/package.json +2 -2
package/lib/USNat/V1.0/main.tsp
CHANGED
|
@@ -280,6 +280,9 @@ namespace reference.`microsoft.graph` {
|
|
|
280
280
|
@complex model allDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
281
281
|
}
|
|
282
282
|
|
|
283
|
+
@complex model allDomains extends validatingDomains {
|
|
284
|
+
}
|
|
285
|
+
|
|
283
286
|
@complex model alternativeSecurityId {
|
|
284
287
|
identityProvider: string | null;
|
|
285
288
|
key: binary | null;
|
|
@@ -496,6 +499,13 @@ namespace reference.`microsoft.graph` {
|
|
|
496
499
|
authenticationContextValue: string | null;
|
|
497
500
|
}
|
|
498
501
|
|
|
502
|
+
@complex model authenticationAppDeviceDetails {
|
|
503
|
+
appVersion: string | null;
|
|
504
|
+
clientApp: string | null;
|
|
505
|
+
deviceId: string | null;
|
|
506
|
+
operatingSystem: string | null;
|
|
507
|
+
}
|
|
508
|
+
|
|
499
509
|
@complex model authenticationBehaviors {
|
|
500
510
|
blockAzureADGraphAccess: boolean | null;
|
|
501
511
|
removeUnverifiedEmailClaim: boolean | null;
|
|
@@ -1466,6 +1476,10 @@ namespace reference.`microsoft.graph` {
|
|
|
1466
1476
|
users: string[] | null;
|
|
1467
1477
|
}
|
|
1468
1478
|
|
|
1479
|
+
@complex model enumeratedDomains extends validatingDomains {
|
|
1480
|
+
domainNames: string[];
|
|
1481
|
+
}
|
|
1482
|
+
|
|
1469
1483
|
@complex model enumeratedScopes extends inheritableScopes {
|
|
1470
1484
|
scopes: string[];
|
|
1471
1485
|
}
|
|
@@ -3380,6 +3394,9 @@ namespace reference.`microsoft.graph` {
|
|
|
3380
3394
|
tabId: string | null;
|
|
3381
3395
|
}
|
|
3382
3396
|
|
|
3397
|
+
@complex model targetAgentIdentitySponsorsOrOwners extends subjectSet {
|
|
3398
|
+
}
|
|
3399
|
+
|
|
3383
3400
|
@complex model targetApplicationOwners extends subjectSet {
|
|
3384
3401
|
}
|
|
3385
3402
|
|
|
@@ -3792,10 +3809,9 @@ namespace reference.`microsoft.graph` {
|
|
|
3792
3809
|
userId: string | null;
|
|
3793
3810
|
}
|
|
3794
3811
|
|
|
3795
|
-
@
|
|
3796
|
-
|
|
3797
|
-
|
|
3798
|
-
workLocationType: workLocationType;
|
|
3812
|
+
@abstract
|
|
3813
|
+
@complex model validatingDomains {
|
|
3814
|
+
rootDomains: rootDomains;
|
|
3799
3815
|
}
|
|
3800
3816
|
|
|
3801
3817
|
@complex model verifiedDomain {
|
|
@@ -5633,6 +5649,10 @@ namespace reference.`microsoft.graph` {
|
|
|
5633
5649
|
subject: string | null;
|
|
5634
5650
|
}
|
|
5635
5651
|
|
|
5652
|
+
@entity model federatedTokenValidationPolicy extends directoryObject {
|
|
5653
|
+
validatingDomains: validatingDomains;
|
|
5654
|
+
}
|
|
5655
|
+
|
|
5636
5656
|
@entity model fido2AuthenticationMethod extends authenticationMethod {
|
|
5637
5657
|
aaGuid: string | null;
|
|
5638
5658
|
attestationCertificates: string[] | null;
|
|
@@ -5680,6 +5700,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5680
5700
|
|
|
5681
5701
|
@open
|
|
5682
5702
|
@entity model group extends directoryObject {
|
|
5703
|
+
accessType: groupAccessType | null;
|
|
5683
5704
|
allowExternalSenders: boolean | null;
|
|
5684
5705
|
assignedLabels: assignedLabel[] | null;
|
|
5685
5706
|
assignedLicenses: assignedLicense[] | null;
|
|
@@ -5696,6 +5717,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5696
5717
|
infoCatalogs: string[];
|
|
5697
5718
|
isArchived: boolean | null;
|
|
5698
5719
|
isAssignableToRole: boolean | null;
|
|
5720
|
+
isFavorite: boolean | null;
|
|
5699
5721
|
isManagementRestricted: boolean | null;
|
|
5700
5722
|
isSubscribedByMail: boolean | null;
|
|
5701
5723
|
licenseProcessingState: licenseProcessingState | null;
|
|
@@ -5723,7 +5745,9 @@ namespace reference.`microsoft.graph` {
|
|
|
5723
5745
|
serviceProvisioningErrors: serviceProvisioningError[] | null;
|
|
5724
5746
|
theme: string | null;
|
|
5725
5747
|
uniqueName: string | null;
|
|
5748
|
+
unseenConversationsCount: int32 | null;
|
|
5726
5749
|
unseenCount: int32 | null;
|
|
5750
|
+
unseenMessagesCount: int32 | null;
|
|
5727
5751
|
visibility: string | null;
|
|
5728
5752
|
welcomeMessageEnabled: boolean | null;
|
|
5729
5753
|
@contains acceptedSenders: directoryObject[];
|
|
@@ -5957,6 +5981,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5957
5981
|
@contains drive: drive | null;
|
|
5958
5982
|
@contains items: listItem[];
|
|
5959
5983
|
@contains operations: richLongRunningOperation[];
|
|
5984
|
+
@contains permissions: permission[];
|
|
5960
5985
|
@contains subscriptions: subscription[];
|
|
5961
5986
|
}
|
|
5962
5987
|
|
|
@@ -5967,6 +5992,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5967
5992
|
@contains documentSetVersions: documentSetVersion[];
|
|
5968
5993
|
@contains driveItem: driveItem | null;
|
|
5969
5994
|
@contains fields: fieldValueSet | null;
|
|
5995
|
+
@contains permissions: permission[];
|
|
5970
5996
|
@contains versions: listItemVersion[];
|
|
5971
5997
|
}
|
|
5972
5998
|
|
|
@@ -6553,6 +6579,7 @@ namespace reference.`microsoft.graph` {
|
|
|
6553
6579
|
@contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
|
|
6554
6580
|
@contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
|
|
6555
6581
|
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
6582
|
+
@contains federatedTokenValidationPolicy: federatedTokenValidationPolicy | null;
|
|
6556
6583
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
6557
6584
|
@contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
|
|
6558
6585
|
@contains permissionGrantPolicies: permissionGrantPolicy[];
|
|
@@ -6583,7 +6610,6 @@ namespace reference.`microsoft.graph` {
|
|
|
6583
6610
|
activity: string | null;
|
|
6584
6611
|
availability: string | null;
|
|
6585
6612
|
statusMessage: presenceStatusMessage | null;
|
|
6586
|
-
workLocation: userWorkLocation | null;
|
|
6587
6613
|
}
|
|
6588
6614
|
|
|
6589
6615
|
@entity model privilegedAccessGroup extends entity {
|
|
@@ -7185,23 +7211,29 @@ namespace reference.`microsoft.graph` {
|
|
|
7185
7211
|
appDisplayName: string | null;
|
|
7186
7212
|
appId: string | null;
|
|
7187
7213
|
appliedConditionalAccessPolicies: appliedConditionalAccessPolicy[] | null;
|
|
7214
|
+
authenticationAppDeviceDetails: authenticationAppDeviceDetails | null;
|
|
7188
7215
|
clientAppUsed: string | null;
|
|
7189
7216
|
conditionalAccessStatus: conditionalAccessStatus | null;
|
|
7190
7217
|
correlationId: string | null;
|
|
7191
7218
|
@computed createdDateTime: offsetDateTime;
|
|
7192
7219
|
deviceDetail: deviceDetail | null;
|
|
7220
|
+
homeTenantId: string | null;
|
|
7193
7221
|
ipAddress: string | null;
|
|
7194
7222
|
isInteractive: boolean | null;
|
|
7195
7223
|
location: signInLocation | null;
|
|
7196
7224
|
resourceDisplayName: string | null;
|
|
7197
7225
|
resourceId: string | null;
|
|
7226
|
+
resourceTenantId: string | null;
|
|
7198
7227
|
riskDetail: riskDetail | null;
|
|
7199
7228
|
riskEventTypes: riskEventType[] | null;
|
|
7200
7229
|
riskEventTypes_v2: string[] | null;
|
|
7201
7230
|
riskLevelAggregated: riskLevel | null;
|
|
7202
7231
|
riskLevelDuringSignIn: riskLevel | null;
|
|
7203
7232
|
riskState: riskState | null;
|
|
7233
|
+
servicePrincipalId: string | null;
|
|
7234
|
+
servicePrincipalName: string | null;
|
|
7204
7235
|
status: signInStatus | null;
|
|
7236
|
+
userAgent: string | null;
|
|
7205
7237
|
userDisplayName: string | null;
|
|
7206
7238
|
userId: string;
|
|
7207
7239
|
userPrincipalName: string | null;
|
|
@@ -8305,6 +8337,8 @@ namespace reference.`microsoft.graph` {
|
|
|
8305
8337
|
target: 1,
|
|
8306
8338
|
createdBy: 2,
|
|
8307
8339
|
unknownFutureValue: 99,
|
|
8340
|
+
targetManager: 100,
|
|
8341
|
+
targetAgentIdentitySponsorOrOwner: 101,
|
|
8308
8342
|
}
|
|
8309
8343
|
|
|
8310
8344
|
enum accessPackageAssignmentRequestFilterByCurrentUserOptions {
|
|
@@ -8312,6 +8346,10 @@ namespace reference.`microsoft.graph` {
|
|
|
8312
8346
|
createdBy: 2,
|
|
8313
8347
|
approver: 3,
|
|
8314
8348
|
unknownFutureValue: 99,
|
|
8349
|
+
targetOrRequestor: 100,
|
|
8350
|
+
targetManager: 101,
|
|
8351
|
+
requestForOthers: 102,
|
|
8352
|
+
targetAgentIdentitySponsorOrOwner: 103,
|
|
8315
8353
|
}
|
|
8316
8354
|
|
|
8317
8355
|
enum accessPackageAssignmentState {
|
|
@@ -8507,6 +8545,7 @@ namespace reference.`microsoft.graph` {
|
|
|
8507
8545
|
allDirectoryServicePrincipals: 6,
|
|
8508
8546
|
allConfiguredConnectedOrganizationUsers: 7,
|
|
8509
8547
|
allExternalUsers: 8,
|
|
8548
|
+
allDirectoryAgentIdentities: 9,
|
|
8510
8549
|
unknownFutureValue: 10,
|
|
8511
8550
|
}
|
|
8512
8551
|
|
|
@@ -9378,6 +9417,14 @@ namespace reference.`microsoft.graph` {
|
|
|
9378
9417
|
unknownFutureValue: 2,
|
|
9379
9418
|
}
|
|
9380
9419
|
|
|
9420
|
+
enum groupAccessType {
|
|
9421
|
+
none: 0,
|
|
9422
|
+
private: 1,
|
|
9423
|
+
secret: 2,
|
|
9424
|
+
public: 3,
|
|
9425
|
+
unknownFutureValue: 4,
|
|
9426
|
+
}
|
|
9427
|
+
|
|
9381
9428
|
enum groupPrivacy {
|
|
9382
9429
|
unspecified: 0,
|
|
9383
9430
|
public: 1,
|
|
@@ -10137,6 +10184,16 @@ namespace reference.`microsoft.graph` {
|
|
|
10137
10184
|
unknownFutureValue: 4,
|
|
10138
10185
|
}
|
|
10139
10186
|
|
|
10187
|
+
enum rootDomains {
|
|
10188
|
+
none: 0,
|
|
10189
|
+
all: 1,
|
|
10190
|
+
allFederated: 2,
|
|
10191
|
+
allManaged: 3,
|
|
10192
|
+
enumerated: 4,
|
|
10193
|
+
allManagedAndEnumeratedFederated: 5,
|
|
10194
|
+
unknownFutureValue: 6,
|
|
10195
|
+
}
|
|
10196
|
+
|
|
10140
10197
|
enum routingType {
|
|
10141
10198
|
forwarded: 0,
|
|
10142
10199
|
lookup: 1,
|
|
@@ -10800,22 +10857,6 @@ namespace reference.`microsoft.graph` {
|
|
|
10800
10857
|
failed: 3,
|
|
10801
10858
|
}
|
|
10802
10859
|
|
|
10803
|
-
enum workLocationSource {
|
|
10804
|
-
none: 0,
|
|
10805
|
-
manual: 1,
|
|
10806
|
-
scheduled: 2,
|
|
10807
|
-
automatic: 3,
|
|
10808
|
-
unknownFutureValue: 4,
|
|
10809
|
-
}
|
|
10810
|
-
|
|
10811
|
-
enum workLocationType {
|
|
10812
|
-
unspecified: 0,
|
|
10813
|
-
office: 1,
|
|
10814
|
-
remote: 2,
|
|
10815
|
-
timeOff: 3,
|
|
10816
|
-
unknownFutureValue: 4,
|
|
10817
|
-
}
|
|
10818
|
-
|
|
10819
10860
|
enum x509CertificateAffinityLevel {
|
|
10820
10861
|
low: 0,
|
|
10821
10862
|
high: 1,
|
package/lib/USSec/Beta/main.tsp
CHANGED
|
@@ -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.
|
|
@@ -294,6 +296,10 @@ namespace reference.`microsoft.graph` {
|
|
|
294
296
|
orientation: pageOrientation | null;
|
|
295
297
|
}
|
|
296
298
|
|
|
299
|
+
@complex model agentSignIn extends signInIdentity {
|
|
300
|
+
agentServicePrincipalId: string | null;
|
|
301
|
+
}
|
|
302
|
+
|
|
297
303
|
@complex model agreementFileData {
|
|
298
304
|
data: binary | null;
|
|
299
305
|
}
|
|
@@ -1127,12 +1133,16 @@ namespace reference.`microsoft.graph` {
|
|
|
1127
1133
|
}
|
|
1128
1134
|
|
|
1129
1135
|
@complex model conditionalAccessClientApplications {
|
|
1136
|
+
agentIdServicePrincipalFilter: conditionalAccessFilter | null;
|
|
1137
|
+
excludeAgentIdServicePrincipals: string[];
|
|
1130
1138
|
excludeServicePrincipals: string[];
|
|
1139
|
+
includeAgentIdServicePrincipals: string[];
|
|
1131
1140
|
includeServicePrincipals: string[];
|
|
1132
1141
|
servicePrincipalFilter: conditionalAccessFilter | null;
|
|
1133
1142
|
}
|
|
1134
1143
|
|
|
1135
1144
|
@complex model conditionalAccessConditionSet {
|
|
1145
|
+
agentIdRiskLevels: conditionalAccessAgentIdRiskLevels | null;
|
|
1136
1146
|
applications: conditionalAccessApplications | null;
|
|
1137
1147
|
authenticationFlows: conditionalAccessAuthenticationFlows | null;
|
|
1138
1148
|
clientApplications: conditionalAccessClientApplications | null;
|
|
@@ -1894,6 +1904,10 @@ namespace reference.`microsoft.graph` {
|
|
|
1894
1904
|
discoveredSensitiveTypes: discoveredSensitiveType[] | null;
|
|
1895
1905
|
}
|
|
1896
1906
|
|
|
1907
|
+
@complex model evaluationScope {
|
|
1908
|
+
type: evaluationScopeType;
|
|
1909
|
+
}
|
|
1910
|
+
|
|
1897
1911
|
@abstract
|
|
1898
1912
|
@complex model eventMessageDetail {
|
|
1899
1913
|
}
|
|
@@ -3592,6 +3606,9 @@ namespace reference.`microsoft.graph` {
|
|
|
3592
3606
|
@complex model policyLocationDomain extends policyLocation {
|
|
3593
3607
|
}
|
|
3594
3608
|
|
|
3609
|
+
@complex model policyLocationTool extends policyLocation {
|
|
3610
|
+
}
|
|
3611
|
+
|
|
3595
3612
|
@complex model policyLocationUrl extends policyLocation {
|
|
3596
3613
|
}
|
|
3597
3614
|
|
|
@@ -3599,6 +3616,7 @@ namespace reference.`microsoft.graph` {
|
|
|
3599
3616
|
@complex model policyScopeBase {
|
|
3600
3617
|
activities: userActivityTypes;
|
|
3601
3618
|
executionMode: executionMode;
|
|
3619
|
+
locationExclusions: policyLocation[];
|
|
3602
3620
|
locations: policyLocation[];
|
|
3603
3621
|
policyActions: dlpActionInfo[];
|
|
3604
3622
|
}
|
|
@@ -3675,6 +3693,7 @@ namespace reference.`microsoft.graph` {
|
|
|
3675
3693
|
activityMetadata: activityMetadata;
|
|
3676
3694
|
contentEntries: processContentMetadataBase[];
|
|
3677
3695
|
deviceMetadata: deviceMetadata;
|
|
3696
|
+
evaluationScope: evaluationScope | null;
|
|
3678
3697
|
integratedAppMetadata: integratedApplicationMetadata;
|
|
3679
3698
|
protectedAppMetadata: protectedApplicationMetadata | null;
|
|
3680
3699
|
}
|
|
@@ -3732,6 +3751,7 @@ namespace reference.`microsoft.graph` {
|
|
|
3732
3751
|
|
|
3733
3752
|
@complex model protectedApplicationMetadata extends integratedApplicationMetadata {
|
|
3734
3753
|
applicationLocation: policyLocation | null;
|
|
3754
|
+
sourceLocation: policyLocation | null;
|
|
3735
3755
|
}
|
|
3736
3756
|
|
|
3737
3757
|
@complex model protectedContent {
|
|
@@ -4314,6 +4334,7 @@ namespace reference.`microsoft.graph` {
|
|
|
4314
4334
|
appId: string | null;
|
|
4315
4335
|
serviceArea: string | null;
|
|
4316
4336
|
tenantId: string | null;
|
|
4337
|
+
throttledRequests: int64 | null;
|
|
4317
4338
|
usageDateTime: offsetDateTime | null;
|
|
4318
4339
|
usageMB: int64 | null;
|
|
4319
4340
|
usageRequests: int64 | null;
|
|
@@ -4452,6 +4473,7 @@ namespace reference.`microsoft.graph` {
|
|
|
4452
4473
|
}
|
|
4453
4474
|
|
|
4454
4475
|
@complex model signInConditions {
|
|
4476
|
+
agentIdRiskLevel: agentIdRiskLevel | null;
|
|
4455
4477
|
authenticationFlow: authenticationFlow | null;
|
|
4456
4478
|
clientAppType: conditionalAccessClientApp | null;
|
|
4457
4479
|
country: string | null;
|
|
@@ -4705,6 +4727,9 @@ namespace reference.`microsoft.graph` {
|
|
|
4705
4727
|
tabId: string | null;
|
|
4706
4728
|
}
|
|
4707
4729
|
|
|
4730
|
+
@complex model targetAgentIdentitySponsorsOrOwners extends userSet {
|
|
4731
|
+
}
|
|
4732
|
+
|
|
4708
4733
|
@complex model targetResource {
|
|
4709
4734
|
displayName: string | null;
|
|
4710
4735
|
groupType: groupType | null;
|
|
@@ -6036,6 +6061,34 @@ namespace reference.`microsoft.graph` {
|
|
|
6036
6061
|
@references sponsors: directoryObject[];
|
|
6037
6062
|
}
|
|
6038
6063
|
|
|
6064
|
+
@entity model agentRiskDetection extends entity {
|
|
6065
|
+
activityDateTime: offsetDateTime | null;
|
|
6066
|
+
additionalInfo: string | null;
|
|
6067
|
+
|
|
6068
|
+
@graphDeprecated("beta:DisplayNameRename")
|
|
6069
|
+
agentDisplayName: string | null;
|
|
6070
|
+
|
|
6071
|
+
@graphDeprecated("beta:IdentityIDRename")
|
|
6072
|
+
agentId: string | null;
|
|
6073
|
+
blueprintId: string | null;
|
|
6074
|
+
clientSessionId: string | null;
|
|
6075
|
+
detectedDateTime: offsetDateTime | null;
|
|
6076
|
+
detectionTimingType: riskDetectionTimingType;
|
|
6077
|
+
displayName: string;
|
|
6078
|
+
identityId: string;
|
|
6079
|
+
identityType: agentIdentityType;
|
|
6080
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
6081
|
+
riskDetail: riskDetail;
|
|
6082
|
+
riskEventType: string;
|
|
6083
|
+
riskEvidence: string | null;
|
|
6084
|
+
riskLevel: riskLevel;
|
|
6085
|
+
riskState: riskState;
|
|
6086
|
+
signInClientDisplayName: string | null;
|
|
6087
|
+
signInCorrelationId: string | null;
|
|
6088
|
+
signInRequestId: string | null;
|
|
6089
|
+
source: string | null;
|
|
6090
|
+
}
|
|
6091
|
+
|
|
6039
6092
|
@open
|
|
6040
6093
|
@entity model agentUser extends user {
|
|
6041
6094
|
}
|
|
@@ -7978,7 +8031,9 @@ namespace reference.`microsoft.graph` {
|
|
|
7978
8031
|
}
|
|
7979
8032
|
|
|
7980
8033
|
@entity model identityProtectionRoot extends MsGraph.SharedModels.entity {
|
|
8034
|
+
@contains agentRiskDetections: agentRiskDetection[];
|
|
7981
8035
|
@contains riskDetections: riskDetection[];
|
|
8036
|
+
@contains riskyAgents: riskyAgent[];
|
|
7982
8037
|
@contains riskyServicePrincipals: riskyServicePrincipal[];
|
|
7983
8038
|
@contains riskyUsers: riskyUser[];
|
|
7984
8039
|
@contains servicePrincipalRiskDetections: servicePrincipalRiskDetection[];
|
|
@@ -9546,6 +9601,31 @@ namespace reference.`microsoft.graph` {
|
|
|
9546
9601
|
userPrincipalName: string | null;
|
|
9547
9602
|
}
|
|
9548
9603
|
|
|
9604
|
+
@entity model riskyAgent extends entity {
|
|
9605
|
+
agentDisplayName: string | null;
|
|
9606
|
+
blueprintId: string | null;
|
|
9607
|
+
identityType: agentIdentityType;
|
|
9608
|
+
isDeleted: boolean;
|
|
9609
|
+
isEnabled: boolean;
|
|
9610
|
+
isProcessing: boolean;
|
|
9611
|
+
riskDetail: riskDetail;
|
|
9612
|
+
@computed riskLastModifiedDateTime: offsetDateTime | null;
|
|
9613
|
+
riskLevel: riskLevel;
|
|
9614
|
+
riskState: riskState;
|
|
9615
|
+
}
|
|
9616
|
+
|
|
9617
|
+
@entity model riskyAgentIdentity extends riskyAgent {
|
|
9618
|
+
@references agentIdentity: agentIdentity | null;
|
|
9619
|
+
}
|
|
9620
|
+
|
|
9621
|
+
@entity model riskyAgentIdentityBlueprintPrincipal extends riskyAgent {
|
|
9622
|
+
@references agentIdentityBlueprintPrincipal: agentIdentityBlueprintPrincipal | null;
|
|
9623
|
+
}
|
|
9624
|
+
|
|
9625
|
+
@entity model riskyAgentUser extends riskyAgent {
|
|
9626
|
+
@references agentUser: agentUser | null;
|
|
9627
|
+
}
|
|
9628
|
+
|
|
9549
9629
|
@entity model riskyServicePrincipal extends entity {
|
|
9550
9630
|
|
|
9551
9631
|
@graphDeprecated("accountEnabledDeprecated")
|
|
@@ -11679,6 +11759,8 @@ namespace reference.`microsoft.graph` {
|
|
|
11679
11759
|
target: 1,
|
|
11680
11760
|
createdBy: 2,
|
|
11681
11761
|
unknownFutureValue: 99,
|
|
11762
|
+
targetManager: 100,
|
|
11763
|
+
targetAgentIdentitySponsorOrOwner: 101,
|
|
11682
11764
|
}
|
|
11683
11765
|
|
|
11684
11766
|
enum accessPackageAssignmentRequestFilterByCurrentUserOptions {
|
|
@@ -11686,6 +11768,10 @@ namespace reference.`microsoft.graph` {
|
|
|
11686
11768
|
createdBy: 2,
|
|
11687
11769
|
approver: 3,
|
|
11688
11770
|
unknownFutureValue: 99,
|
|
11771
|
+
targetOrRequestor: 100,
|
|
11772
|
+
targetManager: 101,
|
|
11773
|
+
requestForOthers: 102,
|
|
11774
|
+
targetAgentIdentitySponsorOrOwner: 103,
|
|
11689
11775
|
}
|
|
11690
11776
|
|
|
11691
11777
|
enum accessPackageCustomExtensionHandlerStatus {
|
|
@@ -11780,6 +11866,22 @@ namespace reference.`microsoft.graph` {
|
|
|
11780
11866
|
unknownFutureValue: 3,
|
|
11781
11867
|
}
|
|
11782
11868
|
|
|
11869
|
+
enum agentIdentityType {
|
|
11870
|
+
agentIdentity: 0,
|
|
11871
|
+
agentUser: 1,
|
|
11872
|
+
unknownFutureValue: 2,
|
|
11873
|
+
agentIdentityBlueprintPrincipal: 3,
|
|
11874
|
+
user: 4,
|
|
11875
|
+
}
|
|
11876
|
+
|
|
11877
|
+
enum agentIdRiskLevel {
|
|
11878
|
+
none: 0,
|
|
11879
|
+
low: 1,
|
|
11880
|
+
medium: 2,
|
|
11881
|
+
high: 4,
|
|
11882
|
+
unknownFutureValue: 8,
|
|
11883
|
+
}
|
|
11884
|
+
|
|
11783
11885
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
11784
11886
|
enum agentStatus {
|
|
11785
11887
|
active: 0,
|
|
@@ -12443,6 +12545,14 @@ namespace reference.`microsoft.graph` {
|
|
|
12443
12545
|
Label: 0,
|
|
12444
12546
|
}
|
|
12445
12547
|
|
|
12548
|
+
@graphFlags
|
|
12549
|
+
enum conditionalAccessAgentIdRiskLevels {
|
|
12550
|
+
low: 1,
|
|
12551
|
+
medium: 2,
|
|
12552
|
+
high: 4,
|
|
12553
|
+
unknownFutureValue: 8,
|
|
12554
|
+
}
|
|
12555
|
+
|
|
12446
12556
|
enum conditionalAccessClientApp {
|
|
12447
12557
|
all: 0,
|
|
12448
12558
|
browser: 1,
|
|
@@ -12821,6 +12931,13 @@ namespace reference.`microsoft.graph` {
|
|
|
12821
12931
|
IgnoreLookupReferenceResolutionFailure: 2,
|
|
12822
12932
|
}
|
|
12823
12933
|
|
|
12934
|
+
enum evaluationScopeType {
|
|
12935
|
+
tenant: 0,
|
|
12936
|
+
agent: 1,
|
|
12937
|
+
anonymousUser: 2,
|
|
12938
|
+
unknownFutureValue: 3,
|
|
12939
|
+
}
|
|
12940
|
+
|
|
12824
12941
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
12825
12942
|
enum eventType {
|
|
12826
12943
|
singleInstance: 0,
|
|
@@ -13000,12 +13117,12 @@ namespace reference.`microsoft.graph` {
|
|
|
13000
13117
|
unknownFutureValue: 2,
|
|
13001
13118
|
}
|
|
13002
13119
|
|
|
13003
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
13004
13120
|
enum groupAccessType {
|
|
13005
13121
|
none: 0,
|
|
13006
13122
|
private: 1,
|
|
13007
13123
|
secret: 2,
|
|
13008
13124
|
public: 3,
|
|
13125
|
+
unknownFutureValue: 4,
|
|
13009
13126
|
}
|
|
13010
13127
|
|
|
13011
13128
|
enum groupPrivacy {
|
|
@@ -14011,7 +14128,10 @@ namespace reference.`microsoft.graph` {
|
|
|
14011
14128
|
userChangedPasswordOnPremises: 15,
|
|
14012
14129
|
adminDismissedRiskForSignIn: 16,
|
|
14013
14130
|
adminConfirmedAccountSafe: 17,
|
|
14014
|
-
|
|
14131
|
+
adminConfirmedAgentSafe: 18,
|
|
14132
|
+
adminConfirmedAgentCompromised: 19,
|
|
14133
|
+
adminDismissedRiskForAgent: 20,
|
|
14134
|
+
microsoftRevokedSessions: 21,
|
|
14015
14135
|
}
|
|
14016
14136
|
|
|
14017
14137
|
enum riskDetectionTimingType {
|
|
@@ -15062,6 +15182,8 @@ namespace reference.`microsoft.graph` {
|
|
|
15062
15182
|
insiderRisk: 131072,
|
|
15063
15183
|
authenticationFlow: 262144,
|
|
15064
15184
|
unknownFutureValue: 524288,
|
|
15185
|
+
agentIdRisk: 1048576,
|
|
15186
|
+
agentIdentities: 2097152,
|
|
15065
15187
|
}
|
|
15066
15188
|
|
|
15067
15189
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|