@microsoft/typespec-msgraph-reference 1.0.9 → 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 +18 -0
- package/lib/Bleu/Beta/main.tsp +1011 -52
- package/lib/Bleu/V1.0/main.tsp +27 -2
- package/lib/Delos/Beta/main.tsp +1704 -51
- package/lib/Delos/V1.0/main.tsp +468 -1
- package/lib/Fairfax/Beta/main.tsp +865 -55
- package/lib/Fairfax/V1.0/main.tsp +93 -3
- package/lib/GovSG/Beta/main.tsp +28 -0
- package/lib/Mooncake/Beta/main.tsp +709 -52
- package/lib/Mooncake/V1.0/main.tsp +103 -3
- package/lib/Prod/Beta/main.tsp +1190 -332
- package/lib/Prod/V1.0/main.tsp +310 -2
- package/lib/USNat/Beta/main.tsp +145 -9
- package/lib/USNat/V1.0/main.tsp +91 -1
- package/lib/USSec/Beta/main.tsp +145 -9
- package/lib/USSec/V1.0/main.tsp +91 -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
|
*/
|
|
@@ -6112,6 +6166,7 @@ namespace reference.`microsoft.graph` {
|
|
|
6112
6166
|
@abstract
|
|
6113
6167
|
@complex model processContentMetadataBase {
|
|
6114
6168
|
content: contentBase | null;
|
|
6169
|
+
contentCategory: contentCategory | null;
|
|
6115
6170
|
correlationId: string | null;
|
|
6116
6171
|
@computed createdDateTime: offsetDateTime;
|
|
6117
6172
|
identifier: string;
|
|
@@ -7026,6 +7081,10 @@ namespace reference.`microsoft.graph` {
|
|
|
7026
7081
|
removeAccountsBelowDiskFreePercentage: int32 | null;
|
|
7027
7082
|
}
|
|
7028
7083
|
|
|
7084
|
+
@complex model sharePointEmbeddedConfiguration {
|
|
7085
|
+
containerTypeId: string;
|
|
7086
|
+
}
|
|
7087
|
+
|
|
7029
7088
|
@open
|
|
7030
7089
|
@complex model sharePointGroupIdentity extends identity {
|
|
7031
7090
|
principalId: string | null;
|
|
@@ -9321,6 +9380,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9321
9380
|
originId: string | null;
|
|
9322
9381
|
originSystem: string | null;
|
|
9323
9382
|
@references environment: accessPackageResourceEnvironment | null;
|
|
9383
|
+
@references externalOriginResourceConnector: externalOriginResourceConnector | null;
|
|
9324
9384
|
@contains roles: accessPackageResourceRole[];
|
|
9325
9385
|
@contains scopes: accessPackageResourceScope[];
|
|
9326
9386
|
@contains uploadSessions: customDataProvidedResourceUploadSession[];
|
|
@@ -9416,6 +9476,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9416
9476
|
|
|
9417
9477
|
@entity model accessReviewInstance extends entity {
|
|
9418
9478
|
endDateTime: offsetDateTime | null;
|
|
9479
|
+
errors: accessReviewError[] | null;
|
|
9419
9480
|
fallbackReviewers: accessReviewReviewerScope[] | null;
|
|
9420
9481
|
reviewers: accessReviewReviewerScope[] | null;
|
|
9421
9482
|
scope: accessReviewScope | null;
|
|
@@ -9430,6 +9491,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9430
9491
|
accessReviewId: string;
|
|
9431
9492
|
appliedBy: userIdentity | null;
|
|
9432
9493
|
appliedDateTime: offsetDateTime | null;
|
|
9494
|
+
applyDescription: string | null;
|
|
9433
9495
|
applyResult: string | null;
|
|
9434
9496
|
decision: string | null;
|
|
9435
9497
|
justification: string | null;
|
|
@@ -9470,6 +9532,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9470
9532
|
@entity model accessReviewSet extends entity {
|
|
9471
9533
|
@contains definitions: accessReviewScheduleDefinition[];
|
|
9472
9534
|
@contains historyDefinitions: accessReviewHistoryDefinition[];
|
|
9535
|
+
@contains unified: unifiedRoot | null;
|
|
9473
9536
|
}
|
|
9474
9537
|
|
|
9475
9538
|
@entity model accessReviewStage extends entity {
|
|
@@ -12088,6 +12151,7 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
12088
12151
|
}
|
|
12089
12152
|
|
|
12090
12153
|
@entity model copilotPackage extends entity {
|
|
12154
|
+
agentIdentityId: string | null;
|
|
12091
12155
|
appId: string | null;
|
|
12092
12156
|
assetId: string | null;
|
|
12093
12157
|
availableTo: packageStatus;
|
|
@@ -12111,12 +12175,32 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
12111
12175
|
|
|
12112
12176
|
@entity model copilotPackageDetail extends copilotPackage {
|
|
12113
12177
|
acquireUsersAndGroups: packageAccessEntity[];
|
|
12178
|
+
/**
|
|
12179
|
+
* The number of distinct users who actively used the package during the reporting period.
|
|
12180
|
+
*/
|
|
12181
|
+
activeUsers: int32 | null;
|
|
12114
12182
|
allowedUsersAndGroups: packageAccessEntity[];
|
|
12115
12183
|
categories: string[];
|
|
12116
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;
|
|
12117
12193
|
longDescription: string | null;
|
|
12118
12194
|
sensitivity: string | null;
|
|
12119
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;
|
|
12120
12204
|
}
|
|
12121
12205
|
|
|
12122
12206
|
@entity model copilotReportRoot extends entity {
|
|
@@ -12155,6 +12239,7 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
12155
12239
|
m365CollaborationInbound: crossTenantAccessPolicyM365CollaborationInboundSetting | null;
|
|
12156
12240
|
m365CollaborationOutbound: crossTenantAccessPolicyM365CollaborationOutboundSetting | null;
|
|
12157
12241
|
tenantRestrictions: crossTenantAccessPolicyTenantRestrictions | null;
|
|
12242
|
+
@contains m365Capabilities: m365CapabilityBase[];
|
|
12158
12243
|
}
|
|
12159
12244
|
|
|
12160
12245
|
@entity model crossTenantAccessPolicyConfigurationPartner extends MsGraph.SharedModels.entity {
|
|
@@ -12172,6 +12257,23 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
12172
12257
|
@computed @key tenantId: string;
|
|
12173
12258
|
tenantRestrictions: crossTenantAccessPolicyTenantRestrictions | null;
|
|
12174
12259
|
@contains identitySynchronization: crossTenantIdentitySyncPolicyPartner | null;
|
|
12260
|
+
@contains m365Capabilities: m365CapabilityBase[];
|
|
12261
|
+
@contains serviceProviderConstraints: serviceProviderConstraints | null;
|
|
12262
|
+
}
|
|
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 {
|
|
12175
12277
|
}
|
|
12176
12278
|
|
|
12177
12279
|
@entity model crossTenantIdentitySyncPolicyPartner extends MsGraph.SharedModels.entity {
|
|
@@ -12180,6 +12282,24 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
12180
12282
|
userSyncInbound: crossTenantUserSyncInbound | null;
|
|
12181
12283
|
}
|
|
12182
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
|
+
|
|
12183
12303
|
@abstract
|
|
12184
12304
|
@entity model customAuthenticationExtension extends customCalloutExtension {
|
|
12185
12305
|
behaviorOnError: customExtensionBehaviorOnError | null;
|
|
@@ -12359,6 +12479,12 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
12359
12479
|
serviceName: string;
|
|
12360
12480
|
}
|
|
12361
12481
|
|
|
12482
|
+
@entity model delegatedAdminServiceProviderConstraints extends serviceProviderConstraints {
|
|
12483
|
+
allowedRoleTemplateIds: string[] | null;
|
|
12484
|
+
@computed createdDateTime: offsetDateTime;
|
|
12485
|
+
@computed lastModifiedDateTime: offsetDateTime;
|
|
12486
|
+
}
|
|
12487
|
+
|
|
12362
12488
|
@entity model delegatedPermissionClassification extends entity {
|
|
12363
12489
|
classification: permissionClassificationType | null;
|
|
12364
12490
|
permissionId: string | null;
|
|
@@ -12481,7 +12607,7 @@ files, events, and updates for people sharing a common interest or goal.
|
|
|
12481
12607
|
/**
|
|
12482
12608
|
* Singleton entity that acts as a container for all device app management functionality.
|
|
12483
12609
|
*/
|
|
12484
|
-
@entity model deviceAppManagement extends entity {
|
|
12610
|
+
@entity model deviceAppManagement extends MsGraph.SharedModels.entity {
|
|
12485
12611
|
/**
|
|
12486
12612
|
* Whether the account is enabled for syncing applications from the Microsoft Store for Business.
|
|
12487
12613
|
*/
|
|
@@ -14679,6 +14805,7 @@ within the time frame of their original request.
|
|
|
14679
14805
|
@contains catalogs: accessPackageCatalog[];
|
|
14680
14806
|
@contains connectedOrganizations: connectedOrganization[];
|
|
14681
14807
|
@contains controlConfigurations: controlConfiguration[];
|
|
14808
|
+
@contains externalOriginResourceConnectors: externalOriginResourceConnector[];
|
|
14682
14809
|
@contains resourceEnvironments: accessPackageResourceEnvironment[];
|
|
14683
14810
|
@contains resourceRequests: accessPackageResourceRequest[];
|
|
14684
14811
|
@contains resourceRoleScopes: accessPackageResourceRoleScope[];
|
|
@@ -14844,6 +14971,17 @@ within the time frame of their original request.
|
|
|
14844
14971
|
@entity model externalDomainName extends entity {
|
|
14845
14972
|
}
|
|
14846
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
|
+
|
|
14847
14985
|
@entity model externalUsersSelfServiceSignUpEventsFlow extends authenticationEventsFlow {
|
|
14848
14986
|
onAttributeCollection: onAttributeCollectionHandler | null;
|
|
14849
14987
|
onAttributeCollectionStart: onAttributeCollectionStartHandler | null;
|
|
@@ -15059,6 +15197,7 @@ within the time frame of their original request.
|
|
|
15059
15197
|
onPremisesSamAccountName: string | null;
|
|
15060
15198
|
onPremisesSecurityIdentifier: string | null;
|
|
15061
15199
|
onPremisesSyncEnabled: boolean | null;
|
|
15200
|
+
organizationId: string | null;
|
|
15062
15201
|
preferredDataLocation: string | null;
|
|
15063
15202
|
preferredLanguage: string | null;
|
|
15064
15203
|
proxyAddresses: string[];
|
|
@@ -15313,6 +15452,7 @@ within the time frame of their original request.
|
|
|
15313
15452
|
promptLoginBehavior: promptLoginBehavior | null;
|
|
15314
15453
|
signingCertificateUpdateStatus: signingCertificateUpdateStatus | null;
|
|
15315
15454
|
signOutUri: string | null;
|
|
15455
|
+
systemBrowserEnabledOn: systemBrowserEnabledOn;
|
|
15316
15456
|
}
|
|
15317
15457
|
|
|
15318
15458
|
@entity model internetExplorerMode extends entity {
|
|
@@ -16508,6 +16648,13 @@ within the time frame of their original request.
|
|
|
16508
16648
|
updateChannel: appsUpdateChannelType;
|
|
16509
16649
|
}
|
|
16510
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
|
+
|
|
16511
16658
|
/**
|
|
16512
16659
|
* This class contains compliance settings for Mac OS.
|
|
16513
16660
|
*/
|
|
@@ -16766,6 +16913,7 @@ within the time frame of their original request.
|
|
|
16766
16913
|
parentFolderId: string | null;
|
|
16767
16914
|
totalItemCount: int32 | null;
|
|
16768
16915
|
type: string | null;
|
|
16916
|
+
wellKnownName: string | null;
|
|
16769
16917
|
@contains childFolders: mailboxFolder[];
|
|
16770
16918
|
@contains items: mailboxItem[];
|
|
16771
16919
|
@contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
|
|
@@ -19920,7 +20068,7 @@ within the time frame of their original request.
|
|
|
19920
20068
|
roleMemberInfo: identity;
|
|
19921
20069
|
}
|
|
19922
20070
|
|
|
19923
|
-
@entity model searchEntity extends entity {
|
|
20071
|
+
@entity model searchEntity extends MsGraph.SharedModels.entity {
|
|
19924
20072
|
@contains acronyms: reference.`microsoft.graph.search`.acronym[];
|
|
19925
20073
|
@contains bookmarks: reference.`microsoft.graph.search`.bookmark[];
|
|
19926
20074
|
@contains qnas: reference.`microsoft.graph.search`.qna[];
|
|
@@ -20157,6 +20305,9 @@ within the time frame of their original request.
|
|
|
20157
20305
|
tokenIssuerType: tokenIssuerType | null;
|
|
20158
20306
|
}
|
|
20159
20307
|
|
|
20308
|
+
@entity model serviceProviderConstraints extends entity {
|
|
20309
|
+
}
|
|
20310
|
+
|
|
20160
20311
|
@entity model serviceStorageQuotaBreakdown extends storageQuotaBreakdown {
|
|
20161
20312
|
}
|
|
20162
20313
|
|
|
@@ -21312,6 +21463,7 @@ within the time frame of their original request.
|
|
|
21312
21463
|
condition: string | null;
|
|
21313
21464
|
directoryScopeId: string | null;
|
|
21314
21465
|
principalId: string | null;
|
|
21466
|
+
principalOrganizationId: string | null;
|
|
21315
21467
|
roleDefinitionId: string | null;
|
|
21316
21468
|
@contains appScope: appScope | null;
|
|
21317
21469
|
@references directoryScope: directoryObject | null;
|
|
@@ -21474,6 +21626,12 @@ within the time frame of their original request.
|
|
|
21474
21626
|
@references roleDefinition: unifiedRoleDefinition | null;
|
|
21475
21627
|
}
|
|
21476
21628
|
|
|
21629
|
+
@entity model unifiedRoot extends entity {
|
|
21630
|
+
@contains decisions: accessReviewInstanceDecisionItem[];
|
|
21631
|
+
@contains definitions: accessReviewScheduleDefinition[];
|
|
21632
|
+
@contains instances: accessReviewInstance[];
|
|
21633
|
+
}
|
|
21634
|
+
|
|
21477
21635
|
@entity model unifiedStorageQuota extends entity {
|
|
21478
21636
|
deleted: int64 | null;
|
|
21479
21637
|
manageWebUrl: string | null;
|
|
@@ -21658,6 +21816,7 @@ within the time frame of their original request.
|
|
|
21658
21816
|
@contains scopedRoleMemberOf: scopedRoleMembership[];
|
|
21659
21817
|
@contains settings: userSettings | null;
|
|
21660
21818
|
@contains solutions: userSolutionRoot | null;
|
|
21819
|
+
@references sponsorOf: directoryObject[];
|
|
21661
21820
|
@references sponsors: directoryObject[];
|
|
21662
21821
|
@contains teamwork: userTeamwork | null;
|
|
21663
21822
|
@contains todo: todo | null;
|
|
@@ -26026,6 +26185,34 @@ within the time frame of their original request.
|
|
|
26026
26185
|
unknownFutureValue: 2,
|
|
26027
26186
|
}
|
|
26028
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
|
+
|
|
26029
26216
|
enum accessReviewScheduleDefinitionFilterByCurrentUserOptions {
|
|
26030
26217
|
reviewer: 1,
|
|
26031
26218
|
unknownFutureValue: 2,
|
|
@@ -27816,6 +28003,11 @@ within the time frame of their original request.
|
|
|
27816
28003
|
unknownFutureValue: 127,
|
|
27817
28004
|
}
|
|
27818
28005
|
|
|
28006
|
+
enum connectorType {
|
|
28007
|
+
sapIag: 0,
|
|
28008
|
+
unknownFutureValue: 3,
|
|
28009
|
+
}
|
|
28010
|
+
|
|
27819
28011
|
enum consentRequestFilterByCurrentUserOptions {
|
|
27820
28012
|
reviewer: 0,
|
|
27821
28013
|
unknownFutureValue: 1,
|
|
@@ -27832,6 +28024,12 @@ within the time frame of their original request.
|
|
|
27832
28024
|
unknownFutureValue: 7,
|
|
27833
28025
|
}
|
|
27834
28026
|
|
|
28027
|
+
enum contentCategory {
|
|
28028
|
+
none: 0,
|
|
28029
|
+
ai: 1,
|
|
28030
|
+
unknownFutureValue: 2,
|
|
28031
|
+
}
|
|
28032
|
+
|
|
27835
28033
|
enum contentProcessingErrorType {
|
|
27836
28034
|
transient: 0,
|
|
27837
28035
|
permanent: 1,
|
|
@@ -29944,6 +30142,13 @@ within the time frame of their original request.
|
|
|
29944
30142
|
unknownFutureValue: 4,
|
|
29945
30143
|
}
|
|
29946
30144
|
|
|
30145
|
+
enum m365ResourceType {
|
|
30146
|
+
none: 0,
|
|
30147
|
+
group: 1,
|
|
30148
|
+
user: 2,
|
|
30149
|
+
unknownFutureValue: 3,
|
|
30150
|
+
}
|
|
30151
|
+
|
|
29947
30152
|
enum mailDestinationRoutingReason {
|
|
29948
30153
|
none: 0,
|
|
29949
30154
|
mailFlowRule: 1,
|
|
@@ -33399,6 +33604,7 @@ within the time frame of their original request.
|
|
|
33399
33604
|
oneDriveBusiness: 1,
|
|
33400
33605
|
externalItem: 2,
|
|
33401
33606
|
unknownFutureValue: 3,
|
|
33607
|
+
sharePointEmbedded: 4,
|
|
33402
33608
|
}
|
|
33403
33609
|
|
|
33404
33610
|
enum retrievalEntityType {
|
|
@@ -34219,6 +34425,15 @@ within the time frame of their original request.
|
|
|
34219
34425
|
EntryLevelErrors: 2,
|
|
34220
34426
|
}
|
|
34221
34427
|
|
|
34428
|
+
@graphFlags
|
|
34429
|
+
enum systemBrowserEnabledOn {
|
|
34430
|
+
none: 0,
|
|
34431
|
+
ios: 1,
|
|
34432
|
+
android: 2,
|
|
34433
|
+
mac: 4,
|
|
34434
|
+
unknownFutureValue: 8,
|
|
34435
|
+
}
|
|
34436
|
+
|
|
34222
34437
|
/**
|
|
34223
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
|
|
34224
34439
|
*/
|
|
@@ -34627,6 +34842,10 @@ within the time frame of their original request.
|
|
|
34627
34842
|
downloadText: 3,
|
|
34628
34843
|
downloadFile: 4,
|
|
34629
34844
|
unknownFutureValue: 5,
|
|
34845
|
+
copyToClipboard: 6,
|
|
34846
|
+
pasteFromClipboard: 7,
|
|
34847
|
+
print: 8,
|
|
34848
|
+
accessDebugTools: 9,
|
|
34630
34849
|
}
|
|
34631
34850
|
|
|
34632
34851
|
@graphFlags
|
|
@@ -34637,6 +34856,10 @@ within the time frame of their original request.
|
|
|
34637
34856
|
downloadText: 4,
|
|
34638
34857
|
downloadFile: 8,
|
|
34639
34858
|
unknownFutureValue: 16,
|
|
34859
|
+
copyToClipboard: 32,
|
|
34860
|
+
pasteFromClipboard: 64,
|
|
34861
|
+
print: 128,
|
|
34862
|
+
accessDebugTools: 256,
|
|
34640
34863
|
}
|
|
34641
34864
|
|
|
34642
34865
|
enum userDefaultAuthenticationMethod {
|
|
@@ -37067,6 +37290,10 @@ namespace reference.`microsoft.graph.externalConnectors` {
|
|
|
37067
37290
|
value: string | null;
|
|
37068
37291
|
}
|
|
37069
37292
|
|
|
37293
|
+
@complex model externalItemInformationProtectionLabel {
|
|
37294
|
+
sensitivityLabelId: string | null;
|
|
37295
|
+
}
|
|
37296
|
+
|
|
37070
37297
|
@complex model itemIdResolver extends urlToItemResolverBase {
|
|
37071
37298
|
itemId: string;
|
|
37072
37299
|
urlMatchInfo: urlMatchInfo | null;
|
|
@@ -37162,6 +37389,7 @@ namespace reference.`microsoft.graph.externalConnectors` {
|
|
|
37162
37389
|
@entity model externalItem extends reference.`microsoft.graph`.entity {
|
|
37163
37390
|
acl: acl[] | null;
|
|
37164
37391
|
content: externalItemContent | null;
|
|
37392
|
+
informationProtectionLabel: externalItemInformationProtectionLabel | null;
|
|
37165
37393
|
properties: properties | null;
|
|
37166
37394
|
@contains activities: externalActivity[];
|
|
37167
37395
|
}
|
|
@@ -37360,6 +37588,17 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37360
37588
|
triggerAttributes: triggerAttribute[];
|
|
37361
37589
|
}
|
|
37362
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
|
+
|
|
37363
37602
|
@complex model cancelRunsScope extends cancelScope {
|
|
37364
37603
|
@references runs: run[];
|
|
37365
37604
|
}
|
|
@@ -37381,12 +37620,23 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37381
37620
|
}
|
|
37382
37621
|
|
|
37383
37622
|
@complex model customTaskExtensionCalloutData extends reference.`microsoft.graph`.customExtensionData {
|
|
37623
|
+
targetSubject: workflowSubject | null;
|
|
37384
37624
|
@references subject: reference.`microsoft.graph`.user | null;
|
|
37385
37625
|
@references task: task | null;
|
|
37386
37626
|
@references taskProcessingresult: taskProcessingResult | null;
|
|
37387
37627
|
@references workflow: workflow | null;
|
|
37388
37628
|
}
|
|
37389
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
|
+
|
|
37390
37640
|
@complex model groupBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
37391
37641
|
@references groups: reference.`microsoft.graph`.group[];
|
|
37392
37642
|
}
|
|
@@ -37415,6 +37665,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37415
37665
|
taskId: string;
|
|
37416
37666
|
}
|
|
37417
37667
|
|
|
37668
|
+
@complex model provisioningAttributeMapping extends workflowExecutionConditions {
|
|
37669
|
+
}
|
|
37670
|
+
|
|
37671
|
+
@complex model provisioningObjectWorkflowSubject extends workflowSubject {
|
|
37672
|
+
attributeSetEntries: attributeSetEntry[];
|
|
37673
|
+
id: string;
|
|
37674
|
+
}
|
|
37675
|
+
|
|
37418
37676
|
@abstract
|
|
37419
37677
|
@complex model quarantineCondition {
|
|
37420
37678
|
}
|
|
@@ -37443,6 +37701,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37443
37701
|
totalUsers: int32;
|
|
37444
37702
|
}
|
|
37445
37703
|
|
|
37704
|
+
@complex model subjectSummary {
|
|
37705
|
+
failedSubjects: int32;
|
|
37706
|
+
failedTasks: int32;
|
|
37707
|
+
successfulSubjects: int32;
|
|
37708
|
+
totalSubjects: int32;
|
|
37709
|
+
totalTasks: int32;
|
|
37710
|
+
}
|
|
37711
|
+
|
|
37446
37712
|
@complex model taskReportSummary {
|
|
37447
37713
|
failedTasks: int32;
|
|
37448
37714
|
successfulTasks: int32;
|
|
@@ -37544,10 +37810,15 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37544
37810
|
totalUsers: int32;
|
|
37545
37811
|
}
|
|
37546
37812
|
|
|
37813
|
+
@abstract
|
|
37814
|
+
@complex model workflowSubject {
|
|
37815
|
+
}
|
|
37816
|
+
|
|
37547
37817
|
@entity model customTaskExtension extends reference.`microsoft.graph`.customCalloutExtension {
|
|
37548
37818
|
callbackConfiguration: reference.`microsoft.graph`.customExtensionCallbackConfiguration | null;
|
|
37549
37819
|
@computed createdDateTime: offsetDateTime | null;
|
|
37550
37820
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
37821
|
+
replyMode: customTaskExtensionReplyMode;
|
|
37551
37822
|
@references createdBy: reference.`microsoft.graph`.user | null;
|
|
37552
37823
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
37553
37824
|
}
|
|
@@ -37586,10 +37857,27 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37586
37857
|
totalUsersCount: int32;
|
|
37587
37858
|
workflowExecutionType: workflowExecutionType;
|
|
37588
37859
|
@references reprocessedRuns: run[];
|
|
37860
|
+
@contains subjectProcessingResults: subjectProcessingResult[];
|
|
37589
37861
|
@contains taskProcessingResults: taskProcessingResult[];
|
|
37590
37862
|
@contains userProcessingResults: userProcessingResult[];
|
|
37591
37863
|
}
|
|
37592
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
|
+
|
|
37593
37881
|
@entity model task extends reference.`microsoft.graph`.entity {
|
|
37594
37882
|
arguments: reference.`microsoft.graph`.keyValuePair[];
|
|
37595
37883
|
category: lifecycleTaskCategory;
|
|
@@ -37618,6 +37906,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37618
37906
|
processingInfo: string | null;
|
|
37619
37907
|
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
37620
37908
|
startedDateTime: offsetDateTime | null;
|
|
37909
|
+
workflowSubject: workflowSubject | null;
|
|
37621
37910
|
@references subject: reference.`microsoft.graph`.user;
|
|
37622
37911
|
@references task: task;
|
|
37623
37912
|
}
|
|
@@ -37662,6 +37951,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37662
37951
|
@references executionScope: userProcessingResult[];
|
|
37663
37952
|
@references previewScope: reference.`microsoft.graph`.directoryObject[];
|
|
37664
37953
|
@contains runs: run[];
|
|
37954
|
+
@contains subjectProcessingResults: subjectProcessingResult[];
|
|
37665
37955
|
@contains taskReports: taskReport[];
|
|
37666
37956
|
@contains userProcessingResults: userProcessingResult[];
|
|
37667
37957
|
@contains versions: workflowVersion[];
|
|
@@ -37677,6 +37967,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37677
37967
|
isEnabled: boolean;
|
|
37678
37968
|
isSchedulingEnabled: boolean;
|
|
37679
37969
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
37970
|
+
targetSubjectType: subjectType;
|
|
37680
37971
|
@references administrationScopeTargets: reference.`microsoft.graph`.directoryObject[];
|
|
37681
37972
|
@references createdBy: reference.`microsoft.graph`.user | null;
|
|
37682
37973
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
@@ -37714,12 +38005,20 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37714
38005
|
unknownFutureValue: 2,
|
|
37715
38006
|
}
|
|
37716
38007
|
|
|
38008
|
+
enum customTaskExtensionReplyMode {
|
|
38009
|
+
none: 0,
|
|
38010
|
+
callback: 1,
|
|
38011
|
+
response: 2,
|
|
38012
|
+
unknownFutureValue: 3,
|
|
38013
|
+
}
|
|
38014
|
+
|
|
37717
38015
|
@graphFlags
|
|
37718
38016
|
enum lifecycleTaskCategory {
|
|
37719
38017
|
joiner: 1,
|
|
37720
38018
|
leaver: 2,
|
|
37721
38019
|
unknownFutureValue: 4,
|
|
37722
38020
|
mover: 8,
|
|
38021
|
+
extensibility: 16,
|
|
37723
38022
|
}
|
|
37724
38023
|
|
|
37725
38024
|
enum lifecycleWorkflowCategory {
|
|
@@ -37727,6 +38026,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37727
38026
|
leaver: 1,
|
|
37728
38027
|
unknownFutureValue: 2,
|
|
37729
38028
|
mover: 3,
|
|
38029
|
+
extensibility: 4,
|
|
37730
38030
|
}
|
|
37731
38031
|
|
|
37732
38032
|
enum lifecycleWorkflowProcessingStatus {
|
|
@@ -37761,6 +38061,13 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37761
38061
|
unknownFutureValue: 4,
|
|
37762
38062
|
}
|
|
37763
38063
|
|
|
38064
|
+
@graphFlags
|
|
38065
|
+
enum subjectType {
|
|
38066
|
+
user: 1,
|
|
38067
|
+
unknownFutureValue: 8,
|
|
38068
|
+
provisioningObject: 16,
|
|
38069
|
+
}
|
|
38070
|
+
|
|
37764
38071
|
enum valueType {
|
|
37765
38072
|
`enum`: 0,
|
|
37766
38073
|
`string`: 1,
|
|
@@ -37775,6 +38082,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
37775
38082
|
unknownFutureValue: 2,
|
|
37776
38083
|
activatedWithScope: 3,
|
|
37777
38084
|
preview: 4,
|
|
38085
|
+
extensibilityOnDemand: 5,
|
|
37778
38086
|
}
|
|
37779
38087
|
|
|
37780
38088
|
enum workflowTriggerTimeBasedAttribute {
|