@microsoft/typespec-msgraph-reference 1.0.10 → 1.0.11
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 +17 -17
- package/CHANGELOG.md +9 -0
- package/lib/Bleu/Beta/main.tsp +386 -10
- package/lib/Bleu/V1.0/main.tsp +2 -2
- package/lib/Delos/Beta/main.tsp +991 -9
- package/lib/Delos/V1.0/main.tsp +468 -1
- package/lib/Fairfax/Beta/main.tsp +137 -12
- package/lib/Fairfax/V1.0/main.tsp +83 -3
- package/lib/GovSG/Beta/main.tsp +1 -0
- package/lib/Mooncake/Beta/main.tsp +84 -10
- package/lib/Mooncake/V1.0/main.tsp +103 -3
- package/lib/Prod/Beta/main.tsp +1136 -386
- package/lib/Prod/V1.0/main.tsp +277 -2
- package/lib/USNat/Beta/main.tsp +48 -8
- package/lib/USNat/V1.0/main.tsp +81 -1
- package/lib/USSec/Beta/main.tsp +48 -8
- package/lib/USSec/V1.0/main.tsp +81 -1
- package/package.json +2 -2
|
@@ -19,6 +19,7 @@ scalar binary; //TODO: Enables support for Edm.Binary
|
|
|
19
19
|
// Metadata item DeprecatedDefinition_identityProvider was already defined with a different value.
|
|
20
20
|
@deprecatedDefinition("Rv1MigrationDeprecation", "<ChangeLogCategory>", "2026-04-03", "2026-07-07", "This API is deprecated and will stop returning data on July 7, 2026. Use POST /deviceManagement/reports/getConfigurationPolicyDeviceSummaryReport instead.")
|
|
21
21
|
// Metadata item DeprecatedDefinition_Rv1MigrationDeprecation was already defined with a different value.
|
|
22
|
+
@deprecatedDefinition("DirectoryFeatureRolloutPolicies", "<ChangeLogCategory>", "2021-03-05", "2021-06-30", "Feature Rollout Policies have been grouped with other policies under /policies. The existing /directory/featureRolloutPolicies is deprecated and will stop returning data on 06/30/2021. Please use /policies/featureRolloutPolicies.")
|
|
22
23
|
@deprecatedDefinition("Removal", "<ChangeLogCategory>", "2023-12-05", "2025-12-05", "The users enum value is deprecated. Use specificPeople instead.")
|
|
23
24
|
// Metadata item DeprecatedDefinition_Removal was already defined with a different value.
|
|
24
25
|
@deprecatedDefinition("Beta:ItemInsightsOranizationSettings", "<ChangeLogCategory>", "2023-10-17", "2024-01-01", "The Organization ItemInsights endpoint will stop returning data on January 1st, 2024. Please use the new Admin People ItemInsights endpoint.")
|
|
@@ -6132,12 +6133,7 @@ namespace reference.`microsoft.graph` {
|
|
|
6132
6133
|
itemMajorVersionLimit: int32 | null;
|
|
6133
6134
|
}
|
|
6134
6135
|
|
|
6135
|
-
@complex model fileStorageContainerTypeAgentSettings {
|
|
6136
|
-
chatEmbedAllowedHosts: string[];
|
|
6137
|
-
}
|
|
6138
|
-
|
|
6139
6136
|
@complex model fileStorageContainerTypeRegistrationSettings {
|
|
6140
|
-
agent: fileStorageContainerTypeAgentSettings | null;
|
|
6141
6137
|
isDiscoverabilityEnabled: boolean | null;
|
|
6142
6138
|
isItemVersioningEnabled: boolean | null;
|
|
6143
6139
|
isSearchEnabled: boolean | null;
|
|
@@ -6149,7 +6145,6 @@ namespace reference.`microsoft.graph` {
|
|
|
6149
6145
|
}
|
|
6150
6146
|
|
|
6151
6147
|
@complex model fileStorageContainerTypeSettings {
|
|
6152
|
-
agent: fileStorageContainerTypeAgentSettings | null;
|
|
6153
6148
|
consumingTenantOverridables: fileStorageContainerTypeSettingsOverride | null;
|
|
6154
6149
|
isDiscoverabilityEnabled: boolean | null;
|
|
6155
6150
|
isItemVersioningEnabled: boolean | null;
|
|
@@ -9415,6 +9410,13 @@ namespace reference.`microsoft.graph` {
|
|
|
9415
9410
|
networkType: networkType | null;
|
|
9416
9411
|
}
|
|
9417
9412
|
|
|
9413
|
+
@complex model nistClassification {
|
|
9414
|
+
category: string;
|
|
9415
|
+
description: string | null;
|
|
9416
|
+
function: string | null;
|
|
9417
|
+
name: string;
|
|
9418
|
+
}
|
|
9419
|
+
|
|
9418
9420
|
@complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
9419
9421
|
}
|
|
9420
9422
|
|
|
@@ -9742,6 +9744,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9742
9744
|
isAccessibleViaZTNAClient: boolean | null;
|
|
9743
9745
|
isBackendCertificateValidationEnabled: boolean | null;
|
|
9744
9746
|
isContinuousAccessEvaluationEnabled: boolean | null;
|
|
9747
|
+
isDeviceAccessEnabled: boolean;
|
|
9745
9748
|
isDnsResolutionEnabled: boolean | null;
|
|
9746
9749
|
isHttpOnlyCookieEnabled: boolean | null;
|
|
9747
9750
|
isOnPremPublishingEnabled: boolean | null;
|
|
@@ -22828,7 +22831,7 @@ namespace reference.`microsoft.graph` {
|
|
|
22828
22831
|
/**
|
|
22829
22832
|
* Singleton entity that acts as a container for all device app management functionality.
|
|
22830
22833
|
*/
|
|
22831
|
-
@entity model deviceAppManagement extends entity {
|
|
22834
|
+
@entity model deviceAppManagement extends MsGraph.SharedModels.entity {
|
|
22832
22835
|
/**
|
|
22833
22836
|
* Whether the account is enabled for syncing applications from the Microsoft Store for Business.
|
|
22834
22837
|
*/
|
|
@@ -27168,6 +27171,9 @@ namespace reference.`microsoft.graph` {
|
|
|
27168
27171
|
@contains customSecurityAttributeDefinitions: customSecurityAttributeDefinition[];
|
|
27169
27172
|
@contains deletedItems: directoryObject[];
|
|
27170
27173
|
@contains deviceLocalCredentials: deviceLocalCredentialInfo[];
|
|
27174
|
+
|
|
27175
|
+
@graphDeprecated("DirectoryFeatureRolloutPolicies")
|
|
27176
|
+
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
27171
27177
|
@contains federationConfigurations: identityProviderBase[];
|
|
27172
27178
|
@contains impactedResources: impactedResource[];
|
|
27173
27179
|
@contains onPremisesSynchronization: onPremisesDirectorySynchronization[];
|
|
@@ -27855,6 +27861,15 @@ namespace reference.`microsoft.graph` {
|
|
|
27855
27861
|
onUserCreateStart: onUserCreateStartHandler | null;
|
|
27856
27862
|
}
|
|
27857
27863
|
|
|
27864
|
+
@entity model featureRolloutPolicy extends entity {
|
|
27865
|
+
description: string | null;
|
|
27866
|
+
displayName: string;
|
|
27867
|
+
feature: stagedFeatureName;
|
|
27868
|
+
isAppliedToOrganization: boolean;
|
|
27869
|
+
isEnabled: boolean;
|
|
27870
|
+
@contains appliesTo: directoryObject[];
|
|
27871
|
+
}
|
|
27872
|
+
|
|
27858
27873
|
@entity model federatedIdentityCredential extends entity {
|
|
27859
27874
|
audiences: string[];
|
|
27860
27875
|
claimsMatchingExpression: federatedIdentityExpression | null;
|
|
@@ -29177,6 +29192,7 @@ namespace reference.`microsoft.graph` {
|
|
|
29177
29192
|
resourceType: string;
|
|
29178
29193
|
status: recommendationStatus;
|
|
29179
29194
|
subjectId: string;
|
|
29195
|
+
@contains tags: recommendationTag[];
|
|
29180
29196
|
}
|
|
29181
29197
|
|
|
29182
29198
|
/**
|
|
@@ -36803,6 +36819,7 @@ namespace reference.`microsoft.graph` {
|
|
|
36803
36819
|
@contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
|
|
36804
36820
|
@contains directoryRoleAccessReviewPolicy: directoryRoleAccessReviewPolicy | null;
|
|
36805
36821
|
@contains externalIdentitiesPolicy: externalIdentitiesPolicy | null;
|
|
36822
|
+
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
36806
36823
|
@contains federatedTokenValidationPolicy: federatedTokenValidationPolicy | null;
|
|
36807
36824
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
36808
36825
|
@contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
|
|
@@ -37346,9 +37363,13 @@ namespace reference.`microsoft.graph` {
|
|
|
37346
37363
|
actionSteps: actionStep[] | null;
|
|
37347
37364
|
benefits: string | null;
|
|
37348
37365
|
category: recommendationCategory;
|
|
37366
|
+
categoryGroup: recommendationCategoryGroup;
|
|
37367
|
+
completedBySystemDateTime: offsetDateTime | null;
|
|
37368
|
+
completedByUserDateTime: offsetDateTime | null;
|
|
37349
37369
|
@computed createdDateTime: offsetDateTime;
|
|
37350
37370
|
currentScore: float64 | null;
|
|
37351
37371
|
displayName: string;
|
|
37372
|
+
failedReviewDateTime: offsetDateTime | null;
|
|
37352
37373
|
featureAreas: recommendationFeatureAreas[] | null;
|
|
37353
37374
|
impactStartDateTime: offsetDateTime | null;
|
|
37354
37375
|
impactType: string | null;
|
|
@@ -37357,14 +37378,23 @@ namespace reference.`microsoft.graph` {
|
|
|
37357
37378
|
lastModifiedBy: string | null;
|
|
37358
37379
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
37359
37380
|
maxScore: float64 | null;
|
|
37381
|
+
needsMoreActionResourceCount: int32 | null;
|
|
37382
|
+
nistClassifications: nistClassification[];
|
|
37360
37383
|
postponeUntilDateTime: offsetDateTime | null;
|
|
37361
37384
|
priority: recommendationPriority;
|
|
37362
37385
|
recommendationType: recommendationType | null;
|
|
37363
37386
|
releaseType: string | null;
|
|
37387
|
+
remediatedDateTime: offsetDateTime | null;
|
|
37364
37388
|
remediationImpact: string | null;
|
|
37365
37389
|
requiredLicenses: requiredLicenses | null;
|
|
37366
37390
|
status: recommendationStatus;
|
|
37391
|
+
@computed statusModifiedDateTime: offsetDateTime | null;
|
|
37367
37392
|
@contains impactedResources: impactedResource[];
|
|
37393
|
+
@contains tags: recommendationTag[];
|
|
37394
|
+
}
|
|
37395
|
+
|
|
37396
|
+
@entity model recommendationTag extends entity {
|
|
37397
|
+
displayName: string;
|
|
37368
37398
|
}
|
|
37369
37399
|
|
|
37370
37400
|
@open
|
|
@@ -37796,7 +37826,7 @@ namespace reference.`microsoft.graph` {
|
|
|
37796
37826
|
roleMemberInfo: identity;
|
|
37797
37827
|
}
|
|
37798
37828
|
|
|
37799
|
-
@entity model searchEntity extends entity {
|
|
37829
|
+
@entity model searchEntity extends MsGraph.SharedModels.entity {
|
|
37800
37830
|
}
|
|
37801
37831
|
|
|
37802
37832
|
/**
|
|
@@ -39073,7 +39103,7 @@ namespace reference.`microsoft.graph` {
|
|
|
39073
39103
|
@contains teamDefinition: team | null;
|
|
39074
39104
|
}
|
|
39075
39105
|
|
|
39076
|
-
@entity model teamwork extends entity {
|
|
39106
|
+
@entity model teamwork extends MsGraph.SharedModels.entity {
|
|
39077
39107
|
isTeamsEnabled: boolean;
|
|
39078
39108
|
region: string | null;
|
|
39079
39109
|
@contains deletedChats: deletedChat[];
|
|
@@ -62464,6 +62494,16 @@ namespace reference.`microsoft.graph` {
|
|
|
62464
62494
|
mdiSecureScore: 3,
|
|
62465
62495
|
}
|
|
62466
62496
|
|
|
62497
|
+
enum recommendationCategoryGroup {
|
|
62498
|
+
strengthenAuthentication: 0,
|
|
62499
|
+
detectAndRespondToThreats: 1,
|
|
62500
|
+
enforceLeastPrivilege: 2,
|
|
62501
|
+
governAppsCredentialsAndAgents: 3,
|
|
62502
|
+
hardenInfrastructure: 4,
|
|
62503
|
+
defenderForIdentity: 5,
|
|
62504
|
+
unknownFutureValue: 6,
|
|
62505
|
+
}
|
|
62506
|
+
|
|
62467
62507
|
enum recommendationFeatureAreas {
|
|
62468
62508
|
users: 0,
|
|
62469
62509
|
groups: 1,
|
|
@@ -62475,11 +62515,12 @@ namespace reference.`microsoft.graph` {
|
|
|
62475
62515
|
unknownFutureValue: 7,
|
|
62476
62516
|
}
|
|
62477
62517
|
|
|
62478
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
62479
62518
|
enum recommendationPriority {
|
|
62480
62519
|
low: 0,
|
|
62481
62520
|
medium: 1,
|
|
62482
62521
|
high: 2,
|
|
62522
|
+
critical: 3,
|
|
62523
|
+
unknownFutureValue: 4,
|
|
62483
62524
|
}
|
|
62484
62525
|
|
|
62485
62526
|
enum recommendationStatus {
|
|
@@ -62493,6 +62534,7 @@ namespace reference.`microsoft.graph` {
|
|
|
62493
62534
|
thirdParty: 7,
|
|
62494
62535
|
planned: 8,
|
|
62495
62536
|
alternateMitigation: 9,
|
|
62537
|
+
needsMoreAction: 10,
|
|
62496
62538
|
}
|
|
62497
62539
|
|
|
62498
62540
|
enum recommendationType {
|
|
@@ -62850,6 +62892,7 @@ namespace reference.`microsoft.graph` {
|
|
|
62850
62892
|
microsoftEntraWorkloadId: 5,
|
|
62851
62893
|
unknownFutureValue: 6,
|
|
62852
62894
|
aatp: 7,
|
|
62895
|
+
microsoftEntraSuite: 8,
|
|
62853
62896
|
}
|
|
62854
62897
|
|
|
62855
62898
|
/**
|
|
@@ -63840,6 +63883,16 @@ namespace reference.`microsoft.graph` {
|
|
|
63840
63883
|
unknownFutureValue: 5,
|
|
63841
63884
|
}
|
|
63842
63885
|
|
|
63886
|
+
enum stagedFeatureName {
|
|
63887
|
+
passthroughAuthentication: 0,
|
|
63888
|
+
seamlessSso: 1,
|
|
63889
|
+
passwordHashSync: 2,
|
|
63890
|
+
emailAsAlternateId: 3,
|
|
63891
|
+
unknownFutureValue: 4,
|
|
63892
|
+
certificateBasedAuthentication: 5,
|
|
63893
|
+
multiFactorAuthentication: 6,
|
|
63894
|
+
}
|
|
63895
|
+
|
|
63843
63896
|
/**
|
|
63844
63897
|
* State Management Setting.
|
|
63845
63898
|
*/
|
|
@@ -68392,6 +68445,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
68392
68445
|
targetSubject: workflowSubject | null;
|
|
68393
68446
|
}
|
|
68394
68447
|
|
|
68448
|
+
@complex model directoryObjectWorkflowSubject extends workflowSubject {
|
|
68449
|
+
@references directoryObject: reference.`microsoft.graph`.directoryObject;
|
|
68450
|
+
}
|
|
68451
|
+
|
|
68395
68452
|
@complex model groupBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
68396
68453
|
@references groups: reference.`microsoft.graph`.group[];
|
|
68397
68454
|
}
|
|
@@ -68456,6 +68513,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
68456
68513
|
totalUsers: int32;
|
|
68457
68514
|
}
|
|
68458
68515
|
|
|
68516
|
+
@complex model subjectSummary {
|
|
68517
|
+
failedSubjects: int32;
|
|
68518
|
+
failedTasks: int32;
|
|
68519
|
+
successfulSubjects: int32;
|
|
68520
|
+
totalSubjects: int32;
|
|
68521
|
+
totalTasks: int32;
|
|
68522
|
+
}
|
|
68523
|
+
|
|
68459
68524
|
@complex model taskReportSummary {
|
|
68460
68525
|
failedTasks: int32;
|
|
68461
68526
|
successfulTasks: int32;
|
|
@@ -68616,6 +68681,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
68616
68681
|
scheduledDateTime: offsetDateTime;
|
|
68617
68682
|
startedDateTime: offsetDateTime | null;
|
|
68618
68683
|
subject: workflowSubject;
|
|
68684
|
+
subjectType: subjectType;
|
|
68619
68685
|
totalTasksCount: int32;
|
|
68620
68686
|
totalUnprocessedTasksCount: int32;
|
|
68621
68687
|
workflowExecutionType: workflowExecutionType;
|
|
@@ -68715,6 +68781,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
68715
68781
|
isEnabled: boolean;
|
|
68716
68782
|
isSchedulingEnabled: boolean;
|
|
68717
68783
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
68784
|
+
targetSubjectType: subjectType;
|
|
68718
68785
|
@references administrationScopeTargets: reference.`microsoft.graph`.directoryObject[];
|
|
68719
68786
|
@references createdBy: reference.`microsoft.graph`.user | null;
|
|
68720
68787
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
@@ -68807,6 +68874,13 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
68807
68874
|
unknownFutureValue: 4,
|
|
68808
68875
|
}
|
|
68809
68876
|
|
|
68877
|
+
@graphFlags
|
|
68878
|
+
enum subjectType {
|
|
68879
|
+
user: 1,
|
|
68880
|
+
unknownFutureValue: 8,
|
|
68881
|
+
provisioningObject: 16,
|
|
68882
|
+
}
|
|
68883
|
+
|
|
68810
68884
|
enum valueType {
|
|
68811
68885
|
`enum`: 0,
|
|
68812
68886
|
`string`: 1,
|
|
@@ -7912,7 +7912,7 @@ namespace reference.`microsoft.graph` {
|
|
|
7912
7912
|
/**
|
|
7913
7913
|
* Singleton entity that acts as a container for all device app management functionality.
|
|
7914
7914
|
*/
|
|
7915
|
-
@entity model deviceAppManagement extends entity {
|
|
7915
|
+
@entity model deviceAppManagement extends MsGraph.SharedModels.entity {
|
|
7916
7916
|
/**
|
|
7917
7917
|
* Whether the account is enabled for syncing applications from the Microsoft Store for Business.
|
|
7918
7918
|
*/
|
|
@@ -9696,6 +9696,15 @@ namespace reference.`microsoft.graph` {
|
|
|
9696
9696
|
@entity model externalDomainName extends entity {
|
|
9697
9697
|
}
|
|
9698
9698
|
|
|
9699
|
+
@entity model featureRolloutPolicy extends entity {
|
|
9700
|
+
description: string | null;
|
|
9701
|
+
displayName: string;
|
|
9702
|
+
feature: stagedFeatureName;
|
|
9703
|
+
isAppliedToOrganization: boolean;
|
|
9704
|
+
isEnabled: boolean;
|
|
9705
|
+
@contains appliesTo: directoryObject[];
|
|
9706
|
+
}
|
|
9707
|
+
|
|
9699
9708
|
@entity model federatedIdentityCredential extends entity {
|
|
9700
9709
|
audiences: string[];
|
|
9701
9710
|
description: string | null;
|
|
@@ -13029,6 +13038,7 @@ namespace reference.`microsoft.graph` {
|
|
|
13029
13038
|
@contains crossTenantAccessPolicy: crossTenantAccessPolicy | null;
|
|
13030
13039
|
@contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
|
|
13031
13040
|
@contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
|
|
13041
|
+
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
13032
13042
|
@contains federatedTokenValidationPolicy: federatedTokenValidationPolicy | null;
|
|
13033
13043
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
13034
13044
|
@contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
|
|
@@ -13413,7 +13423,7 @@ namespace reference.`microsoft.graph` {
|
|
|
13413
13423
|
roleMemberInfo: identity;
|
|
13414
13424
|
}
|
|
13415
13425
|
|
|
13416
|
-
@entity model searchEntity extends entity {
|
|
13426
|
+
@entity model searchEntity extends MsGraph.SharedModels.entity {
|
|
13417
13427
|
}
|
|
13418
13428
|
|
|
13419
13429
|
@entity model serviceAnnouncement extends entity {
|
|
@@ -14113,7 +14123,7 @@ namespace reference.`microsoft.graph` {
|
|
|
14113
14123
|
@entity model teamsTemplate extends entity {
|
|
14114
14124
|
}
|
|
14115
14125
|
|
|
14116
|
-
@entity model teamwork extends entity {
|
|
14126
|
+
@entity model teamwork extends MsGraph.SharedModels.entity {
|
|
14117
14127
|
isTeamsEnabled: boolean;
|
|
14118
14128
|
region: string | null;
|
|
14119
14129
|
@contains deletedChats: deletedChat[];
|
|
@@ -22872,6 +22882,16 @@ namespace reference.`microsoft.graph` {
|
|
|
22872
22882
|
high: 5,
|
|
22873
22883
|
}
|
|
22874
22884
|
|
|
22885
|
+
enum stagedFeatureName {
|
|
22886
|
+
passthroughAuthentication: 0,
|
|
22887
|
+
seamlessSso: 1,
|
|
22888
|
+
passwordHashSync: 2,
|
|
22889
|
+
emailAsAlternateId: 3,
|
|
22890
|
+
unknownFutureValue: 4,
|
|
22891
|
+
certificateBasedAuthentication: 5,
|
|
22892
|
+
multiFactorAuthentication: 6,
|
|
22893
|
+
}
|
|
22894
|
+
|
|
22875
22895
|
/**
|
|
22876
22896
|
* State Management Setting.
|
|
22877
22897
|
*/
|
|
@@ -24819,6 +24839,17 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
24819
24839
|
triggerAttributes: triggerAttribute[];
|
|
24820
24840
|
}
|
|
24821
24841
|
|
|
24842
|
+
@complex model attributeSetEntry {
|
|
24843
|
+
name: string;
|
|
24844
|
+
value: string | null;
|
|
24845
|
+
}
|
|
24846
|
+
|
|
24847
|
+
@complex model awaitedWorkflowProcessingResult {
|
|
24848
|
+
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
24849
|
+
statusReasons: string[];
|
|
24850
|
+
subject: workflowSubject | null;
|
|
24851
|
+
}
|
|
24852
|
+
|
|
24822
24853
|
@complex model countBasedQuarantineCondition extends quarantineCondition {
|
|
24823
24854
|
threshold: int64;
|
|
24824
24855
|
}
|
|
@@ -24832,12 +24863,23 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
24832
24863
|
}
|
|
24833
24864
|
|
|
24834
24865
|
@complex model customTaskExtensionCalloutData extends reference.`microsoft.graph`.customExtensionData {
|
|
24866
|
+
targetSubject: workflowSubject | null;
|
|
24835
24867
|
@references subject: reference.`microsoft.graph`.user | null;
|
|
24836
24868
|
@references task: task | null;
|
|
24837
24869
|
@references taskProcessingresult: taskProcessingResult | null;
|
|
24838
24870
|
@references workflow: workflow | null;
|
|
24839
24871
|
}
|
|
24840
24872
|
|
|
24873
|
+
@complex model customTaskExtensionResponseData extends reference.`microsoft.graph`.customExtensionData {
|
|
24874
|
+
operationStatus: customTaskExtensionOperationStatus;
|
|
24875
|
+
statusReasons: string[];
|
|
24876
|
+
targetSubject: workflowSubject | null;
|
|
24877
|
+
}
|
|
24878
|
+
|
|
24879
|
+
@complex model directoryObjectWorkflowSubject extends workflowSubject {
|
|
24880
|
+
@references directoryObject: reference.`microsoft.graph`.directoryObject;
|
|
24881
|
+
}
|
|
24882
|
+
|
|
24841
24883
|
@complex model groupBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
24842
24884
|
@references groups: reference.`microsoft.graph`.group[];
|
|
24843
24885
|
}
|
|
@@ -24866,6 +24908,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
24866
24908
|
taskId: string;
|
|
24867
24909
|
}
|
|
24868
24910
|
|
|
24911
|
+
@complex model provisioningAttributeMapping extends workflowExecutionConditions {
|
|
24912
|
+
}
|
|
24913
|
+
|
|
24914
|
+
@complex model provisioningObjectWorkflowSubject extends workflowSubject {
|
|
24915
|
+
attributeSetEntries: attributeSetEntry[];
|
|
24916
|
+
id: string;
|
|
24917
|
+
}
|
|
24918
|
+
|
|
24869
24919
|
@abstract
|
|
24870
24920
|
@complex model quarantineCondition {
|
|
24871
24921
|
}
|
|
@@ -24894,6 +24944,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
24894
24944
|
totalUsers: int32;
|
|
24895
24945
|
}
|
|
24896
24946
|
|
|
24947
|
+
@complex model subjectSummary {
|
|
24948
|
+
failedSubjects: int32;
|
|
24949
|
+
failedTasks: int32;
|
|
24950
|
+
successfulSubjects: int32;
|
|
24951
|
+
totalSubjects: int32;
|
|
24952
|
+
totalTasks: int32;
|
|
24953
|
+
}
|
|
24954
|
+
|
|
24897
24955
|
@complex model taskReportSummary {
|
|
24898
24956
|
failedTasks: int32;
|
|
24899
24957
|
successfulTasks: int32;
|
|
@@ -24995,10 +25053,15 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
24995
25053
|
totalUsers: int32;
|
|
24996
25054
|
}
|
|
24997
25055
|
|
|
25056
|
+
@abstract
|
|
25057
|
+
@complex model workflowSubject {
|
|
25058
|
+
}
|
|
25059
|
+
|
|
24998
25060
|
@entity model customTaskExtension extends reference.`microsoft.graph`.customCalloutExtension {
|
|
24999
25061
|
callbackConfiguration: reference.`microsoft.graph`.customExtensionCallbackConfiguration | null;
|
|
25000
25062
|
@computed createdDateTime: offsetDateTime | null;
|
|
25001
25063
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
25064
|
+
replyMode: customTaskExtensionReplyMode;
|
|
25002
25065
|
@references createdBy: reference.`microsoft.graph`.user | null;
|
|
25003
25066
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
25004
25067
|
}
|
|
@@ -25037,10 +25100,27 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
25037
25100
|
totalUsersCount: int32;
|
|
25038
25101
|
workflowExecutionType: workflowExecutionType;
|
|
25039
25102
|
@references reprocessedRuns: run[];
|
|
25103
|
+
@contains subjectProcessingResults: subjectProcessingResult[];
|
|
25040
25104
|
@contains taskProcessingResults: taskProcessingResult[];
|
|
25041
25105
|
@contains userProcessingResults: userProcessingResult[];
|
|
25042
25106
|
}
|
|
25043
25107
|
|
|
25108
|
+
@entity model subjectProcessingResult extends reference.`microsoft.graph`.entity {
|
|
25109
|
+
completedDateTime: offsetDateTime | null;
|
|
25110
|
+
failedTasksCount: int32;
|
|
25111
|
+
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
25112
|
+
scheduledDateTime: offsetDateTime;
|
|
25113
|
+
startedDateTime: offsetDateTime | null;
|
|
25114
|
+
subject: workflowSubject;
|
|
25115
|
+
subjectType: subjectType;
|
|
25116
|
+
totalTasksCount: int32;
|
|
25117
|
+
totalUnprocessedTasksCount: int32;
|
|
25118
|
+
workflowExecutionType: workflowExecutionType;
|
|
25119
|
+
workflowVersion: int32;
|
|
25120
|
+
@references reprocessedRuns: run[];
|
|
25121
|
+
@contains taskProcessingResults: taskProcessingResult[];
|
|
25122
|
+
}
|
|
25123
|
+
|
|
25044
25124
|
@entity model task extends reference.`microsoft.graph`.entity {
|
|
25045
25125
|
arguments: reference.`microsoft.graph`.keyValuePair[];
|
|
25046
25126
|
category: lifecycleTaskCategory;
|
|
@@ -25069,6 +25149,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
25069
25149
|
processingInfo: string | null;
|
|
25070
25150
|
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
25071
25151
|
startedDateTime: offsetDateTime | null;
|
|
25152
|
+
workflowSubject: workflowSubject | null;
|
|
25072
25153
|
@references subject: reference.`microsoft.graph`.user;
|
|
25073
25154
|
@references task: task;
|
|
25074
25155
|
}
|
|
@@ -25113,6 +25194,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
25113
25194
|
@references executionScope: userProcessingResult[];
|
|
25114
25195
|
@references previewScope: reference.`microsoft.graph`.directoryObject[];
|
|
25115
25196
|
@contains runs: run[];
|
|
25197
|
+
@contains subjectProcessingResults: subjectProcessingResult[];
|
|
25116
25198
|
@contains taskReports: taskReport[];
|
|
25117
25199
|
@contains userProcessingResults: userProcessingResult[];
|
|
25118
25200
|
@contains versions: workflowVersion[];
|
|
@@ -25128,6 +25210,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
25128
25210
|
isEnabled: boolean;
|
|
25129
25211
|
isSchedulingEnabled: boolean;
|
|
25130
25212
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
25213
|
+
targetSubjectType: subjectType;
|
|
25131
25214
|
@references administrationScopeTargets: reference.`microsoft.graph`.directoryObject[];
|
|
25132
25215
|
@references createdBy: reference.`microsoft.graph`.user | null;
|
|
25133
25216
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
@@ -25165,12 +25248,20 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
25165
25248
|
unknownFutureValue: 2,
|
|
25166
25249
|
}
|
|
25167
25250
|
|
|
25251
|
+
enum customTaskExtensionReplyMode {
|
|
25252
|
+
none: 0,
|
|
25253
|
+
callback: 1,
|
|
25254
|
+
response: 2,
|
|
25255
|
+
unknownFutureValue: 3,
|
|
25256
|
+
}
|
|
25257
|
+
|
|
25168
25258
|
@graphFlags
|
|
25169
25259
|
enum lifecycleTaskCategory {
|
|
25170
25260
|
joiner: 1,
|
|
25171
25261
|
leaver: 2,
|
|
25172
25262
|
unknownFutureValue: 4,
|
|
25173
25263
|
mover: 8,
|
|
25264
|
+
extensibility: 16,
|
|
25174
25265
|
}
|
|
25175
25266
|
|
|
25176
25267
|
enum lifecycleWorkflowCategory {
|
|
@@ -25178,6 +25269,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
25178
25269
|
leaver: 1,
|
|
25179
25270
|
unknownFutureValue: 2,
|
|
25180
25271
|
mover: 3,
|
|
25272
|
+
extensibility: 4,
|
|
25181
25273
|
}
|
|
25182
25274
|
|
|
25183
25275
|
enum lifecycleWorkflowProcessingStatus {
|
|
@@ -25211,6 +25303,13 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
25211
25303
|
unknownFutureValue: 4,
|
|
25212
25304
|
}
|
|
25213
25305
|
|
|
25306
|
+
@graphFlags
|
|
25307
|
+
enum subjectType {
|
|
25308
|
+
user: 1,
|
|
25309
|
+
unknownFutureValue: 8,
|
|
25310
|
+
provisioningObject: 16,
|
|
25311
|
+
}
|
|
25312
|
+
|
|
25214
25313
|
enum valueType {
|
|
25215
25314
|
`enum`: 0,
|
|
25216
25315
|
`string`: 1,
|
|
@@ -25225,6 +25324,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
25225
25324
|
unknownFutureValue: 2,
|
|
25226
25325
|
activatedWithScope: 3,
|
|
25227
25326
|
preview: 4,
|
|
25327
|
+
extensibilityOnDemand: 5,
|
|
25228
25328
|
}
|
|
25229
25329
|
|
|
25230
25330
|
enum workflowTriggerTimeBasedAttribute {
|