@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
package/lib/Prod/V1.0/main.tsp
CHANGED
|
@@ -166,10 +166,20 @@ namespace reference.`microsoft.graph` {
|
|
|
166
166
|
@complex model accessPackageUserDirectoryAttributeStore extends accessPackageResourceAttributeDestination {
|
|
167
167
|
}
|
|
168
168
|
|
|
169
|
+
@complex model accessReviewAccessPackageAssignmentPolicyScope extends accessReviewResourceScope {
|
|
170
|
+
accessPackageDisplayName: string | null;
|
|
171
|
+
accessPackageId: string | null;
|
|
172
|
+
catalogDisplayName: string | null;
|
|
173
|
+
catalogId: string | null;
|
|
174
|
+
}
|
|
175
|
+
|
|
169
176
|
@abstract
|
|
170
177
|
@complex model accessReviewApplyAction {
|
|
171
178
|
}
|
|
172
179
|
|
|
180
|
+
@complex model accessReviewError extends genericError {
|
|
181
|
+
}
|
|
182
|
+
|
|
173
183
|
@complex model accessReviewHistoryScheduleSettings {
|
|
174
184
|
recurrence: patternedRecurrence;
|
|
175
185
|
reportRange: string;
|
|
@@ -185,6 +195,11 @@ namespace reference.`microsoft.graph` {
|
|
|
185
195
|
accessPackageId: string | null;
|
|
186
196
|
}
|
|
187
197
|
|
|
198
|
+
@complex model accessReviewInstanceDecisionItemAccessPackageResource extends accessReviewInstanceDecisionItemResource {
|
|
199
|
+
accessPackageAssignmentPolicyDisplayName: string | null;
|
|
200
|
+
accessPackageAssignmentPolicyId: string | null;
|
|
201
|
+
}
|
|
202
|
+
|
|
188
203
|
@open
|
|
189
204
|
@complex model accessReviewInstanceDecisionItemAzureRoleResource extends accessReviewInstanceDecisionItemResource {
|
|
190
205
|
scope: accessReviewInstanceDecisionItemResource | null;
|
|
@@ -199,6 +214,8 @@ namespace reference.`microsoft.graph` {
|
|
|
199
214
|
@open
|
|
200
215
|
@complex model accessReviewInstanceDecisionItemServicePrincipalResource extends accessReviewInstanceDecisionItemResource {
|
|
201
216
|
appId: string | null;
|
|
217
|
+
appRoleDisplayName: string | null;
|
|
218
|
+
appRoleId: string | null;
|
|
202
219
|
}
|
|
203
220
|
|
|
204
221
|
@complex model accessReviewNotificationRecipientItem {
|
|
@@ -216,6 +233,10 @@ namespace reference.`microsoft.graph` {
|
|
|
216
233
|
@complex model accessReviewNotificationRecipientScope {
|
|
217
234
|
}
|
|
218
235
|
|
|
236
|
+
@complex model accessReviewPrincipalScope extends accessReviewScope {
|
|
237
|
+
scopeType: accessReviewPrincipalScopeType;
|
|
238
|
+
}
|
|
239
|
+
|
|
219
240
|
@complex model accessReviewQueryScope extends accessReviewScope {
|
|
220
241
|
query: string | null;
|
|
221
242
|
queryRoot: string | null;
|
|
@@ -226,10 +247,18 @@ namespace reference.`microsoft.graph` {
|
|
|
226
247
|
@complex model accessReviewRecommendationInsightSetting {
|
|
227
248
|
}
|
|
228
249
|
|
|
250
|
+
@complex model accessReviewResourceScope extends accessReviewScope {
|
|
251
|
+
displayName: string | null;
|
|
252
|
+
resourceId: string | null;
|
|
253
|
+
scopeType: accessReviewResourceScopeType;
|
|
254
|
+
}
|
|
255
|
+
|
|
229
256
|
@complex model accessReviewReviewerScope {
|
|
230
257
|
query: string | null;
|
|
231
258
|
queryRoot: string | null;
|
|
232
259
|
queryType: string | null;
|
|
260
|
+
reviewerId: string | null;
|
|
261
|
+
scopeType: accessReviewReviewerScopeType;
|
|
233
262
|
}
|
|
234
263
|
|
|
235
264
|
@complex model accessReviewScheduleSettings {
|
|
@@ -2462,6 +2491,7 @@ namespace reference.`microsoft.graph` {
|
|
|
2462
2491
|
|
|
2463
2492
|
@complex model dataSourceConfiguration {
|
|
2464
2493
|
externalItem: externalItemConfiguration | null;
|
|
2494
|
+
sharePointEmbedded: sharePointEmbeddedConfiguration | null;
|
|
2465
2495
|
}
|
|
2466
2496
|
|
|
2467
2497
|
@open
|
|
@@ -3580,6 +3610,15 @@ namespace reference.`microsoft.graph` {
|
|
|
3580
3610
|
@complex model externalSponsors extends subjectSet {
|
|
3581
3611
|
}
|
|
3582
3612
|
|
|
3613
|
+
@complex model externalTokenBasedSapIagConnectionInfo extends connectionInfo {
|
|
3614
|
+
accessTokenUrl: string | null;
|
|
3615
|
+
clientId: string | null;
|
|
3616
|
+
keyVaultName: string | null;
|
|
3617
|
+
resourceGroup: string | null;
|
|
3618
|
+
secretName: string | null;
|
|
3619
|
+
subscriptionId: string | null;
|
|
3620
|
+
}
|
|
3621
|
+
|
|
3583
3622
|
@complex model extractSensitivityLabelsResult {
|
|
3584
3623
|
labels: sensitivityLabelAssignment[] | null;
|
|
3585
3624
|
}
|
|
@@ -4534,6 +4573,21 @@ namespace reference.`microsoft.graph` {
|
|
|
4534
4573
|
primaryLookupColumnId: string | null;
|
|
4535
4574
|
}
|
|
4536
4575
|
|
|
4576
|
+
@complex model m365CapabilityInboundAccess {
|
|
4577
|
+
isAllowed: boolean | null;
|
|
4578
|
+
resourceScopes: m365CapabilityResourceScopes | null;
|
|
4579
|
+
}
|
|
4580
|
+
|
|
4581
|
+
@complex model m365CapabilityResourceScope {
|
|
4582
|
+
resourceId: string | null;
|
|
4583
|
+
resourceType: m365ResourceType;
|
|
4584
|
+
}
|
|
4585
|
+
|
|
4586
|
+
@complex model m365CapabilityResourceScopes {
|
|
4587
|
+
excluded: m365CapabilityResourceScope[];
|
|
4588
|
+
included: m365CapabilityResourceScope[];
|
|
4589
|
+
}
|
|
4590
|
+
|
|
4537
4591
|
/**
|
|
4538
4592
|
* Contains properties of an included .app in a MacOS app.
|
|
4539
4593
|
*/
|
|
@@ -7027,6 +7081,10 @@ namespace reference.`microsoft.graph` {
|
|
|
7027
7081
|
removeAccountsBelowDiskFreePercentage: int32 | null;
|
|
7028
7082
|
}
|
|
7029
7083
|
|
|
7084
|
+
@complex model sharePointEmbeddedConfiguration {
|
|
7085
|
+
containerTypeId: string;
|
|
7086
|
+
}
|
|
7087
|
+
|
|
7030
7088
|
@open
|
|
7031
7089
|
@complex model sharePointGroupIdentity extends identity {
|
|
7032
7090
|
principalId: string | null;
|
|
@@ -9322,6 +9380,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9322
9380
|
originId: string | null;
|
|
9323
9381
|
originSystem: string | null;
|
|
9324
9382
|
@references environment: accessPackageResourceEnvironment | null;
|
|
9383
|
+
@references externalOriginResourceConnector: externalOriginResourceConnector | null;
|
|
9325
9384
|
@contains roles: accessPackageResourceRole[];
|
|
9326
9385
|
@contains scopes: accessPackageResourceScope[];
|
|
9327
9386
|
@contains uploadSessions: customDataProvidedResourceUploadSession[];
|
|
@@ -9417,6 +9476,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9417
9476
|
|
|
9418
9477
|
@entity model accessReviewInstance extends entity {
|
|
9419
9478
|
endDateTime: offsetDateTime | null;
|
|
9479
|
+
errors: accessReviewError[] | null;
|
|
9420
9480
|
fallbackReviewers: accessReviewReviewerScope[] | null;
|
|
9421
9481
|
reviewers: accessReviewReviewerScope[] | null;
|
|
9422
9482
|
scope: accessReviewScope | null;
|
|
@@ -9431,6 +9491,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9431
9491
|
accessReviewId: string;
|
|
9432
9492
|
appliedBy: userIdentity | null;
|
|
9433
9493
|
appliedDateTime: offsetDateTime | null;
|
|
9494
|
+
applyDescription: string | null;
|
|
9434
9495
|
applyResult: string | null;
|
|
9435
9496
|
decision: string | null;
|
|
9436
9497
|
justification: string | null;
|
|
@@ -9471,6 +9532,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9471
9532
|
@entity model accessReviewSet extends entity {
|
|
9472
9533
|
@contains definitions: accessReviewScheduleDefinition[];
|
|
9473
9534
|
@contains historyDefinitions: accessReviewHistoryDefinition[];
|
|
9535
|
+
@contains unified: unifiedRoot | null;
|
|
9474
9536
|
}
|
|
9475
9537
|
|
|
9476
9538
|
@entity model accessReviewStage extends entity {
|
|
@@ -12089,6 +12151,7 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
12089
12151
|
}
|
|
12090
12152
|
|
|
12091
12153
|
@entity model copilotPackage extends entity {
|
|
12154
|
+
agentIdentityId: string | null;
|
|
12092
12155
|
appId: string | null;
|
|
12093
12156
|
assetId: string | null;
|
|
12094
12157
|
availableTo: packageStatus;
|
|
@@ -12112,12 +12175,32 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
12112
12175
|
|
|
12113
12176
|
@entity model copilotPackageDetail extends copilotPackage {
|
|
12114
12177
|
acquireUsersAndGroups: packageAccessEntity[];
|
|
12178
|
+
/**
|
|
12179
|
+
* The number of distinct users who actively used the package during the reporting period.
|
|
12180
|
+
*/
|
|
12181
|
+
activeUsers: int32 | null;
|
|
12115
12182
|
allowedUsersAndGroups: packageAccessEntity[];
|
|
12116
12183
|
categories: string[];
|
|
12117
12184
|
elementDetails: packageElementDetail[];
|
|
12185
|
+
/**
|
|
12186
|
+
* The fraction of sessions that resulted in an exception, expressed as a value between 0 and 1.
|
|
12187
|
+
*/
|
|
12188
|
+
exceptionRate: float64 | null;
|
|
12189
|
+
/**
|
|
12190
|
+
* The date and time when the package was last used, in ISO 8601 format and UTC.
|
|
12191
|
+
*/
|
|
12192
|
+
@computed lastUsedDateTime: offsetDateTime | null;
|
|
12118
12193
|
longDescription: string | null;
|
|
12119
12194
|
sensitivity: string | null;
|
|
12120
12195
|
sharedWithUsersAndGroups: packageAccessEntity[];
|
|
12196
|
+
/**
|
|
12197
|
+
* Total hours worked by the agent.
|
|
12198
|
+
*/
|
|
12199
|
+
totalRunTimeInHours: float64 | null;
|
|
12200
|
+
/**
|
|
12201
|
+
* The total number of sessions served by the package during the reporting period.
|
|
12202
|
+
*/
|
|
12203
|
+
totalSessions: int32 | null;
|
|
12121
12204
|
}
|
|
12122
12205
|
|
|
12123
12206
|
@entity model copilotReportRoot extends entity {
|
|
@@ -12156,6 +12239,7 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
12156
12239
|
m365CollaborationInbound: crossTenantAccessPolicyM365CollaborationInboundSetting | null;
|
|
12157
12240
|
m365CollaborationOutbound: crossTenantAccessPolicyM365CollaborationOutboundSetting | null;
|
|
12158
12241
|
tenantRestrictions: crossTenantAccessPolicyTenantRestrictions | null;
|
|
12242
|
+
@contains m365Capabilities: m365CapabilityBase[];
|
|
12159
12243
|
}
|
|
12160
12244
|
|
|
12161
12245
|
@entity model crossTenantAccessPolicyConfigurationPartner extends MsGraph.SharedModels.entity {
|
|
@@ -12173,15 +12257,49 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
12173
12257
|
@computed @key tenantId: string;
|
|
12174
12258
|
tenantRestrictions: crossTenantAccessPolicyTenantRestrictions | null;
|
|
12175
12259
|
@contains identitySynchronization: crossTenantIdentitySyncPolicyPartner | null;
|
|
12260
|
+
@contains m365Capabilities: m365CapabilityBase[];
|
|
12176
12261
|
@contains serviceProviderConstraints: serviceProviderConstraints | null;
|
|
12177
12262
|
}
|
|
12178
12263
|
|
|
12264
|
+
@entity model crossTenantCalendarAvailabilityBasic extends m365CapabilityBase {
|
|
12265
|
+
}
|
|
12266
|
+
|
|
12267
|
+
@entity model crossTenantCalendarAvailabilityLimitedDetails extends m365CapabilityBase {
|
|
12268
|
+
}
|
|
12269
|
+
|
|
12270
|
+
@entity model crossTenantCalendarSharingFreeBusyDetail extends m365CapabilityBase {
|
|
12271
|
+
}
|
|
12272
|
+
|
|
12273
|
+
@entity model crossTenantCalendarSharingFreeBusyReviewer extends m365CapabilityBase {
|
|
12274
|
+
}
|
|
12275
|
+
|
|
12276
|
+
@entity model crossTenantCalendarSharingFreeBusySimple extends m365CapabilityBase {
|
|
12277
|
+
}
|
|
12278
|
+
|
|
12179
12279
|
@entity model crossTenantIdentitySyncPolicyPartner extends MsGraph.SharedModels.entity {
|
|
12180
12280
|
displayName: string | null;
|
|
12181
12281
|
@computed @key tenantId: string;
|
|
12182
12282
|
userSyncInbound: crossTenantUserSyncInbound | null;
|
|
12183
12283
|
}
|
|
12184
12284
|
|
|
12285
|
+
@entity model crossTenantMailTipsAll extends m365CapabilityBase {
|
|
12286
|
+
}
|
|
12287
|
+
|
|
12288
|
+
@entity model crossTenantMailTipsLimited extends m365CapabilityBase {
|
|
12289
|
+
}
|
|
12290
|
+
|
|
12291
|
+
@entity model crossTenantMigration extends m365CapabilityBase {
|
|
12292
|
+
}
|
|
12293
|
+
|
|
12294
|
+
@entity model crossTenantOpenProfileCard extends m365CapabilityBase {
|
|
12295
|
+
}
|
|
12296
|
+
|
|
12297
|
+
@entity model crossTenantPlacesDeskBooking extends m365CapabilityBase {
|
|
12298
|
+
}
|
|
12299
|
+
|
|
12300
|
+
@entity model crossTenantPlacesRoomBooking extends m365CapabilityBase {
|
|
12301
|
+
}
|
|
12302
|
+
|
|
12185
12303
|
@abstract
|
|
12186
12304
|
@entity model customAuthenticationExtension extends customCalloutExtension {
|
|
12187
12305
|
behaviorOnError: customExtensionBehaviorOnError | null;
|
|
@@ -12489,7 +12607,7 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
12489
12607
|
/**
|
|
12490
12608
|
* Singleton entity that acts as a container for all device app management functionality.
|
|
12491
12609
|
*/
|
|
12492
|
-
@entity model deviceAppManagement extends entity {
|
|
12610
|
+
@entity model deviceAppManagement extends MsGraph.SharedModels.entity {
|
|
12493
12611
|
/**
|
|
12494
12612
|
* Whether the account is enabled for syncing applications from the Microsoft Store for Business.
|
|
12495
12613
|
*/
|
|
@@ -14687,6 +14805,7 @@ within the time frame of their original request.
|
|
|
14687
14805
|
@contains catalogs: accessPackageCatalog[];
|
|
14688
14806
|
@contains connectedOrganizations: connectedOrganization[];
|
|
14689
14807
|
@contains controlConfigurations: controlConfiguration[];
|
|
14808
|
+
@contains externalOriginResourceConnectors: externalOriginResourceConnector[];
|
|
14690
14809
|
@contains resourceEnvironments: accessPackageResourceEnvironment[];
|
|
14691
14810
|
@contains resourceRequests: accessPackageResourceRequest[];
|
|
14692
14811
|
@contains resourceRoleScopes: accessPackageResourceRoleScope[];
|
|
@@ -14852,6 +14971,17 @@ within the time frame of their original request.
|
|
|
14852
14971
|
@entity model externalDomainName extends entity {
|
|
14853
14972
|
}
|
|
14854
14973
|
|
|
14974
|
+
@entity model externalOriginResourceConnector extends entity {
|
|
14975
|
+
connectionInfo: connectionInfo;
|
|
14976
|
+
connectorType: connectorType;
|
|
14977
|
+
createdBy: string | null;
|
|
14978
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
14979
|
+
description: string | null;
|
|
14980
|
+
displayName: string | null;
|
|
14981
|
+
modifiedBy: string | null;
|
|
14982
|
+
modifiedDateTime: offsetDateTime | null;
|
|
14983
|
+
}
|
|
14984
|
+
|
|
14855
14985
|
@entity model externalUsersSelfServiceSignUpEventsFlow extends authenticationEventsFlow {
|
|
14856
14986
|
onAttributeCollection: onAttributeCollectionHandler | null;
|
|
14857
14987
|
onAttributeCollectionStart: onAttributeCollectionStartHandler | null;
|
|
@@ -15322,6 +15452,7 @@ within the time frame of their original request.
|
|
|
15322
15452
|
promptLoginBehavior: promptLoginBehavior | null;
|
|
15323
15453
|
signingCertificateUpdateStatus: signingCertificateUpdateStatus | null;
|
|
15324
15454
|
signOutUri: string | null;
|
|
15455
|
+
systemBrowserEnabledOn: systemBrowserEnabledOn;
|
|
15325
15456
|
}
|
|
15326
15457
|
|
|
15327
15458
|
@entity model internetExplorerMode extends entity {
|
|
@@ -16517,6 +16648,13 @@ within the time frame of their original request.
|
|
|
16517
16648
|
updateChannel: appsUpdateChannelType;
|
|
16518
16649
|
}
|
|
16519
16650
|
|
|
16651
|
+
@abstract
|
|
16652
|
+
@entity model m365CapabilityBase extends MsGraph.SharedModels.entity {
|
|
16653
|
+
inboundAccess: m365CapabilityInboundAccess | null;
|
|
16654
|
+
@computed lastModifiedDateTime: offsetDateTime;
|
|
16655
|
+
@computed @key name: string;
|
|
16656
|
+
}
|
|
16657
|
+
|
|
16520
16658
|
/**
|
|
16521
16659
|
* This class contains compliance settings for Mac OS.
|
|
16522
16660
|
*/
|
|
@@ -16775,6 +16913,7 @@ within the time frame of their original request.
|
|
|
16775
16913
|
parentFolderId: string | null;
|
|
16776
16914
|
totalItemCount: int32 | null;
|
|
16777
16915
|
type: string | null;
|
|
16916
|
+
wellKnownName: string | null;
|
|
16778
16917
|
@contains childFolders: mailboxFolder[];
|
|
16779
16918
|
@contains items: mailboxItem[];
|
|
16780
16919
|
@contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
|
|
@@ -19929,7 +20068,7 @@ within the time frame of their original request.
|
|
|
19929
20068
|
roleMemberInfo: identity;
|
|
19930
20069
|
}
|
|
19931
20070
|
|
|
19932
|
-
@entity model searchEntity extends entity {
|
|
20071
|
+
@entity model searchEntity extends MsGraph.SharedModels.entity {
|
|
19933
20072
|
@contains acronyms: reference.`microsoft.graph.search`.acronym[];
|
|
19934
20073
|
@contains bookmarks: reference.`microsoft.graph.search`.bookmark[];
|
|
19935
20074
|
@contains qnas: reference.`microsoft.graph.search`.qna[];
|
|
@@ -21487,6 +21626,12 @@ within the time frame of their original request.
|
|
|
21487
21626
|
@references roleDefinition: unifiedRoleDefinition | null;
|
|
21488
21627
|
}
|
|
21489
21628
|
|
|
21629
|
+
@entity model unifiedRoot extends entity {
|
|
21630
|
+
@contains decisions: accessReviewInstanceDecisionItem[];
|
|
21631
|
+
@contains definitions: accessReviewScheduleDefinition[];
|
|
21632
|
+
@contains instances: accessReviewInstance[];
|
|
21633
|
+
}
|
|
21634
|
+
|
|
21490
21635
|
@entity model unifiedStorageQuota extends entity {
|
|
21491
21636
|
deleted: int64 | null;
|
|
21492
21637
|
manageWebUrl: string | null;
|
|
@@ -26040,6 +26185,34 @@ within the time frame of their original request.
|
|
|
26040
26185
|
unknownFutureValue: 2,
|
|
26041
26186
|
}
|
|
26042
26187
|
|
|
26188
|
+
enum accessReviewPrincipalScopeType {
|
|
26189
|
+
allUsers: 0,
|
|
26190
|
+
guestUsers: 1,
|
|
26191
|
+
inactiveUsers: 2,
|
|
26192
|
+
inactiveGuestUsers: 3,
|
|
26193
|
+
unknownFutureValue: 4,
|
|
26194
|
+
}
|
|
26195
|
+
|
|
26196
|
+
enum accessReviewResourceScopeType {
|
|
26197
|
+
group: 0,
|
|
26198
|
+
catalog: 1,
|
|
26199
|
+
servicePrincipal: 2,
|
|
26200
|
+
directoryRole: 3,
|
|
26201
|
+
accessPackageAssignmentPolicy: 4,
|
|
26202
|
+
unknownFutureValue: 5,
|
|
26203
|
+
}
|
|
26204
|
+
|
|
26205
|
+
enum accessReviewReviewerScopeType {
|
|
26206
|
+
user: 0,
|
|
26207
|
+
group: 1,
|
|
26208
|
+
self: 2,
|
|
26209
|
+
manager: 3,
|
|
26210
|
+
sponsor: 4,
|
|
26211
|
+
resourceOwner: 5,
|
|
26212
|
+
managerOrSponsor: 6,
|
|
26213
|
+
unknownFutureValue: 7,
|
|
26214
|
+
}
|
|
26215
|
+
|
|
26043
26216
|
enum accessReviewScheduleDefinitionFilterByCurrentUserOptions {
|
|
26044
26217
|
reviewer: 1,
|
|
26045
26218
|
unknownFutureValue: 2,
|
|
@@ -27830,6 +28003,11 @@ within the time frame of their original request.
|
|
|
27830
28003
|
unknownFutureValue: 127,
|
|
27831
28004
|
}
|
|
27832
28005
|
|
|
28006
|
+
enum connectorType {
|
|
28007
|
+
sapIag: 0,
|
|
28008
|
+
unknownFutureValue: 3,
|
|
28009
|
+
}
|
|
28010
|
+
|
|
27833
28011
|
enum consentRequestFilterByCurrentUserOptions {
|
|
27834
28012
|
reviewer: 0,
|
|
27835
28013
|
unknownFutureValue: 1,
|
|
@@ -29964,6 +30142,13 @@ within the time frame of their original request.
|
|
|
29964
30142
|
unknownFutureValue: 4,
|
|
29965
30143
|
}
|
|
29966
30144
|
|
|
30145
|
+
enum m365ResourceType {
|
|
30146
|
+
none: 0,
|
|
30147
|
+
group: 1,
|
|
30148
|
+
user: 2,
|
|
30149
|
+
unknownFutureValue: 3,
|
|
30150
|
+
}
|
|
30151
|
+
|
|
29967
30152
|
enum mailDestinationRoutingReason {
|
|
29968
30153
|
none: 0,
|
|
29969
30154
|
mailFlowRule: 1,
|
|
@@ -33419,6 +33604,7 @@ within the time frame of their original request.
|
|
|
33419
33604
|
oneDriveBusiness: 1,
|
|
33420
33605
|
externalItem: 2,
|
|
33421
33606
|
unknownFutureValue: 3,
|
|
33607
|
+
sharePointEmbedded: 4,
|
|
33422
33608
|
}
|
|
33423
33609
|
|
|
33424
33610
|
enum retrievalEntityType {
|
|
@@ -34239,6 +34425,15 @@ within the time frame of their original request.
|
|
|
34239
34425
|
EntryLevelErrors: 2,
|
|
34240
34426
|
}
|
|
34241
34427
|
|
|
34428
|
+
@graphFlags
|
|
34429
|
+
enum systemBrowserEnabledOn {
|
|
34430
|
+
none: 0,
|
|
34431
|
+
ios: 1,
|
|
34432
|
+
android: 2,
|
|
34433
|
+
mac: 4,
|
|
34434
|
+
unknownFutureValue: 8,
|
|
34435
|
+
}
|
|
34436
|
+
|
|
34242
34437
|
/**
|
|
34243
34438
|
* Indicates a collection of apps to target which can be one of several pre-defined lists of apps or a manually selected list of apps
|
|
34244
34439
|
*/
|
|
@@ -37393,6 +37588,17 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37393
37588
|
triggerAttributes: triggerAttribute[];
|
|
37394
37589
|
}
|
|
37395
37590
|
|
|
37591
|
+
@complex model attributeSetEntry {
|
|
37592
|
+
name: string;
|
|
37593
|
+
value: string | null;
|
|
37594
|
+
}
|
|
37595
|
+
|
|
37596
|
+
@complex model awaitedWorkflowProcessingResult {
|
|
37597
|
+
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
37598
|
+
statusReasons: string[];
|
|
37599
|
+
subject: workflowSubject | null;
|
|
37600
|
+
}
|
|
37601
|
+
|
|
37396
37602
|
@complex model cancelRunsScope extends cancelScope {
|
|
37397
37603
|
@references runs: run[];
|
|
37398
37604
|
}
|
|
@@ -37414,12 +37620,23 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37414
37620
|
}
|
|
37415
37621
|
|
|
37416
37622
|
@complex model customTaskExtensionCalloutData extends reference.`microsoft.graph`.customExtensionData {
|
|
37623
|
+
targetSubject: workflowSubject | null;
|
|
37417
37624
|
@references subject: reference.`microsoft.graph`.user | null;
|
|
37418
37625
|
@references task: task | null;
|
|
37419
37626
|
@references taskProcessingresult: taskProcessingResult | null;
|
|
37420
37627
|
@references workflow: workflow | null;
|
|
37421
37628
|
}
|
|
37422
37629
|
|
|
37630
|
+
@complex model customTaskExtensionResponseData extends reference.`microsoft.graph`.customExtensionData {
|
|
37631
|
+
operationStatus: customTaskExtensionOperationStatus;
|
|
37632
|
+
statusReasons: string[];
|
|
37633
|
+
targetSubject: workflowSubject | null;
|
|
37634
|
+
}
|
|
37635
|
+
|
|
37636
|
+
@complex model directoryObjectWorkflowSubject extends workflowSubject {
|
|
37637
|
+
@references directoryObject: reference.`microsoft.graph`.directoryObject;
|
|
37638
|
+
}
|
|
37639
|
+
|
|
37423
37640
|
@complex model groupBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
37424
37641
|
@references groups: reference.`microsoft.graph`.group[];
|
|
37425
37642
|
}
|
|
@@ -37448,6 +37665,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37448
37665
|
taskId: string;
|
|
37449
37666
|
}
|
|
37450
37667
|
|
|
37668
|
+
@complex model provisioningAttributeMapping extends workflowExecutionConditions {
|
|
37669
|
+
}
|
|
37670
|
+
|
|
37671
|
+
@complex model provisioningObjectWorkflowSubject extends workflowSubject {
|
|
37672
|
+
attributeSetEntries: attributeSetEntry[];
|
|
37673
|
+
id: string;
|
|
37674
|
+
}
|
|
37675
|
+
|
|
37451
37676
|
@abstract
|
|
37452
37677
|
@complex model quarantineCondition {
|
|
37453
37678
|
}
|
|
@@ -37476,6 +37701,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37476
37701
|
totalUsers: int32;
|
|
37477
37702
|
}
|
|
37478
37703
|
|
|
37704
|
+
@complex model subjectSummary {
|
|
37705
|
+
failedSubjects: int32;
|
|
37706
|
+
failedTasks: int32;
|
|
37707
|
+
successfulSubjects: int32;
|
|
37708
|
+
totalSubjects: int32;
|
|
37709
|
+
totalTasks: int32;
|
|
37710
|
+
}
|
|
37711
|
+
|
|
37479
37712
|
@complex model taskReportSummary {
|
|
37480
37713
|
failedTasks: int32;
|
|
37481
37714
|
successfulTasks: int32;
|
|
@@ -37577,10 +37810,15 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37577
37810
|
totalUsers: int32;
|
|
37578
37811
|
}
|
|
37579
37812
|
|
|
37813
|
+
@abstract
|
|
37814
|
+
@complex model workflowSubject {
|
|
37815
|
+
}
|
|
37816
|
+
|
|
37580
37817
|
@entity model customTaskExtension extends reference.`microsoft.graph`.customCalloutExtension {
|
|
37581
37818
|
callbackConfiguration: reference.`microsoft.graph`.customExtensionCallbackConfiguration | null;
|
|
37582
37819
|
@computed createdDateTime: offsetDateTime | null;
|
|
37583
37820
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
37821
|
+
replyMode: customTaskExtensionReplyMode;
|
|
37584
37822
|
@references createdBy: reference.`microsoft.graph`.user | null;
|
|
37585
37823
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
37586
37824
|
}
|
|
@@ -37619,10 +37857,27 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37619
37857
|
totalUsersCount: int32;
|
|
37620
37858
|
workflowExecutionType: workflowExecutionType;
|
|
37621
37859
|
@references reprocessedRuns: run[];
|
|
37860
|
+
@contains subjectProcessingResults: subjectProcessingResult[];
|
|
37622
37861
|
@contains taskProcessingResults: taskProcessingResult[];
|
|
37623
37862
|
@contains userProcessingResults: userProcessingResult[];
|
|
37624
37863
|
}
|
|
37625
37864
|
|
|
37865
|
+
@entity model subjectProcessingResult extends reference.`microsoft.graph`.entity {
|
|
37866
|
+
completedDateTime: offsetDateTime | null;
|
|
37867
|
+
failedTasksCount: int32;
|
|
37868
|
+
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
37869
|
+
scheduledDateTime: offsetDateTime;
|
|
37870
|
+
startedDateTime: offsetDateTime | null;
|
|
37871
|
+
subject: workflowSubject;
|
|
37872
|
+
subjectType: subjectType;
|
|
37873
|
+
totalTasksCount: int32;
|
|
37874
|
+
totalUnprocessedTasksCount: int32;
|
|
37875
|
+
workflowExecutionType: workflowExecutionType;
|
|
37876
|
+
workflowVersion: int32;
|
|
37877
|
+
@references reprocessedRuns: run[];
|
|
37878
|
+
@contains taskProcessingResults: taskProcessingResult[];
|
|
37879
|
+
}
|
|
37880
|
+
|
|
37626
37881
|
@entity model task extends reference.`microsoft.graph`.entity {
|
|
37627
37882
|
arguments: reference.`microsoft.graph`.keyValuePair[];
|
|
37628
37883
|
category: lifecycleTaskCategory;
|
|
@@ -37651,6 +37906,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37651
37906
|
processingInfo: string | null;
|
|
37652
37907
|
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
37653
37908
|
startedDateTime: offsetDateTime | null;
|
|
37909
|
+
workflowSubject: workflowSubject | null;
|
|
37654
37910
|
@references subject: reference.`microsoft.graph`.user;
|
|
37655
37911
|
@references task: task;
|
|
37656
37912
|
}
|
|
@@ -37695,6 +37951,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37695
37951
|
@references executionScope: userProcessingResult[];
|
|
37696
37952
|
@references previewScope: reference.`microsoft.graph`.directoryObject[];
|
|
37697
37953
|
@contains runs: run[];
|
|
37954
|
+
@contains subjectProcessingResults: subjectProcessingResult[];
|
|
37698
37955
|
@contains taskReports: taskReport[];
|
|
37699
37956
|
@contains userProcessingResults: userProcessingResult[];
|
|
37700
37957
|
@contains versions: workflowVersion[];
|
|
@@ -37710,6 +37967,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37710
37967
|
isEnabled: boolean;
|
|
37711
37968
|
isSchedulingEnabled: boolean;
|
|
37712
37969
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
37970
|
+
targetSubjectType: subjectType;
|
|
37713
37971
|
@references administrationScopeTargets: reference.`microsoft.graph`.directoryObject[];
|
|
37714
37972
|
@references createdBy: reference.`microsoft.graph`.user | null;
|
|
37715
37973
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
@@ -37747,12 +38005,20 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37747
38005
|
unknownFutureValue: 2,
|
|
37748
38006
|
}
|
|
37749
38007
|
|
|
38008
|
+
enum customTaskExtensionReplyMode {
|
|
38009
|
+
none: 0,
|
|
38010
|
+
callback: 1,
|
|
38011
|
+
response: 2,
|
|
38012
|
+
unknownFutureValue: 3,
|
|
38013
|
+
}
|
|
38014
|
+
|
|
37750
38015
|
@graphFlags
|
|
37751
38016
|
enum lifecycleTaskCategory {
|
|
37752
38017
|
joiner: 1,
|
|
37753
38018
|
leaver: 2,
|
|
37754
38019
|
unknownFutureValue: 4,
|
|
37755
38020
|
mover: 8,
|
|
38021
|
+
extensibility: 16,
|
|
37756
38022
|
}
|
|
37757
38023
|
|
|
37758
38024
|
enum lifecycleWorkflowCategory {
|
|
@@ -37760,6 +38026,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37760
38026
|
leaver: 1,
|
|
37761
38027
|
unknownFutureValue: 2,
|
|
37762
38028
|
mover: 3,
|
|
38029
|
+
extensibility: 4,
|
|
37763
38030
|
}
|
|
37764
38031
|
|
|
37765
38032
|
enum lifecycleWorkflowProcessingStatus {
|
|
@@ -37794,6 +38061,13 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37794
38061
|
unknownFutureValue: 4,
|
|
37795
38062
|
}
|
|
37796
38063
|
|
|
38064
|
+
@graphFlags
|
|
38065
|
+
enum subjectType {
|
|
38066
|
+
user: 1,
|
|
38067
|
+
unknownFutureValue: 8,
|
|
38068
|
+
provisioningObject: 16,
|
|
38069
|
+
}
|
|
38070
|
+
|
|
37797
38071
|
enum valueType {
|
|
37798
38072
|
`enum`: 0,
|
|
37799
38073
|
`string`: 1,
|
|
@@ -37808,6 +38082,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37808
38082
|
unknownFutureValue: 2,
|
|
37809
38083
|
activatedWithScope: 3,
|
|
37810
38084
|
preview: 4,
|
|
38085
|
+
extensibilityOnDemand: 5,
|
|
37811
38086
|
}
|
|
37812
38087
|
|
|
37813
38088
|
enum workflowTriggerTimeBasedAttribute {
|