@microsoft/typespec-msgraph-reference 1.0.4 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.rush/temp/package-deps_build.json +18 -18
- package/CHANGELOG.md +18 -0
- package/lib/Bleu/Beta/main.tsp +310 -7
- package/lib/Bleu/V1.0/main.tsp +430 -1
- package/lib/Delos/Beta/main.tsp +4284 -23
- package/lib/Delos/V1.0/main.tsp +2815 -22
- package/lib/Fairfax/Beta/main.tsp +627 -23
- package/lib/Fairfax/V1.0/main.tsp +61 -1
- package/lib/GovSG/Beta/main.tsp +1 -0
- package/lib/GovSG/V1.0/main.tsp +3 -1
- package/lib/Mooncake/Beta/main.tsp +269 -7
- package/lib/Mooncake/V1.0/main.tsp +60 -1
- package/lib/Prod/Beta/main.tsp +1695 -75
- package/lib/Prod/V1.0/main.tsp +4171 -167
- package/lib/USNat/Beta/main.tsp +576 -0
- package/lib/USNat/V1.0/main.tsp +465 -1
- package/lib/USSec/Beta/main.tsp +576 -0
- package/lib/USSec/V1.0/main.tsp +465 -1
- package/package.json +2 -2
package/lib/USNat/V1.0/main.tsp
CHANGED
|
@@ -1081,6 +1081,24 @@ namespace reference.`microsoft.graph` {
|
|
|
1081
1081
|
targetId: string | null;
|
|
1082
1082
|
}
|
|
1083
1083
|
|
|
1084
|
+
@complex model CopyNotebookModel {
|
|
1085
|
+
createdBy: string | null;
|
|
1086
|
+
createdByIdentity: identitySet | null;
|
|
1087
|
+
createdTime: offsetDateTime | null;
|
|
1088
|
+
id: string | null;
|
|
1089
|
+
isDefault: boolean | null;
|
|
1090
|
+
isShared: boolean | null;
|
|
1091
|
+
lastModifiedBy: string | null;
|
|
1092
|
+
lastModifiedByIdentity: identitySet | null;
|
|
1093
|
+
lastModifiedTime: offsetDateTime | null;
|
|
1094
|
+
links: notebookLinks | null;
|
|
1095
|
+
name: string | null;
|
|
1096
|
+
sectionGroupsUrl: string | null;
|
|
1097
|
+
sectionsUrl: string | null;
|
|
1098
|
+
self: string | null;
|
|
1099
|
+
userRole: onenoteUserRole | null;
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1084
1102
|
@complex model crossTenantAccessPolicyB2BSetting {
|
|
1085
1103
|
applications: crossTenantAccessPolicyTargetConfiguration | null;
|
|
1086
1104
|
usersAndGroups: crossTenantAccessPolicyTargetConfiguration | null;
|
|
@@ -1305,6 +1323,11 @@ namespace reference.`microsoft.graph` {
|
|
|
1305
1323
|
triggers: restrictionTrigger[] | null;
|
|
1306
1324
|
}
|
|
1307
1325
|
|
|
1326
|
+
@complex model diagnostic {
|
|
1327
|
+
message: string | null;
|
|
1328
|
+
url: string | null;
|
|
1329
|
+
}
|
|
1330
|
+
|
|
1308
1331
|
@complex model disableAndDeleteUserApplyAction extends accessReviewApplyAction {
|
|
1309
1332
|
}
|
|
1310
1333
|
|
|
@@ -1528,6 +1551,10 @@ namespace reference.`microsoft.graph` {
|
|
|
1528
1551
|
issuerUri: string | null;
|
|
1529
1552
|
}
|
|
1530
1553
|
|
|
1554
|
+
@complex model externalLink {
|
|
1555
|
+
href: string | null;
|
|
1556
|
+
}
|
|
1557
|
+
|
|
1531
1558
|
@complex model externalSponsors extends subjectSet {
|
|
1532
1559
|
}
|
|
1533
1560
|
|
|
@@ -2205,6 +2232,11 @@ namespace reference.`microsoft.graph` {
|
|
|
2205
2232
|
@complex model noScopes extends inheritableScopes {
|
|
2206
2233
|
}
|
|
2207
2234
|
|
|
2235
|
+
@complex model notebookLinks {
|
|
2236
|
+
oneNoteClientUrl: externalLink | null;
|
|
2237
|
+
oneNoteWebUrl: externalLink | null;
|
|
2238
|
+
}
|
|
2239
|
+
|
|
2208
2240
|
@complex model notifyUserAction extends dlpActionInfo {
|
|
2209
2241
|
@computed actionLastModifiedDateTime: offsetDateTime | null;
|
|
2210
2242
|
emailText: string | null;
|
|
@@ -2254,6 +2286,27 @@ namespace reference.`microsoft.graph` {
|
|
|
2254
2286
|
value: string | null;
|
|
2255
2287
|
}
|
|
2256
2288
|
|
|
2289
|
+
@complex model onenoteOperationError {
|
|
2290
|
+
code: string | null;
|
|
2291
|
+
message: string | null;
|
|
2292
|
+
}
|
|
2293
|
+
|
|
2294
|
+
@complex model onenotePagePreview {
|
|
2295
|
+
links: onenotePagePreviewLinks | null;
|
|
2296
|
+
previewText: string | null;
|
|
2297
|
+
}
|
|
2298
|
+
|
|
2299
|
+
@complex model onenotePagePreviewLinks {
|
|
2300
|
+
previewImageUrl: externalLink | null;
|
|
2301
|
+
}
|
|
2302
|
+
|
|
2303
|
+
@complex model onenotePatchContentCommand {
|
|
2304
|
+
action: onenotePatchActionType;
|
|
2305
|
+
content: string | null;
|
|
2306
|
+
position: onenotePatchInsertPosition | null;
|
|
2307
|
+
target: string;
|
|
2308
|
+
}
|
|
2309
|
+
|
|
2257
2310
|
@complex model onlineMeetingInfo {
|
|
2258
2311
|
conferenceId: string | null;
|
|
2259
2312
|
joinUrl: string | null;
|
|
@@ -2278,6 +2331,7 @@ namespace reference.`microsoft.graph` {
|
|
|
2278
2331
|
}
|
|
2279
2332
|
|
|
2280
2333
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
2334
|
+
allowOnPremUpdateOfOnPremisesObjectIdentifierEnabled: boolean | null;
|
|
2281
2335
|
blockCloudObjectTakeoverThroughHardMatchEnabled: boolean | null;
|
|
2282
2336
|
blockSoftMatchEnabled: boolean | null;
|
|
2283
2337
|
bypassDirSyncOverridesEnabled: boolean | null;
|
|
@@ -2367,6 +2421,11 @@ namespace reference.`microsoft.graph` {
|
|
|
2367
2421
|
type: string | null;
|
|
2368
2422
|
}
|
|
2369
2423
|
|
|
2424
|
+
@complex model pageLinks {
|
|
2425
|
+
oneNoteClientUrl: externalLink | null;
|
|
2426
|
+
oneNoteWebUrl: externalLink | null;
|
|
2427
|
+
}
|
|
2428
|
+
|
|
2370
2429
|
@complex model parentalControlSettings {
|
|
2371
2430
|
countriesBlockedForMinors: string[] | null;
|
|
2372
2431
|
legalAgeGroupRule: string | null;
|
|
@@ -2734,6 +2793,18 @@ namespace reference.`microsoft.graph` {
|
|
|
2734
2793
|
shareCount: int32 | null;
|
|
2735
2794
|
}
|
|
2736
2795
|
|
|
2796
|
+
@complex model recentNotebook {
|
|
2797
|
+
displayName: string | null;
|
|
2798
|
+
lastAccessedTime: offsetDateTime | null;
|
|
2799
|
+
links: recentNotebookLinks | null;
|
|
2800
|
+
sourceService: onenoteSourceService | null;
|
|
2801
|
+
}
|
|
2802
|
+
|
|
2803
|
+
@complex model recentNotebookLinks {
|
|
2804
|
+
oneNoteClientUrl: externalLink | null;
|
|
2805
|
+
oneNoteWebUrl: externalLink | null;
|
|
2806
|
+
}
|
|
2807
|
+
|
|
2737
2808
|
@complex model recipient {
|
|
2738
2809
|
emailAddress: emailAddress | null;
|
|
2739
2810
|
}
|
|
@@ -2927,6 +2998,11 @@ namespace reference.`microsoft.graph` {
|
|
|
2927
2998
|
onClickTelemetryUrl: string | null;
|
|
2928
2999
|
}
|
|
2929
3000
|
|
|
3001
|
+
@complex model sectionLinks {
|
|
3002
|
+
oneNoteClientUrl: externalLink | null;
|
|
3003
|
+
oneNoteWebUrl: externalLink | null;
|
|
3004
|
+
}
|
|
3005
|
+
|
|
2930
3006
|
@complex model secureScoreControlStateUpdate {
|
|
2931
3007
|
assignedTo: string | null;
|
|
2932
3008
|
comment: string | null;
|
|
@@ -5554,7 +5630,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5554
5630
|
description: string | null;
|
|
5555
5631
|
issuer: string;
|
|
5556
5632
|
name: string;
|
|
5557
|
-
subject: string;
|
|
5633
|
+
subject: string | null;
|
|
5558
5634
|
}
|
|
5559
5635
|
|
|
5560
5636
|
@entity model fido2AuthenticationMethod extends authenticationMethod {
|
|
@@ -5629,6 +5705,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5629
5705
|
membershipRule: string | null;
|
|
5630
5706
|
membershipRuleProcessingState: string | null;
|
|
5631
5707
|
onPremisesDomainName: string | null;
|
|
5708
|
+
onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
|
|
5632
5709
|
onPremisesLastSyncDateTime: offsetDateTime | null;
|
|
5633
5710
|
onPremisesNetBiosName: string | null;
|
|
5634
5711
|
onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
|
|
@@ -5663,6 +5740,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5663
5740
|
@references memberOf: directoryObject[];
|
|
5664
5741
|
@references members: directoryObject[];
|
|
5665
5742
|
@references membersWithLicenseErrors: directoryObject[];
|
|
5743
|
+
@contains onenote: onenote | null;
|
|
5666
5744
|
@contains onPremisesSyncBehavior: onPremisesSyncBehavior | null;
|
|
5667
5745
|
@references owners: directoryObject[];
|
|
5668
5746
|
@contains photo: profilePhoto | null;
|
|
@@ -6015,6 +6093,17 @@ namespace reference.`microsoft.graph` {
|
|
|
6015
6093
|
modifiedDateTime: offsetDateTime | null;
|
|
6016
6094
|
}
|
|
6017
6095
|
|
|
6096
|
+
@entity model notebook extends onenoteEntityHierarchyModel {
|
|
6097
|
+
isDefault: boolean | null;
|
|
6098
|
+
isShared: boolean | null;
|
|
6099
|
+
links: notebookLinks | null;
|
|
6100
|
+
sectionGroupsUrl: string | null;
|
|
6101
|
+
sectionsUrl: string | null;
|
|
6102
|
+
userRole: onenoteUserRole | null;
|
|
6103
|
+
@contains sectionGroups: sectionGroup[];
|
|
6104
|
+
@contains sections: onenoteSection[];
|
|
6105
|
+
}
|
|
6106
|
+
|
|
6018
6107
|
@entity model oAuth2PermissionGrant extends entity {
|
|
6019
6108
|
clientId: string;
|
|
6020
6109
|
consentType: string | null;
|
|
@@ -6023,6 +6112,68 @@ namespace reference.`microsoft.graph` {
|
|
|
6023
6112
|
scope: string | null;
|
|
6024
6113
|
}
|
|
6025
6114
|
|
|
6115
|
+
@entity model onenote extends entity {
|
|
6116
|
+
@contains notebooks: notebook[];
|
|
6117
|
+
@contains operations: onenoteOperation[];
|
|
6118
|
+
@contains pages: onenotePage[];
|
|
6119
|
+
@contains resources: onenoteResource[];
|
|
6120
|
+
@contains sectionGroups: sectionGroup[];
|
|
6121
|
+
@contains sections: onenoteSection[];
|
|
6122
|
+
}
|
|
6123
|
+
|
|
6124
|
+
@abstract
|
|
6125
|
+
@entity model onenoteEntityBaseModel extends entity {
|
|
6126
|
+
self: string | null;
|
|
6127
|
+
}
|
|
6128
|
+
|
|
6129
|
+
@abstract
|
|
6130
|
+
@entity model onenoteEntityHierarchyModel extends onenoteEntitySchemaObjectModel {
|
|
6131
|
+
createdBy: identitySet | null;
|
|
6132
|
+
displayName: string | null;
|
|
6133
|
+
lastModifiedBy: identitySet | null;
|
|
6134
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
6135
|
+
}
|
|
6136
|
+
|
|
6137
|
+
@abstract
|
|
6138
|
+
@entity model onenoteEntitySchemaObjectModel extends onenoteEntityBaseModel {
|
|
6139
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6140
|
+
}
|
|
6141
|
+
|
|
6142
|
+
@entity model onenoteOperation extends operation {
|
|
6143
|
+
error: onenoteOperationError | null;
|
|
6144
|
+
percentComplete: string | null;
|
|
6145
|
+
resourceId: string | null;
|
|
6146
|
+
resourceLocation: string | null;
|
|
6147
|
+
}
|
|
6148
|
+
|
|
6149
|
+
@entity model onenotePage extends onenoteEntitySchemaObjectModel {
|
|
6150
|
+
content: stream | null;
|
|
6151
|
+
contentUrl: string | null;
|
|
6152
|
+
createdByAppId: string | null;
|
|
6153
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
6154
|
+
level: int32 | null;
|
|
6155
|
+
links: pageLinks | null;
|
|
6156
|
+
order: int32 | null;
|
|
6157
|
+
title: string | null;
|
|
6158
|
+
userTags: string[] | null;
|
|
6159
|
+
@contains parentNotebook: notebook | null;
|
|
6160
|
+
@contains parentSection: onenoteSection | null;
|
|
6161
|
+
}
|
|
6162
|
+
|
|
6163
|
+
@entity model onenoteResource extends onenoteEntityBaseModel {
|
|
6164
|
+
content: stream | null;
|
|
6165
|
+
contentUrl: string | null;
|
|
6166
|
+
}
|
|
6167
|
+
|
|
6168
|
+
@entity model onenoteSection extends onenoteEntityHierarchyModel {
|
|
6169
|
+
isDefault: boolean | null;
|
|
6170
|
+
links: sectionLinks | null;
|
|
6171
|
+
pagesUrl: string | null;
|
|
6172
|
+
@contains pages: onenotePage[];
|
|
6173
|
+
@contains parentNotebook: notebook | null;
|
|
6174
|
+
@contains parentSectionGroup: sectionGroup | null;
|
|
6175
|
+
}
|
|
6176
|
+
|
|
6026
6177
|
@open
|
|
6027
6178
|
@entity model onlineMeeting extends entity {
|
|
6028
6179
|
allowAttendeeToEnableCamera: boolean | null;
|
|
@@ -6068,6 +6219,12 @@ namespace reference.`microsoft.graph` {
|
|
|
6068
6219
|
extensionName: string;
|
|
6069
6220
|
}
|
|
6070
6221
|
|
|
6222
|
+
@entity model operation extends entity {
|
|
6223
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6224
|
+
@computed lastActionDateTime: offsetDateTime | null;
|
|
6225
|
+
status: operationStatus | null;
|
|
6226
|
+
}
|
|
6227
|
+
|
|
6071
6228
|
@open
|
|
6072
6229
|
@entity model organization extends directoryObject {
|
|
6073
6230
|
assignedPlans: assignedPlan[];
|
|
@@ -6533,6 +6690,7 @@ namespace reference.`microsoft.graph` {
|
|
|
6533
6690
|
@entity model profileCardProperty extends entity {
|
|
6534
6691
|
annotations: profileCardAnnotation[] | null;
|
|
6535
6692
|
directoryPropertyName: string | null;
|
|
6693
|
+
isVisible: boolean;
|
|
6536
6694
|
}
|
|
6537
6695
|
|
|
6538
6696
|
@entity model profilePhoto extends entity {
|
|
@@ -6742,6 +6900,15 @@ namespace reference.`microsoft.graph` {
|
|
|
6742
6900
|
roleMemberInfo: identity;
|
|
6743
6901
|
}
|
|
6744
6902
|
|
|
6903
|
+
@entity model sectionGroup extends onenoteEntityHierarchyModel {
|
|
6904
|
+
sectionGroupsUrl: string | null;
|
|
6905
|
+
sectionsUrl: string | null;
|
|
6906
|
+
@contains parentNotebook: notebook | null;
|
|
6907
|
+
@contains parentSectionGroup: sectionGroup | null;
|
|
6908
|
+
@contains sectionGroups: sectionGroup[];
|
|
6909
|
+
@contains sections: onenoteSection[];
|
|
6910
|
+
}
|
|
6911
|
+
|
|
6745
6912
|
@open
|
|
6746
6913
|
@entity model secureScore extends entity {
|
|
6747
6914
|
activeUserCount: int32 | null;
|
|
@@ -6784,8 +6951,11 @@ namespace reference.`microsoft.graph` {
|
|
|
6784
6951
|
@contains alerts_v2: reference.`microsoft.graph.security`.alert[];
|
|
6785
6952
|
@contains cases: reference.`microsoft.graph.security`.casesRoot | null;
|
|
6786
6953
|
@contains incidents: reference.`microsoft.graph.security`.incident[];
|
|
6954
|
+
@contains labels: reference.`microsoft.graph.security`.labelsRoot | null;
|
|
6787
6955
|
@contains secureScoreControlProfiles: secureScoreControlProfile[];
|
|
6788
6956
|
@contains secureScores: secureScore[];
|
|
6957
|
+
@contains triggers: reference.`microsoft.graph.security`.triggersRoot | null;
|
|
6958
|
+
@contains triggerTypes: reference.`microsoft.graph.security`.triggerTypesRoot | null;
|
|
6789
6959
|
}
|
|
6790
6960
|
|
|
6791
6961
|
@entity model sensitiveType extends entity {
|
|
@@ -7056,6 +7226,7 @@ namespace reference.`microsoft.graph` {
|
|
|
7056
7226
|
@references externalColumns: columnDefinition[];
|
|
7057
7227
|
@contains items: baseItem[];
|
|
7058
7228
|
@contains lists: list[];
|
|
7229
|
+
@contains onenote: onenote | null;
|
|
7059
7230
|
@contains operations: richLongRunningOperation[];
|
|
7060
7231
|
@contains pages: baseSitePage[];
|
|
7061
7232
|
@contains permissions: permission[];
|
|
@@ -7700,6 +7871,7 @@ namespace reference.`microsoft.graph` {
|
|
|
7700
7871
|
@references memberOf: directoryObject[];
|
|
7701
7872
|
@contains messages: message[];
|
|
7702
7873
|
@references oauth2PermissionGrants: oAuth2PermissionGrant[];
|
|
7874
|
+
@contains onenote: onenote | null;
|
|
7703
7875
|
@contains onlineMeetings: onlineMeeting[];
|
|
7704
7876
|
@contains onPremisesSyncBehavior: onPremisesSyncBehavior | null;
|
|
7705
7877
|
@contains outlook: outlookUser | null;
|
|
@@ -9495,6 +9667,37 @@ namespace reference.`microsoft.graph` {
|
|
|
9495
9667
|
Unsynchronized: 6,
|
|
9496
9668
|
}
|
|
9497
9669
|
|
|
9670
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9671
|
+
enum onenotePatchActionType {
|
|
9672
|
+
Replace: 0,
|
|
9673
|
+
Append: 1,
|
|
9674
|
+
Delete: 2,
|
|
9675
|
+
Insert: 3,
|
|
9676
|
+
Prepend: 4,
|
|
9677
|
+
}
|
|
9678
|
+
|
|
9679
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9680
|
+
enum onenotePatchInsertPosition {
|
|
9681
|
+
After: 0,
|
|
9682
|
+
Before: 1,
|
|
9683
|
+
}
|
|
9684
|
+
|
|
9685
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9686
|
+
enum onenoteSourceService {
|
|
9687
|
+
`Unknown`: 0,
|
|
9688
|
+
OneDrive: 1,
|
|
9689
|
+
OneDriveForBusiness: 2,
|
|
9690
|
+
OnPremOneDriveForBusiness: 3,
|
|
9691
|
+
}
|
|
9692
|
+
|
|
9693
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
9694
|
+
enum onenoteUserRole {
|
|
9695
|
+
None: -1,
|
|
9696
|
+
Owner: 0,
|
|
9697
|
+
Contributor: 1,
|
|
9698
|
+
Reader: 2,
|
|
9699
|
+
}
|
|
9700
|
+
|
|
9498
9701
|
@graphFlags
|
|
9499
9702
|
enum onlineMeetingContentSharingDisabledReason {
|
|
9500
9703
|
watermarkProtection: 1,
|
|
@@ -10674,6 +10877,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
10674
10877
|
triggerAttributes: triggerAttribute[];
|
|
10675
10878
|
}
|
|
10676
10879
|
|
|
10880
|
+
@complex model countBasedQuarantineCondition extends quarantineCondition {
|
|
10881
|
+
threshold: int64;
|
|
10882
|
+
}
|
|
10883
|
+
|
|
10677
10884
|
@complex model customTaskExtensionCallbackConfiguration extends reference.`microsoft.graph`.customExtensionCallbackConfiguration {
|
|
10678
10885
|
@references authorizedApps: reference.`microsoft.graph`.application[];
|
|
10679
10886
|
}
|
|
@@ -10706,6 +10913,32 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
10706
10913
|
valueType: valueType;
|
|
10707
10914
|
}
|
|
10708
10915
|
|
|
10916
|
+
@complex model percentageBasedQuarantineCondition extends quarantineCondition {
|
|
10917
|
+
percentage: int32;
|
|
10918
|
+
}
|
|
10919
|
+
|
|
10920
|
+
@complex model previewFailedTask {
|
|
10921
|
+
definitionId: string;
|
|
10922
|
+
failureReason: string;
|
|
10923
|
+
name: string;
|
|
10924
|
+
taskId: string;
|
|
10925
|
+
}
|
|
10926
|
+
|
|
10927
|
+
@abstract
|
|
10928
|
+
@complex model quarantineCondition {
|
|
10929
|
+
}
|
|
10930
|
+
|
|
10931
|
+
@complex model quarantineConfiguration {
|
|
10932
|
+
conditions: quarantineCondition[];
|
|
10933
|
+
matchMode: matchMode;
|
|
10934
|
+
}
|
|
10935
|
+
|
|
10936
|
+
@complex model quarantineDetails {
|
|
10937
|
+
quarantinedDateTime: offsetDateTime | null;
|
|
10938
|
+
quarantineReason: string | null;
|
|
10939
|
+
quarantineType: quarantineType;
|
|
10940
|
+
}
|
|
10941
|
+
|
|
10709
10942
|
@complex model ruleBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
10710
10943
|
rule: string;
|
|
10711
10944
|
}
|
|
@@ -10792,6 +11025,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
10792
11025
|
@complex model workflowExecutionTrigger {
|
|
10793
11026
|
}
|
|
10794
11027
|
|
|
11028
|
+
@complex model workflowSetting {
|
|
11029
|
+
quarantineConfiguration: quarantineConfiguration | null;
|
|
11030
|
+
}
|
|
11031
|
+
|
|
10795
11032
|
@complex model workflowsInsightsByCategory {
|
|
10796
11033
|
failedJoinerRuns: int32;
|
|
10797
11034
|
failedLeaverRuns: int32;
|
|
@@ -10829,6 +11066,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
10829
11066
|
|
|
10830
11067
|
@entity model lifecycleManagementSettings extends reference.`microsoft.graph`.entity {
|
|
10831
11068
|
emailSettings: reference.`microsoft.graph`.emailSettings;
|
|
11069
|
+
quarantineConfiguration: quarantineConfiguration | null;
|
|
10832
11070
|
workflowScheduleIntervalInHours: int32;
|
|
10833
11071
|
}
|
|
10834
11072
|
|
|
@@ -10886,6 +11124,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
10886
11124
|
completedDateTime: offsetDateTime | null;
|
|
10887
11125
|
@computed createdDateTime: offsetDateTime;
|
|
10888
11126
|
failureReason: string | null;
|
|
11127
|
+
processingInfo: string | null;
|
|
10889
11128
|
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
10890
11129
|
startedDateTime: offsetDateTime | null;
|
|
10891
11130
|
@references subject: reference.`microsoft.graph`.user;
|
|
@@ -10926,8 +11165,11 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
10926
11165
|
deletedDateTime: offsetDateTime | null;
|
|
10927
11166
|
@computed @key id: string;
|
|
10928
11167
|
nextScheduleRunDateTime: offsetDateTime | null;
|
|
11168
|
+
quarantineDetails: quarantineDetails;
|
|
11169
|
+
settings: workflowSetting;
|
|
10929
11170
|
version: int32 | null;
|
|
10930
11171
|
@references executionScope: userProcessingResult[];
|
|
11172
|
+
@references previewScope: reference.`microsoft.graph`.directoryObject[];
|
|
10931
11173
|
@contains runs: run[];
|
|
10932
11174
|
@contains taskReports: taskReport[];
|
|
10933
11175
|
@contains userProcessingResults: userProcessingResult[];
|
|
@@ -10959,6 +11201,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
10959
11201
|
}
|
|
10960
11202
|
|
|
10961
11203
|
@entity model workflowVersion extends workflowBase {
|
|
11204
|
+
settings: workflowSetting;
|
|
10962
11205
|
@computed @key versionNumber: int32;
|
|
10963
11206
|
}
|
|
10964
11207
|
|
|
@@ -11003,6 +11246,13 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
11003
11246
|
canceled: 4,
|
|
11004
11247
|
failed: 5,
|
|
11005
11248
|
unknownFutureValue: 6,
|
|
11249
|
+
quarantined: 8,
|
|
11250
|
+
}
|
|
11251
|
+
|
|
11252
|
+
enum matchMode {
|
|
11253
|
+
any: 0,
|
|
11254
|
+
all: 1,
|
|
11255
|
+
unknownFutureValue: 2,
|
|
11006
11256
|
}
|
|
11007
11257
|
|
|
11008
11258
|
enum membershipChangeType {
|
|
@@ -11011,6 +11261,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
11011
11261
|
unknownFutureValue: 3,
|
|
11012
11262
|
}
|
|
11013
11263
|
|
|
11264
|
+
enum quarantineType {
|
|
11265
|
+
notQuarantined: 0,
|
|
11266
|
+
countBasedThresholdExceeded: 1,
|
|
11267
|
+
percentageBasedThresholdExceeded: 2,
|
|
11268
|
+
multipleConditionsExceeded: 3,
|
|
11269
|
+
unknownFutureValue: 4,
|
|
11270
|
+
}
|
|
11271
|
+
|
|
11014
11272
|
enum valueType {
|
|
11015
11273
|
`enum`: 0,
|
|
11016
11274
|
`string`: 1,
|
|
@@ -11024,6 +11282,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
11024
11282
|
onDemand: 1,
|
|
11025
11283
|
unknownFutureValue: 2,
|
|
11026
11284
|
activatedWithScope: 3,
|
|
11285
|
+
preview: 4,
|
|
11027
11286
|
}
|
|
11028
11287
|
|
|
11029
11288
|
enum workflowTriggerTimeBasedAttribute {
|
|
@@ -11197,6 +11456,18 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11197
11456
|
emailAddress: string | null;
|
|
11198
11457
|
}
|
|
11199
11458
|
|
|
11459
|
+
@complex model eventPropagationResult {
|
|
11460
|
+
location: string | null;
|
|
11461
|
+
serviceName: string | null;
|
|
11462
|
+
status: eventPropagationStatus | null;
|
|
11463
|
+
statusInformation: string | null;
|
|
11464
|
+
}
|
|
11465
|
+
|
|
11466
|
+
@complex model eventQuery {
|
|
11467
|
+
query: string;
|
|
11468
|
+
queryType: queryType | null;
|
|
11469
|
+
}
|
|
11470
|
+
|
|
11200
11471
|
@complex model exportFileMetadata {
|
|
11201
11472
|
downloadUrl: string | null;
|
|
11202
11473
|
fileName: string | null;
|
|
@@ -11232,6 +11503,31 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11232
11503
|
value: string | null;
|
|
11233
11504
|
}
|
|
11234
11505
|
|
|
11506
|
+
@complex model filePlanAppliedCategory extends filePlanDescriptorBase {
|
|
11507
|
+
subcategory: filePlanSubcategory | null;
|
|
11508
|
+
}
|
|
11509
|
+
|
|
11510
|
+
@complex model filePlanAuthority extends filePlanDescriptorBase {
|
|
11511
|
+
}
|
|
11512
|
+
|
|
11513
|
+
@complex model filePlanCitation extends filePlanDescriptorBase {
|
|
11514
|
+
citationJurisdiction: string | null;
|
|
11515
|
+
citationUrl: string | null;
|
|
11516
|
+
}
|
|
11517
|
+
|
|
11518
|
+
@complex model filePlanDepartment extends filePlanDescriptorBase {
|
|
11519
|
+
}
|
|
11520
|
+
|
|
11521
|
+
@complex model filePlanDescriptorBase {
|
|
11522
|
+
displayName: string | null;
|
|
11523
|
+
}
|
|
11524
|
+
|
|
11525
|
+
@complex model filePlanReference extends filePlanDescriptorBase {
|
|
11526
|
+
}
|
|
11527
|
+
|
|
11528
|
+
@complex model filePlanSubcategory extends filePlanDescriptorBase {
|
|
11529
|
+
}
|
|
11530
|
+
|
|
11235
11531
|
@complex model geoLocation {
|
|
11236
11532
|
city: string | null;
|
|
11237
11533
|
countryName: string | null;
|
|
@@ -11507,6 +11803,22 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11507
11803
|
resourceIdentifier: string | null;
|
|
11508
11804
|
}
|
|
11509
11805
|
|
|
11806
|
+
@abstract
|
|
11807
|
+
@complex model retentionDuration {
|
|
11808
|
+
}
|
|
11809
|
+
|
|
11810
|
+
@complex model retentionDurationForever extends retentionDuration {
|
|
11811
|
+
}
|
|
11812
|
+
|
|
11813
|
+
@complex model retentionDurationInDays extends retentionDuration {
|
|
11814
|
+
days: int32 | null;
|
|
11815
|
+
}
|
|
11816
|
+
|
|
11817
|
+
@complex model retentionEventStatus {
|
|
11818
|
+
error: reference.`microsoft.graph`.publicError | null;
|
|
11819
|
+
status: eventStatusType | null;
|
|
11820
|
+
}
|
|
11821
|
+
|
|
11510
11822
|
@complex model sasTokenEvidence extends alertEvidence {
|
|
11511
11823
|
allowedIpAddresses: string | null;
|
|
11512
11824
|
allowedResourceTypes: string[] | null;
|
|
@@ -11659,6 +11971,9 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11659
11971
|
title: string | null;
|
|
11660
11972
|
}
|
|
11661
11973
|
|
|
11974
|
+
@entity model authorityTemplate extends filePlanDescriptorTemplate {
|
|
11975
|
+
}
|
|
11976
|
+
|
|
11662
11977
|
@abstract
|
|
11663
11978
|
@entity model case extends reference.`microsoft.graph`.entity {
|
|
11664
11979
|
@computed createdDateTime: offsetDateTime | null;
|
|
@@ -11683,6 +11998,15 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11683
11998
|
@contains ediscoveryCases: ediscoveryCase[];
|
|
11684
11999
|
}
|
|
11685
12000
|
|
|
12001
|
+
@entity model categoryTemplate extends filePlanDescriptorTemplate {
|
|
12002
|
+
@contains subcategories: subcategoryTemplate[];
|
|
12003
|
+
}
|
|
12004
|
+
|
|
12005
|
+
@entity model citationTemplate extends filePlanDescriptorTemplate {
|
|
12006
|
+
citationJurisdiction: string | null;
|
|
12007
|
+
citationUrl: string | null;
|
|
12008
|
+
}
|
|
12009
|
+
|
|
11686
12010
|
@abstract
|
|
11687
12011
|
@entity model dataSet extends reference.`microsoft.graph`.entity {
|
|
11688
12012
|
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
@@ -11709,6 +12033,15 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11709
12033
|
status: dataSourceContainerStatus | null;
|
|
11710
12034
|
}
|
|
11711
12035
|
|
|
12036
|
+
@entity model departmentTemplate extends filePlanDescriptorTemplate {
|
|
12037
|
+
}
|
|
12038
|
+
|
|
12039
|
+
@entity model dispositionReviewStage extends MsGraph.SharedModels.entity {
|
|
12040
|
+
name: string | null;
|
|
12041
|
+
reviewersEmailAddresses: string[] | null;
|
|
12042
|
+
@computed @key stageNumber: string;
|
|
12043
|
+
}
|
|
12044
|
+
|
|
11712
12045
|
@entity model ediscoveryAddToReviewSetOperation extends caseOperation {
|
|
11713
12046
|
additionalDataOptions: additionalDataOptions | null;
|
|
11714
12047
|
cloudAttachmentVersion: cloudAttachmentVersion | null;
|
|
@@ -11836,6 +12169,28 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11836
12169
|
@entity model ediscoveryTagOperation extends caseOperation {
|
|
11837
12170
|
}
|
|
11838
12171
|
|
|
12172
|
+
@entity model filePlanDescriptor extends reference.`microsoft.graph`.entity {
|
|
12173
|
+
authority: filePlanAuthority | null;
|
|
12174
|
+
category: filePlanAppliedCategory | null;
|
|
12175
|
+
citation: filePlanCitation | null;
|
|
12176
|
+
department: filePlanDepartment | null;
|
|
12177
|
+
filePlanReference: filePlanReference | null;
|
|
12178
|
+
@references authorityTemplate: authorityTemplate | null;
|
|
12179
|
+
@references categoryTemplate: categoryTemplate | null;
|
|
12180
|
+
@references citationTemplate: citationTemplate | null;
|
|
12181
|
+
@references departmentTemplate: departmentTemplate | null;
|
|
12182
|
+
@references filePlanReferenceTemplate: filePlanReferenceTemplate | null;
|
|
12183
|
+
}
|
|
12184
|
+
|
|
12185
|
+
@entity model filePlanDescriptorTemplate extends reference.`microsoft.graph`.entity {
|
|
12186
|
+
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
12187
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
12188
|
+
displayName: string | null;
|
|
12189
|
+
}
|
|
12190
|
+
|
|
12191
|
+
@entity model filePlanReferenceTemplate extends filePlanDescriptorTemplate {
|
|
12192
|
+
}
|
|
12193
|
+
|
|
11839
12194
|
@entity model incident extends reference.`microsoft.graph`.entity {
|
|
11840
12195
|
assignedTo: string | null;
|
|
11841
12196
|
classification: alertClassification | null;
|
|
@@ -11858,6 +12213,59 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11858
12213
|
@references alerts: alert[];
|
|
11859
12214
|
}
|
|
11860
12215
|
|
|
12216
|
+
@entity model labelsRoot extends reference.`microsoft.graph`.entity {
|
|
12217
|
+
@contains authorities: authorityTemplate[];
|
|
12218
|
+
@contains categories: categoryTemplate[];
|
|
12219
|
+
@contains citations: citationTemplate[];
|
|
12220
|
+
@contains departments: departmentTemplate[];
|
|
12221
|
+
@contains filePlanReferences: filePlanReferenceTemplate[];
|
|
12222
|
+
@contains retentionLabels: retentionLabel[];
|
|
12223
|
+
}
|
|
12224
|
+
|
|
12225
|
+
@entity model retentionEvent extends reference.`microsoft.graph`.entity {
|
|
12226
|
+
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
12227
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
12228
|
+
description: string | null;
|
|
12229
|
+
displayName: string | null;
|
|
12230
|
+
eventPropagationResults: eventPropagationResult[] | null;
|
|
12231
|
+
eventQueries: eventQuery[] | null;
|
|
12232
|
+
eventStatus: retentionEventStatus | null;
|
|
12233
|
+
eventTriggerDateTime: offsetDateTime | null;
|
|
12234
|
+
lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
|
|
12235
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
12236
|
+
@computed lastStatusUpdateDateTime: offsetDateTime | null;
|
|
12237
|
+
@references retentionEventType: retentionEventType | null;
|
|
12238
|
+
}
|
|
12239
|
+
|
|
12240
|
+
@entity model retentionEventType extends reference.`microsoft.graph`.entity {
|
|
12241
|
+
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
12242
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
12243
|
+
description: string | null;
|
|
12244
|
+
displayName: string | null;
|
|
12245
|
+
lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
|
|
12246
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
12247
|
+
}
|
|
12248
|
+
|
|
12249
|
+
@entity model retentionLabel extends reference.`microsoft.graph`.entity {
|
|
12250
|
+
actionAfterRetentionPeriod: actionAfterRetentionPeriod | null;
|
|
12251
|
+
behaviorDuringRetentionPeriod: behaviorDuringRetentionPeriod | null;
|
|
12252
|
+
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
12253
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
12254
|
+
defaultRecordBehavior: defaultRecordBehavior | null;
|
|
12255
|
+
descriptionForAdmins: string | null;
|
|
12256
|
+
descriptionForUsers: string | null;
|
|
12257
|
+
displayName: string | null;
|
|
12258
|
+
isInUse: boolean | null;
|
|
12259
|
+
labelToBeApplied: string | null;
|
|
12260
|
+
lastModifiedBy: reference.`microsoft.graph`.identitySet | null;
|
|
12261
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
12262
|
+
retentionDuration: retentionDuration | null;
|
|
12263
|
+
retentionTrigger: retentionTrigger | null;
|
|
12264
|
+
@contains descriptors: filePlanDescriptor | null;
|
|
12265
|
+
@contains dispositionReviewStages: dispositionReviewStage[];
|
|
12266
|
+
@references retentionEventType: retentionEventType | null;
|
|
12267
|
+
}
|
|
12268
|
+
|
|
11861
12269
|
@abstract
|
|
11862
12270
|
@entity model search extends reference.`microsoft.graph`.entity {
|
|
11863
12271
|
contentQuery: string | null;
|
|
@@ -11873,6 +12281,9 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11873
12281
|
@references site: reference.`microsoft.graph`.site;
|
|
11874
12282
|
}
|
|
11875
12283
|
|
|
12284
|
+
@entity model subcategoryTemplate extends filePlanDescriptorTemplate {
|
|
12285
|
+
}
|
|
12286
|
+
|
|
11876
12287
|
@abstract
|
|
11877
12288
|
@entity model tag extends reference.`microsoft.graph`.entity {
|
|
11878
12289
|
createdBy: reference.`microsoft.graph`.identitySet | null;
|
|
@@ -11881,6 +12292,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11881
12292
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
11882
12293
|
}
|
|
11883
12294
|
|
|
12295
|
+
@entity model triggersRoot extends reference.`microsoft.graph`.entity {
|
|
12296
|
+
@contains retentionEvents: retentionEvent[];
|
|
12297
|
+
}
|
|
12298
|
+
|
|
12299
|
+
@entity model triggerTypesRoot extends reference.`microsoft.graph`.entity {
|
|
12300
|
+
@contains retentionEventTypes: retentionEventType[];
|
|
12301
|
+
}
|
|
12302
|
+
|
|
11884
12303
|
@entity model unifiedGroupSource extends dataSource {
|
|
11885
12304
|
includedSources: sourceType | null;
|
|
11886
12305
|
@references group: reference.`microsoft.graph`.group;
|
|
@@ -11892,6 +12311,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
11892
12311
|
siteWebUrl: string | null;
|
|
11893
12312
|
}
|
|
11894
12313
|
|
|
12314
|
+
enum actionAfterRetentionPeriod {
|
|
12315
|
+
none: 0,
|
|
12316
|
+
delete: 1,
|
|
12317
|
+
startDispositionReview: 2,
|
|
12318
|
+
relabel: 3,
|
|
12319
|
+
unknownFutureValue: 4,
|
|
12320
|
+
}
|
|
12321
|
+
|
|
11895
12322
|
@graphFlags
|
|
11896
12323
|
enum additionalDataOptions {
|
|
11897
12324
|
allVersions: 1,
|
|
@@ -12093,6 +12520,12 @@ namespace reference.`microsoft.graph.security` {
|
|
|
12093
12520
|
unknownFutureValue: 16,
|
|
12094
12521
|
}
|
|
12095
12522
|
|
|
12523
|
+
enum defaultRecordBehavior {
|
|
12524
|
+
startLocked: 0,
|
|
12525
|
+
startUnlocked: 1,
|
|
12526
|
+
unknownFutureValue: 2,
|
|
12527
|
+
}
|
|
12528
|
+
|
|
12096
12529
|
enum defenderAvStatus {
|
|
12097
12530
|
notReporting: 0,
|
|
12098
12531
|
disabled: 1,
|
|
@@ -12179,6 +12612,22 @@ namespace reference.`microsoft.graph.security` {
|
|
|
12179
12612
|
unknownFutureValue: 5,
|
|
12180
12613
|
}
|
|
12181
12614
|
|
|
12615
|
+
enum eventPropagationStatus {
|
|
12616
|
+
none: 0,
|
|
12617
|
+
inProcessing: 1,
|
|
12618
|
+
failed: 2,
|
|
12619
|
+
success: 3,
|
|
12620
|
+
unknownFutureValue: 4,
|
|
12621
|
+
}
|
|
12622
|
+
|
|
12623
|
+
enum eventStatusType {
|
|
12624
|
+
pending: 0,
|
|
12625
|
+
error: 1,
|
|
12626
|
+
success: 2,
|
|
12627
|
+
notAvaliable: 3,
|
|
12628
|
+
unknownFutureValue: 4,
|
|
12629
|
+
}
|
|
12630
|
+
|
|
12182
12631
|
enum evidenceRemediationStatus {
|
|
12183
12632
|
none: 0,
|
|
12184
12633
|
remediated: 1,
|
|
@@ -12358,6 +12807,12 @@ namespace reference.`microsoft.graph.security` {
|
|
|
12358
12807
|
permanentlyDelete: 2,
|
|
12359
12808
|
}
|
|
12360
12809
|
|
|
12810
|
+
enum queryType {
|
|
12811
|
+
files: 0,
|
|
12812
|
+
messages: 1,
|
|
12813
|
+
unknownFutureValue: 2,
|
|
12814
|
+
}
|
|
12815
|
+
|
|
12361
12816
|
@graphFlags
|
|
12362
12817
|
enum recipientType {
|
|
12363
12818
|
user: 1,
|
|
@@ -12365,6 +12820,14 @@ namespace reference.`microsoft.graph.security` {
|
|
|
12365
12820
|
unknownFutureValue: 4,
|
|
12366
12821
|
}
|
|
12367
12822
|
|
|
12823
|
+
enum retentionTrigger {
|
|
12824
|
+
dateLabeled: 0,
|
|
12825
|
+
dateCreated: 1,
|
|
12826
|
+
dateModified: 2,
|
|
12827
|
+
dateOfEvent: 3,
|
|
12828
|
+
unknownFutureValue: 4,
|
|
12829
|
+
}
|
|
12830
|
+
|
|
12368
12831
|
@graphFlags
|
|
12369
12832
|
enum reviewSetSettings {
|
|
12370
12833
|
none: 0,
|
|
@@ -12394,6 +12857,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
12394
12857
|
microsoftDefenderForCloud: 256,
|
|
12395
12858
|
microsoftSentinel: 512,
|
|
12396
12859
|
microsoftInsiderRiskManagement: 1024,
|
|
12860
|
+
microsoftSecurityForAI: 4096,
|
|
12397
12861
|
}
|
|
12398
12862
|
|
|
12399
12863
|
@graphFlags
|