@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
package/lib/GovSG/Beta/main.tsp
CHANGED
|
@@ -460,6 +460,7 @@ namespace reference.`microsoft.graph` {
|
|
|
460
460
|
}
|
|
461
461
|
|
|
462
462
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
463
|
+
allowOnPremUpdateOfOnPremisesObjectIdentifierEnabled: boolean | null;
|
|
463
464
|
blockCloudObjectTakeoverThroughHardMatchEnabled: boolean | null;
|
|
464
465
|
blockSoftMatchEnabled: boolean | null;
|
|
465
466
|
bypassDirSyncOverridesEnabled: boolean | null;
|
package/lib/GovSG/V1.0/main.tsp
CHANGED
|
@@ -21,6 +21,9 @@ namespace reference.`microsoft.graph` {
|
|
|
21
21
|
@complex model allDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
@complex model allDomains extends validatingDomains {
|
|
25
|
+
}
|
|
26
|
+
|
|
24
27
|
@complex model alternativeSecurityId {
|
|
25
28
|
identityProvider: string | null;
|
|
26
29
|
key: binary | null;
|
|
@@ -199,6 +202,10 @@ namespace reference.`microsoft.graph` {
|
|
|
199
202
|
users: string[] | null;
|
|
200
203
|
}
|
|
201
204
|
|
|
205
|
+
@complex model enumeratedDomains extends validatingDomains {
|
|
206
|
+
domainNames: string[];
|
|
207
|
+
}
|
|
208
|
+
|
|
202
209
|
@complex model enumeratedScopes extends inheritableScopes {
|
|
203
210
|
scopes: string[];
|
|
204
211
|
}
|
|
@@ -343,6 +350,7 @@ namespace reference.`microsoft.graph` {
|
|
|
343
350
|
}
|
|
344
351
|
|
|
345
352
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
353
|
+
allowOnPremUpdateOfOnPremisesObjectIdentifierEnabled: boolean | null;
|
|
346
354
|
blockCloudObjectTakeoverThroughHardMatchEnabled: boolean | null;
|
|
347
355
|
blockSoftMatchEnabled: boolean | null;
|
|
348
356
|
bypassDirSyncOverridesEnabled: boolean | null;
|
|
@@ -550,6 +558,11 @@ namespace reference.`microsoft.graph` {
|
|
|
550
558
|
excludedResourceActions: string[] | null;
|
|
551
559
|
}
|
|
552
560
|
|
|
561
|
+
@abstract
|
|
562
|
+
@complex model validatingDomains {
|
|
563
|
+
rootDomains: rootDomains;
|
|
564
|
+
}
|
|
565
|
+
|
|
553
566
|
@complex model verifiedDomain {
|
|
554
567
|
capabilities: string | null;
|
|
555
568
|
isDefault: boolean | null;
|
|
@@ -973,7 +986,11 @@ namespace reference.`microsoft.graph` {
|
|
|
973
986
|
description: string | null;
|
|
974
987
|
issuer: string;
|
|
975
988
|
name: string;
|
|
976
|
-
subject: string;
|
|
989
|
+
subject: string | null;
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
@entity model federatedTokenValidationPolicy extends directoryObject {
|
|
993
|
+
validatingDomains: validatingDomains;
|
|
977
994
|
}
|
|
978
995
|
|
|
979
996
|
@open
|
|
@@ -1225,6 +1242,7 @@ namespace reference.`microsoft.graph` {
|
|
|
1225
1242
|
@contains crossTenantAccessPolicy: crossTenantAccessPolicy | null;
|
|
1226
1243
|
@contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
|
|
1227
1244
|
@contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
|
|
1245
|
+
@contains federatedTokenValidationPolicy: federatedTokenValidationPolicy | null;
|
|
1228
1246
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
1229
1247
|
@contains permissionGrantPolicies: permissionGrantPolicy[];
|
|
1230
1248
|
@contains tokenIssuancePolicies: tokenIssuancePolicy[];
|
|
@@ -1630,6 +1648,16 @@ namespace reference.`microsoft.graph` {
|
|
|
1630
1648
|
unknownFutureValue: 3,
|
|
1631
1649
|
}
|
|
1632
1650
|
|
|
1651
|
+
enum rootDomains {
|
|
1652
|
+
none: 0,
|
|
1653
|
+
all: 1,
|
|
1654
|
+
allFederated: 2,
|
|
1655
|
+
allManaged: 3,
|
|
1656
|
+
enumerated: 4,
|
|
1657
|
+
allManagedAndEnumeratedFederated: 5,
|
|
1658
|
+
unknownFutureValue: 6,
|
|
1659
|
+
}
|
|
1660
|
+
|
|
1633
1661
|
enum scopeCollectionKind {
|
|
1634
1662
|
allAllowed: 0,
|
|
1635
1663
|
enumerated: 1,
|
|
@@ -303,6 +303,10 @@ namespace reference.`microsoft.graph` {
|
|
|
303
303
|
shareUserExperienceAnalyticsData: adminConsentState;
|
|
304
304
|
}
|
|
305
305
|
|
|
306
|
+
@complex model agentSignIn extends signInIdentity {
|
|
307
|
+
agentServicePrincipalId: string | null;
|
|
308
|
+
}
|
|
309
|
+
|
|
306
310
|
@complex model aggregationOption {
|
|
307
311
|
bucketDefinition: bucketAggregationDefinition;
|
|
308
312
|
field: string;
|
|
@@ -2453,12 +2457,16 @@ namespace reference.`microsoft.graph` {
|
|
|
2453
2457
|
}
|
|
2454
2458
|
|
|
2455
2459
|
@complex model conditionalAccessClientApplications {
|
|
2460
|
+
agentIdServicePrincipalFilter: conditionalAccessFilter | null;
|
|
2461
|
+
excludeAgentIdServicePrincipals: string[];
|
|
2456
2462
|
excludeServicePrincipals: string[];
|
|
2463
|
+
includeAgentIdServicePrincipals: string[];
|
|
2457
2464
|
includeServicePrincipals: string[];
|
|
2458
2465
|
servicePrincipalFilter: conditionalAccessFilter | null;
|
|
2459
2466
|
}
|
|
2460
2467
|
|
|
2461
2468
|
@complex model conditionalAccessConditionSet {
|
|
2469
|
+
agentIdRiskLevels: conditionalAccessAgentIdRiskLevels | null;
|
|
2462
2470
|
applications: conditionalAccessApplications | null;
|
|
2463
2471
|
authenticationFlows: conditionalAccessAuthenticationFlows | null;
|
|
2464
2472
|
clientApplications: conditionalAccessClientApplications | null;
|
|
@@ -2929,6 +2937,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2929
2937
|
@complex model customAppScopeAttributesDictionary extends Dictionary {
|
|
2930
2938
|
}
|
|
2931
2939
|
|
|
2940
|
+
@open
|
|
2941
|
+
@complex model customEmojiFromIdentitySet extends identitySet {
|
|
2942
|
+
}
|
|
2943
|
+
|
|
2932
2944
|
@abstract
|
|
2933
2945
|
@complex model customExtensionAuthenticationConfiguration {
|
|
2934
2946
|
}
|
|
@@ -5486,6 +5498,17 @@ namespace reference.`microsoft.graph` {
|
|
|
5486
5498
|
status: deviceScopeActionStatus;
|
|
5487
5499
|
}
|
|
5488
5500
|
|
|
5501
|
+
@complex model deviceSyncStatusResponse {
|
|
5502
|
+
/**
|
|
5503
|
+
* 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.
|
|
5504
|
+
*/
|
|
5505
|
+
components: syncComponent[];
|
|
5506
|
+
/**
|
|
5507
|
+
* 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.
|
|
5508
|
+
*/
|
|
5509
|
+
deviceId: string;
|
|
5510
|
+
}
|
|
5511
|
+
|
|
5489
5512
|
@open
|
|
5490
5513
|
@complex model Dictionary {
|
|
5491
5514
|
}
|
|
@@ -9448,6 +9471,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9448
9471
|
}
|
|
9449
9472
|
|
|
9450
9473
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
9474
|
+
allowOnPremUpdateOfOnPremisesObjectIdentifierEnabled: boolean | null;
|
|
9451
9475
|
blockCloudObjectTakeoverThroughHardMatchEnabled: boolean | null;
|
|
9452
9476
|
blockSoftMatchEnabled: boolean | null;
|
|
9453
9477
|
bypassDirSyncOverridesEnabled: boolean | null;
|
|
@@ -11140,6 +11164,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11140
11164
|
}
|
|
11141
11165
|
|
|
11142
11166
|
@complex model signInConditions {
|
|
11167
|
+
agentIdRiskLevel: agentIdRiskLevel | null;
|
|
11143
11168
|
authenticationFlow: authenticationFlow | null;
|
|
11144
11169
|
clientAppType: conditionalAccessClientApp | null;
|
|
11145
11170
|
country: string | null;
|
|
@@ -11320,6 +11345,25 @@ namespace reference.`microsoft.graph` {
|
|
|
11320
11345
|
nameIdPolicyFormat: string | null;
|
|
11321
11346
|
}
|
|
11322
11347
|
|
|
11348
|
+
@complex model syncComponent {
|
|
11349
|
+
/**
|
|
11350
|
+
* 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.
|
|
11351
|
+
*/
|
|
11352
|
+
moreInfo: string | null;
|
|
11353
|
+
/**
|
|
11354
|
+
* 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.
|
|
11355
|
+
*/
|
|
11356
|
+
name: string;
|
|
11357
|
+
/**
|
|
11358
|
+
* 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.
|
|
11359
|
+
*/
|
|
11360
|
+
reportedDateTime: offsetDateTime;
|
|
11361
|
+
/**
|
|
11362
|
+
* 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.
|
|
11363
|
+
*/
|
|
11364
|
+
status: syncComponentStatus;
|
|
11365
|
+
}
|
|
11366
|
+
|
|
11323
11367
|
@complex model synchronizationError {
|
|
11324
11368
|
code: string | null;
|
|
11325
11369
|
message: string | null;
|
|
@@ -11439,6 +11483,9 @@ namespace reference.`microsoft.graph` {
|
|
|
11439
11483
|
tabId: string | null;
|
|
11440
11484
|
}
|
|
11441
11485
|
|
|
11486
|
+
@complex model targetAgentIdentitySponsorsOrOwners extends userSet {
|
|
11487
|
+
}
|
|
11488
|
+
|
|
11442
11489
|
@complex model targetResource {
|
|
11443
11490
|
displayName: string | null;
|
|
11444
11491
|
groupType: groupType | null;
|
|
@@ -24263,9 +24310,6 @@ namespace reference.`microsoft.graph` {
|
|
|
24263
24310
|
status: appLogUploadState;
|
|
24264
24311
|
}
|
|
24265
24312
|
|
|
24266
|
-
/**
|
|
24267
|
-
* Singleton that acts as container for a collection of Resource Access entities.
|
|
24268
|
-
*/
|
|
24269
24313
|
@entity model deviceManagement extends entity {
|
|
24270
24314
|
/**
|
|
24271
24315
|
* The date & time when tenant data moved between scaleunits.
|
|
@@ -38674,6 +38718,7 @@ namespace reference.`microsoft.graph` {
|
|
|
38674
38718
|
@contains deletedChats: deletedChat[];
|
|
38675
38719
|
@contains deletedTeams: deletedTeam[];
|
|
38676
38720
|
@contains devices: teamworkDevice[];
|
|
38721
|
+
@contains messaging: teamworkMessaging | null;
|
|
38677
38722
|
@contains teamsAppSettings: teamsAppSettings | null;
|
|
38678
38723
|
@contains teamTemplates: teamTemplate[];
|
|
38679
38724
|
}
|
|
@@ -38681,6 +38726,13 @@ namespace reference.`microsoft.graph` {
|
|
|
38681
38726
|
@entity model teamworkBot extends entity {
|
|
38682
38727
|
}
|
|
38683
38728
|
|
|
38729
|
+
@entity model teamworkCustomEmoji extends MsGraph.SharedModels.entity {
|
|
38730
|
+
contentBytes: string | null;
|
|
38731
|
+
createdBy: customEmojiFromIdentitySet;
|
|
38732
|
+
@computed createdDateTime: offsetDateTime;
|
|
38733
|
+
@computed @key displayName: string;
|
|
38734
|
+
}
|
|
38735
|
+
|
|
38684
38736
|
@entity model teamworkDevice extends entity {
|
|
38685
38737
|
activityState: teamworkDeviceActivityState | null;
|
|
38686
38738
|
companyAssetTag: string | null;
|
|
@@ -38751,6 +38803,10 @@ namespace reference.`microsoft.graph` {
|
|
|
38751
38803
|
contentType: string | null;
|
|
38752
38804
|
}
|
|
38753
38805
|
|
|
38806
|
+
@entity model teamworkMessaging extends entity {
|
|
38807
|
+
@contains customEmojis: teamworkCustomEmoji[];
|
|
38808
|
+
}
|
|
38809
|
+
|
|
38754
38810
|
@entity model teamworkPeripheral extends entity {
|
|
38755
38811
|
displayName: string | null;
|
|
38756
38812
|
productId: string | null;
|
|
@@ -41523,6 +41579,10 @@ namespace reference.`microsoft.graph` {
|
|
|
41523
41579
|
* 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.
|
|
41524
41580
|
*/
|
|
41525
41581
|
@entity model vppToken extends entity {
|
|
41582
|
+
/**
|
|
41583
|
+
* 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.
|
|
41584
|
+
*/
|
|
41585
|
+
appleDeviceAppDeliveryProtocolType: appleDeviceDeliveryProtocol;
|
|
41526
41586
|
/**
|
|
41527
41587
|
* The apple Id associated with the given Apple Volume Purchase Program Token.
|
|
41528
41588
|
*/
|
|
@@ -47983,6 +48043,8 @@ namespace reference.`microsoft.graph` {
|
|
|
47983
48043
|
target: 1,
|
|
47984
48044
|
createdBy: 2,
|
|
47985
48045
|
unknownFutureValue: 99,
|
|
48046
|
+
targetManager: 100,
|
|
48047
|
+
targetAgentIdentitySponsorOrOwner: 101,
|
|
47986
48048
|
}
|
|
47987
48049
|
|
|
47988
48050
|
enum accessPackageAssignmentRequestFilterByCurrentUserOptions {
|
|
@@ -47990,6 +48052,10 @@ namespace reference.`microsoft.graph` {
|
|
|
47990
48052
|
createdBy: 2,
|
|
47991
48053
|
approver: 3,
|
|
47992
48054
|
unknownFutureValue: 99,
|
|
48055
|
+
targetOrRequestor: 100,
|
|
48056
|
+
targetManager: 101,
|
|
48057
|
+
requestForOthers: 102,
|
|
48058
|
+
targetAgentIdentitySponsorOrOwner: 103,
|
|
47993
48059
|
}
|
|
47994
48060
|
|
|
47995
48061
|
enum accessPackageCustomExtensionHandlerStatus {
|
|
@@ -48222,6 +48288,14 @@ namespace reference.`microsoft.graph` {
|
|
|
48222
48288
|
unknownFutureValue: 3,
|
|
48223
48289
|
}
|
|
48224
48290
|
|
|
48291
|
+
enum agentIdRiskLevel {
|
|
48292
|
+
none: 0,
|
|
48293
|
+
low: 1,
|
|
48294
|
+
medium: 2,
|
|
48295
|
+
high: 4,
|
|
48296
|
+
unknownFutureValue: 8,
|
|
48297
|
+
}
|
|
48298
|
+
|
|
48225
48299
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
48226
48300
|
enum agentStatus {
|
|
48227
48301
|
active: 0,
|
|
@@ -51463,6 +51537,14 @@ namespace reference.`microsoft.graph` {
|
|
|
51463
51537
|
notAssigned: 7,
|
|
51464
51538
|
}
|
|
51465
51539
|
|
|
51540
|
+
@graphFlags
|
|
51541
|
+
enum conditionalAccessAgentIdRiskLevels {
|
|
51542
|
+
low: 1,
|
|
51543
|
+
medium: 2,
|
|
51544
|
+
high: 4,
|
|
51545
|
+
unknownFutureValue: 8,
|
|
51546
|
+
}
|
|
51547
|
+
|
|
51466
51548
|
enum conditionalAccessClientApp {
|
|
51467
51549
|
all: 0,
|
|
51468
51550
|
browser: 1,
|
|
@@ -52484,6 +52566,53 @@ namespace reference.`microsoft.graph` {
|
|
|
52484
52566
|
policySets: 1,
|
|
52485
52567
|
}
|
|
52486
52568
|
|
|
52569
|
+
/**
|
|
52570
|
+
* The DeviceAndAppManagementPayloadType represents the type of a payload assigned to a target.
|
|
52571
|
+
*/
|
|
52572
|
+
enum deviceAndAppManagementPayloadType {
|
|
52573
|
+
/**
|
|
52574
|
+
* Default value. Do not use.
|
|
52575
|
+
*/
|
|
52576
|
+
`unknown`: 0,
|
|
52577
|
+
/**
|
|
52578
|
+
* Indicates that the payload is of settings catalog type.
|
|
52579
|
+
*/
|
|
52580
|
+
settingsCatalog: 1,
|
|
52581
|
+
/**
|
|
52582
|
+
* Indicates that the payload is of security baseline type.
|
|
52583
|
+
*/
|
|
52584
|
+
securityBaseline: 2,
|
|
52585
|
+
/**
|
|
52586
|
+
* Indicates that the payload is of antivirus type.
|
|
52587
|
+
*/
|
|
52588
|
+
antivirus: 3,
|
|
52589
|
+
/**
|
|
52590
|
+
* Indicates that the payload is of disk encryption type.
|
|
52591
|
+
*/
|
|
52592
|
+
diskEncryption: 4,
|
|
52593
|
+
/**
|
|
52594
|
+
* Indicates that the payload is of attack surface reduction type.
|
|
52595
|
+
*/
|
|
52596
|
+
attackSurfaceReduction: 5,
|
|
52597
|
+
/**
|
|
52598
|
+
* Indicates that the payload is of firewall type.
|
|
52599
|
+
*/
|
|
52600
|
+
firewall: 6,
|
|
52601
|
+
/**
|
|
52602
|
+
* Indicates that the payload is of endpoint detection and response type.
|
|
52603
|
+
*/
|
|
52604
|
+
endpointDetectionAndResponse: 7,
|
|
52605
|
+
/**
|
|
52606
|
+
* Indicates that the payload is of compliance policy type.
|
|
52607
|
+
*/
|
|
52608
|
+
compliancePolicy: 8,
|
|
52609
|
+
/**
|
|
52610
|
+
* Indicates that the payload is of device restriction type.
|
|
52611
|
+
*/
|
|
52612
|
+
deviceRestrictions: 9,
|
|
52613
|
+
unknownFutureValue: 10,
|
|
52614
|
+
}
|
|
52615
|
+
|
|
52487
52616
|
/**
|
|
52488
52617
|
* Device app management task category.
|
|
52489
52618
|
*/
|
|
@@ -56708,12 +56837,12 @@ namespace reference.`microsoft.graph` {
|
|
|
56708
56837
|
enabled: 2,
|
|
56709
56838
|
}
|
|
56710
56839
|
|
|
56711
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
56712
56840
|
enum groupAccessType {
|
|
56713
56841
|
none: 0,
|
|
56714
56842
|
private: 1,
|
|
56715
56843
|
secret: 2,
|
|
56716
56844
|
public: 3,
|
|
56845
|
+
unknownFutureValue: 4,
|
|
56717
56846
|
}
|
|
56718
56847
|
|
|
56719
56848
|
/**
|
|
@@ -63136,6 +63265,33 @@ namespace reference.`microsoft.graph` {
|
|
|
63136
63265
|
commonNameAsDurableDeviceId: 9,
|
|
63137
63266
|
}
|
|
63138
63267
|
|
|
63268
|
+
/**
|
|
63269
|
+
* A list of possible status states for a sync infrastructure component or policy during a device sync operation.
|
|
63270
|
+
*/
|
|
63271
|
+
enum syncComponentStatus {
|
|
63272
|
+
/**
|
|
63273
|
+
* 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.
|
|
63274
|
+
*/
|
|
63275
|
+
none: 0,
|
|
63276
|
+
/**
|
|
63277
|
+
* 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.
|
|
63278
|
+
*/
|
|
63279
|
+
inProgress: 1,
|
|
63280
|
+
/**
|
|
63281
|
+
* Indicates the component completed successfully. The component has finished its work and reported a successful outcome.
|
|
63282
|
+
*/
|
|
63283
|
+
success: 2,
|
|
63284
|
+
/**
|
|
63285
|
+
* 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.
|
|
63286
|
+
*/
|
|
63287
|
+
failure: 3,
|
|
63288
|
+
/**
|
|
63289
|
+
* 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.
|
|
63290
|
+
*/
|
|
63291
|
+
partialSuccess: 4,
|
|
63292
|
+
unknownFutureValue: 5,
|
|
63293
|
+
}
|
|
63294
|
+
|
|
63139
63295
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
63140
63296
|
enum synchronizationDisposition {
|
|
63141
63297
|
Normal: 0,
|
|
@@ -64685,6 +64841,8 @@ namespace reference.`microsoft.graph` {
|
|
|
64685
64841
|
insiderRisk: 131072,
|
|
64686
64842
|
authenticationFlow: 262144,
|
|
64687
64843
|
unknownFutureValue: 524288,
|
|
64844
|
+
agentIdRisk: 1048576,
|
|
64845
|
+
agentIdentities: 2097152,
|
|
64688
64846
|
}
|
|
64689
64847
|
|
|
64690
64848
|
/**
|
|
@@ -67527,6 +67685,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67527
67685
|
subject: workflowSubject | null;
|
|
67528
67686
|
}
|
|
67529
67687
|
|
|
67688
|
+
@complex model countBasedQuarantineCondition extends quarantineCondition {
|
|
67689
|
+
threshold: int64;
|
|
67690
|
+
}
|
|
67691
|
+
|
|
67530
67692
|
@complex model customTaskExtensionCallbackConfiguration extends reference.`microsoft.graph`.customExtensionCallbackConfiguration {
|
|
67531
67693
|
@references authorizedApps: reference.`microsoft.graph`.application[];
|
|
67532
67694
|
}
|
|
@@ -67566,6 +67728,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67566
67728
|
valueType: valueType;
|
|
67567
67729
|
}
|
|
67568
67730
|
|
|
67731
|
+
@complex model percentageBasedQuarantineCondition extends quarantineCondition {
|
|
67732
|
+
percentage: int32;
|
|
67733
|
+
}
|
|
67734
|
+
|
|
67569
67735
|
@complex model previewFailedTask {
|
|
67570
67736
|
definitionId: string;
|
|
67571
67737
|
failureReason: string;
|
|
@@ -67581,6 +67747,21 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67581
67747
|
id: string;
|
|
67582
67748
|
}
|
|
67583
67749
|
|
|
67750
|
+
@abstract
|
|
67751
|
+
@complex model quarantineCondition {
|
|
67752
|
+
}
|
|
67753
|
+
|
|
67754
|
+
@complex model quarantineConfiguration {
|
|
67755
|
+
conditions: quarantineCondition[];
|
|
67756
|
+
matchMode: matchMode;
|
|
67757
|
+
}
|
|
67758
|
+
|
|
67759
|
+
@complex model quarantineDetails {
|
|
67760
|
+
quarantinedDateTime: offsetDateTime | null;
|
|
67761
|
+
quarantineReason: string | null;
|
|
67762
|
+
quarantineType: quarantineType;
|
|
67763
|
+
}
|
|
67764
|
+
|
|
67584
67765
|
@complex model ruleBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
67585
67766
|
rule: string;
|
|
67586
67767
|
}
|
|
@@ -67667,6 +67848,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67667
67848
|
@complex model workflowExecutionTrigger {
|
|
67668
67849
|
}
|
|
67669
67850
|
|
|
67851
|
+
@complex model workflowSetting {
|
|
67852
|
+
quarantineConfiguration: quarantineConfiguration | null;
|
|
67853
|
+
}
|
|
67854
|
+
|
|
67670
67855
|
@complex model workflowsInsightsByCategory {
|
|
67671
67856
|
failedJoinerRuns: int32;
|
|
67672
67857
|
failedLeaverRuns: int32;
|
|
@@ -67709,6 +67894,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67709
67894
|
|
|
67710
67895
|
@entity model lifecycleManagementSettings extends reference.`microsoft.graph`.entity {
|
|
67711
67896
|
emailSettings: reference.`microsoft.graph`.emailSettings;
|
|
67897
|
+
quarantineConfiguration: quarantineConfiguration | null;
|
|
67712
67898
|
workflowScheduleIntervalInHours: int32;
|
|
67713
67899
|
}
|
|
67714
67900
|
|
|
@@ -67782,6 +67968,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67782
67968
|
completedDateTime: offsetDateTime | null;
|
|
67783
67969
|
@computed createdDateTime: offsetDateTime;
|
|
67784
67970
|
failureReason: string | null;
|
|
67971
|
+
processingInfo: string | null;
|
|
67785
67972
|
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
67786
67973
|
startedDateTime: offsetDateTime | null;
|
|
67787
67974
|
workflowSubject: workflowSubject | null;
|
|
@@ -67823,6 +68010,8 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67823
68010
|
deletedDateTime: offsetDateTime | null;
|
|
67824
68011
|
@computed @key id: string;
|
|
67825
68012
|
nextScheduleRunDateTime: offsetDateTime | null;
|
|
68013
|
+
quarantineDetails: quarantineDetails;
|
|
68014
|
+
settings: workflowSetting;
|
|
67826
68015
|
version: int32 | null;
|
|
67827
68016
|
@references executionScope: userProcessingResult[];
|
|
67828
68017
|
|
|
@@ -67860,6 +68049,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67860
68049
|
}
|
|
67861
68050
|
|
|
67862
68051
|
@entity model workflowVersion extends workflowBase {
|
|
68052
|
+
settings: workflowSetting;
|
|
67863
68053
|
@computed @key versionNumber: int32;
|
|
67864
68054
|
}
|
|
67865
68055
|
|
|
@@ -67913,6 +68103,13 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67913
68103
|
canceled: 4,
|
|
67914
68104
|
failed: 5,
|
|
67915
68105
|
unknownFutureValue: 6,
|
|
68106
|
+
quarantined: 8,
|
|
68107
|
+
}
|
|
68108
|
+
|
|
68109
|
+
enum matchMode {
|
|
68110
|
+
any: 0,
|
|
68111
|
+
all: 1,
|
|
68112
|
+
unknownFutureValue: 2,
|
|
67916
68113
|
}
|
|
67917
68114
|
|
|
67918
68115
|
enum membershipChangeType {
|
|
@@ -67921,6 +68118,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67921
68118
|
unknownFutureValue: 3,
|
|
67922
68119
|
}
|
|
67923
68120
|
|
|
68121
|
+
enum quarantineType {
|
|
68122
|
+
notQuarantined: 0,
|
|
68123
|
+
countBasedThresholdExceeded: 1,
|
|
68124
|
+
percentageBasedThresholdExceeded: 2,
|
|
68125
|
+
multipleConditionsExceeded: 3,
|
|
68126
|
+
unknownFutureValue: 4,
|
|
68127
|
+
}
|
|
68128
|
+
|
|
67924
68129
|
enum valueType {
|
|
67925
68130
|
`enum`: 0,
|
|
67926
68131
|
`string`: 1,
|