@microsoft/typespec-msgraph-reference 1.0.3 → 1.0.5
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 +2411 -55
- package/lib/Bleu/V1.0/main.tsp +2245 -40
- package/lib/Delos/Beta/main.tsp +2674 -52
- package/lib/Delos/V1.0/main.tsp +401 -20
- package/lib/Fairfax/Beta/main.tsp +1261 -74
- package/lib/Fairfax/V1.0/main.tsp +307 -20
- package/lib/GovSG/Beta/main.tsp +113 -13
- package/lib/GovSG/V1.0/main.tsp +196 -0
- package/lib/Mooncake/Beta/main.tsp +858 -54
- package/lib/Mooncake/V1.0/main.tsp +173 -20
- package/lib/Prod/Beta/main.tsp +4453 -269
- package/lib/Prod/V1.0/main.tsp +1457 -26
- package/lib/USNat/Beta/main.tsp +609 -37
- package/lib/USNat/V1.0/main.tsp +609 -3
- package/lib/USSec/Beta/main.tsp +1012 -69
- package/lib/USSec/V1.0/main.tsp +912 -3
- package/package.json +2 -2
package/lib/Bleu/V1.0/main.tsp
CHANGED
|
@@ -9,6 +9,7 @@ scalar binary; //TODO: Enables support for Edm.Binary
|
|
|
9
9
|
|
|
10
10
|
@deprecatedDefinition("Removal", "<ChangeLogCategory>", "2021-09-03", "2023-10-01", "The grantedToIdentities property is deprecated. Please refer to grantedToIdentitiesV2")
|
|
11
11
|
// Metadata item DeprecatedDefinition_Removal was already defined with a different value.
|
|
12
|
+
@deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2022-04-25", "2024-04-25", "Owner property is deprecated and will be removed in April 2024. Please use the container property instead.")
|
|
12
13
|
@publicNamespace("microsoft.graph")
|
|
13
14
|
namespace reference.`microsoft.graph` {
|
|
14
15
|
@complex model aadUserConversationMemberResult extends actionResultPart {
|
|
@@ -23,6 +24,221 @@ namespace reference.`microsoft.graph` {
|
|
|
23
24
|
@complex model accessAction {
|
|
24
25
|
}
|
|
25
26
|
|
|
27
|
+
@abstract
|
|
28
|
+
@complex model accessPackageAnswer {
|
|
29
|
+
displayValue: string | null;
|
|
30
|
+
@contains answeredQuestion: accessPackageQuestion | null;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
@complex model accessPackageAnswerChoice {
|
|
34
|
+
actualValue: string | null;
|
|
35
|
+
localizations: accessPackageLocalizedText[] | null;
|
|
36
|
+
text: string | null;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
@complex model accessPackageAnswerString extends accessPackageAnswer {
|
|
40
|
+
value: string | null;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
@complex model accessPackageApprovalStage {
|
|
44
|
+
durationBeforeAutomaticDenial: duration | null;
|
|
45
|
+
durationBeforeEscalation: duration | null;
|
|
46
|
+
escalationApprovers: subjectSet[] | null;
|
|
47
|
+
fallbackEscalationApprovers: subjectSet[] | null;
|
|
48
|
+
fallbackPrimaryApprovers: subjectSet[] | null;
|
|
49
|
+
isApproverJustificationRequired: boolean | null;
|
|
50
|
+
isEscalationEnabled: boolean | null;
|
|
51
|
+
primaryApprovers: subjectSet[] | null;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
@complex model accessPackageAssignmentApprovalSettings {
|
|
55
|
+
isApprovalRequiredForAdd: boolean | null;
|
|
56
|
+
isApprovalRequiredForUpdate: boolean | null;
|
|
57
|
+
isRequestorJustificationRequired: boolean | null;
|
|
58
|
+
stages: accessPackageApprovalStage[] | null;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
@complex model accessPackageAssignmentRequestCallbackData extends customExtensionData {
|
|
62
|
+
customExtensionStageInstanceDetail: string | null;
|
|
63
|
+
customExtensionStageInstanceId: string | null;
|
|
64
|
+
stage: accessPackageCustomExtensionStage | null;
|
|
65
|
+
state: string | null;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
@complex model accessPackageAssignmentRequestorSettings {
|
|
69
|
+
allowCustomAssignmentSchedule: boolean | null;
|
|
70
|
+
enableOnBehalfRequestorsToAddAccess: boolean | null;
|
|
71
|
+
enableOnBehalfRequestorsToRemoveAccess: boolean | null;
|
|
72
|
+
enableOnBehalfRequestorsToUpdateAccess: boolean | null;
|
|
73
|
+
enableTargetsToSelfAddAccess: boolean | null;
|
|
74
|
+
enableTargetsToSelfRemoveAccess: boolean | null;
|
|
75
|
+
enableTargetsToSelfUpdateAccess: boolean | null;
|
|
76
|
+
onBehalfRequestors: subjectSet[] | null;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
@complex model accessPackageAssignmentRequestRequirements {
|
|
80
|
+
allowCustomAssignmentSchedule: boolean | null;
|
|
81
|
+
isApprovalRequiredForAdd: boolean | null;
|
|
82
|
+
isApprovalRequiredForUpdate: boolean | null;
|
|
83
|
+
isRequestorJustificationRequired: boolean | null;
|
|
84
|
+
policyDescription: string | null;
|
|
85
|
+
policyDisplayName: string | null;
|
|
86
|
+
policyId: string | null;
|
|
87
|
+
schedule: entitlementManagementSchedule | null;
|
|
88
|
+
@references questions: accessPackageQuestion[];
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
@complex model accessPackageAssignmentReviewSettings {
|
|
92
|
+
expirationBehavior: accessReviewExpirationBehavior | null;
|
|
93
|
+
fallbackReviewers: subjectSet[] | null;
|
|
94
|
+
isEnabled: boolean | null;
|
|
95
|
+
isRecommendationEnabled: boolean | null;
|
|
96
|
+
isReviewerJustificationRequired: boolean | null;
|
|
97
|
+
isSelfReview: boolean | null;
|
|
98
|
+
primaryReviewers: subjectSet[] | null;
|
|
99
|
+
schedule: entitlementManagementSchedule | null;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
@complex model accessPackageAutomaticRequestSettings {
|
|
103
|
+
gracePeriodBeforeAccessRemoval: duration | null;
|
|
104
|
+
removeAccessWhenTargetLeavesAllowedTargets: boolean | null;
|
|
105
|
+
requestAccessForAllowedTargets: boolean | null;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
@complex model accessPackageDynamicApprovalStage extends accessPackageApprovalStage {
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
@complex model accessPackageLocalizedText {
|
|
112
|
+
languageCode: string;
|
|
113
|
+
text: string | null;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
@complex model accessPackageNotificationSettings {
|
|
117
|
+
isAssignmentNotificationDisabled: boolean;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
@complex model accessPackageRequestApprovalStageCallbackConfiguration extends customExtensionCallbackConfiguration {
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
@complex model accessPackageResourceAttribute {
|
|
124
|
+
destination: accessPackageResourceAttributeDestination | null;
|
|
125
|
+
isEditable: boolean | null;
|
|
126
|
+
isPersistedOnAssignmentRemoval: boolean | null;
|
|
127
|
+
name: string | null;
|
|
128
|
+
source: accessPackageResourceAttributeSource | null;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
@abstract
|
|
132
|
+
@complex model accessPackageResourceAttributeDestination {
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
@complex model accessPackageResourceAttributeQuestion extends accessPackageResourceAttributeSource {
|
|
136
|
+
@references question: accessPackageQuestion | null;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
@abstract
|
|
140
|
+
@complex model accessPackageResourceAttributeSource {
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
@complex model accessPackageUserDirectoryAttributeStore extends accessPackageResourceAttributeDestination {
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
@abstract
|
|
147
|
+
@complex model accessReviewApplyAction {
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
@complex model accessReviewHistoryScheduleSettings {
|
|
151
|
+
recurrence: patternedRecurrence;
|
|
152
|
+
reportRange: string;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
@complex model accessReviewInactiveUsersQueryScope extends accessReviewQueryScope {
|
|
156
|
+
inactiveDuration: duration | null;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
@open
|
|
160
|
+
@complex model accessReviewInstanceDecisionItemAccessPackageAssignmentPolicyResource extends accessReviewInstanceDecisionItemResource {
|
|
161
|
+
accessPackageDisplayName: string | null;
|
|
162
|
+
accessPackageId: string | null;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
@open
|
|
166
|
+
@complex model accessReviewInstanceDecisionItemAzureRoleResource extends accessReviewInstanceDecisionItemResource {
|
|
167
|
+
scope: accessReviewInstanceDecisionItemResource | null;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
@complex model accessReviewInstanceDecisionItemResource {
|
|
171
|
+
displayName: string | null;
|
|
172
|
+
id: string | null;
|
|
173
|
+
type: string | null;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
@open
|
|
177
|
+
@complex model accessReviewInstanceDecisionItemServicePrincipalResource extends accessReviewInstanceDecisionItemResource {
|
|
178
|
+
appId: string | null;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
@complex model accessReviewNotificationRecipientItem {
|
|
182
|
+
notificationRecipientScope: accessReviewNotificationRecipientScope | null;
|
|
183
|
+
notificationTemplateType: string | null;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
@complex model accessReviewNotificationRecipientQueryScope extends accessReviewNotificationRecipientScope {
|
|
187
|
+
query: string | null;
|
|
188
|
+
queryRoot: string | null;
|
|
189
|
+
queryType: string | null;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
@abstract
|
|
193
|
+
@complex model accessReviewNotificationRecipientScope {
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
@complex model accessReviewQueryScope extends accessReviewScope {
|
|
197
|
+
query: string | null;
|
|
198
|
+
queryRoot: string | null;
|
|
199
|
+
queryType: string | null;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
@abstract
|
|
203
|
+
@complex model accessReviewRecommendationInsightSetting {
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
@complex model accessReviewReviewerScope {
|
|
207
|
+
query: string | null;
|
|
208
|
+
queryRoot: string | null;
|
|
209
|
+
queryType: string | null;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
@complex model accessReviewScheduleSettings {
|
|
213
|
+
applyActions: accessReviewApplyAction[] | null;
|
|
214
|
+
autoApplyDecisionsEnabled: boolean;
|
|
215
|
+
decisionHistoriesForReviewersEnabled: boolean | null;
|
|
216
|
+
defaultDecision: string | null;
|
|
217
|
+
defaultDecisionEnabled: boolean;
|
|
218
|
+
instanceDurationInDays: int32;
|
|
219
|
+
justificationRequiredOnApproval: boolean;
|
|
220
|
+
mailNotificationsEnabled: boolean;
|
|
221
|
+
recommendationInsightSettings: accessReviewRecommendationInsightSetting[] | null;
|
|
222
|
+
recommendationLookBackDuration: duration | null;
|
|
223
|
+
recommendationsEnabled: boolean;
|
|
224
|
+
recurrence: patternedRecurrence | null;
|
|
225
|
+
reminderNotificationsEnabled: boolean;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
@complex model accessReviewScope {
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
@complex model accessReviewStageSettings {
|
|
232
|
+
decisionsThatWillMoveToNextStage: string[] | null;
|
|
233
|
+
dependsOn: string[];
|
|
234
|
+
durationInDays: int32;
|
|
235
|
+
fallbackReviewers: accessReviewReviewerScope[] | null;
|
|
236
|
+
recommendationInsightSettings: accessReviewRecommendationInsightSetting[] | null;
|
|
237
|
+
recommendationsEnabled: boolean;
|
|
238
|
+
reviewers: accessReviewReviewerScope[] | null;
|
|
239
|
+
stageId: string;
|
|
240
|
+
}
|
|
241
|
+
|
|
26
242
|
@abstract
|
|
27
243
|
@complex model actionResultPart {
|
|
28
244
|
error: publicError | null;
|
|
@@ -42,6 +258,9 @@ namespace reference.`microsoft.graph` {
|
|
|
42
258
|
coverImageItemId: string | null;
|
|
43
259
|
}
|
|
44
260
|
|
|
261
|
+
@complex model allAllowedScopes extends inheritableScopes {
|
|
262
|
+
}
|
|
263
|
+
|
|
45
264
|
@complex model allDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
46
265
|
}
|
|
47
266
|
|
|
@@ -169,6 +388,10 @@ namespace reference.`microsoft.graph` {
|
|
|
169
388
|
appConfigKeyValue: string;
|
|
170
389
|
}
|
|
171
390
|
|
|
391
|
+
@complex model appConsentRequestScope {
|
|
392
|
+
displayName: string | null;
|
|
393
|
+
}
|
|
394
|
+
|
|
172
395
|
@complex model appIdentity {
|
|
173
396
|
appId: string | null;
|
|
174
397
|
displayName: string | null;
|
|
@@ -176,6 +399,13 @@ namespace reference.`microsoft.graph` {
|
|
|
176
399
|
servicePrincipalName: string | null;
|
|
177
400
|
}
|
|
178
401
|
|
|
402
|
+
@complex model applicationContext extends signInContext {
|
|
403
|
+
includeApplications: string[];
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
@complex model applicationEnforcedRestrictionsSessionControl extends conditionalAccessSessionControl {
|
|
407
|
+
}
|
|
408
|
+
|
|
179
409
|
@complex model applicationServicePrincipal {
|
|
180
410
|
@references application: application | null;
|
|
181
411
|
@references servicePrincipal: servicePrincipal | null;
|
|
@@ -227,6 +457,7 @@ namespace reference.`microsoft.graph` {
|
|
|
227
457
|
}
|
|
228
458
|
|
|
229
459
|
@complex model appManagementApplicationConfiguration extends appManagementConfiguration {
|
|
460
|
+
identifierUris: identifierUriConfiguration | null;
|
|
230
461
|
}
|
|
231
462
|
|
|
232
463
|
@abstract
|
|
@@ -235,6 +466,10 @@ namespace reference.`microsoft.graph` {
|
|
|
235
466
|
|
|
236
467
|
}
|
|
237
468
|
|
|
469
|
+
@complex model appManagementPolicyActorExemptions {
|
|
470
|
+
customSecurityAttributes: customSecurityAttributeExemption[] | null;
|
|
471
|
+
}
|
|
472
|
+
|
|
238
473
|
@complex model appManagementServicePrincipalConfiguration extends appManagementConfiguration {
|
|
239
474
|
}
|
|
240
475
|
|
|
@@ -273,6 +508,10 @@ namespace reference.`microsoft.graph` {
|
|
|
273
508
|
servicePlanId: guid | null;
|
|
274
509
|
}
|
|
275
510
|
|
|
511
|
+
@complex model assignmentRequestApprovalStageCallbackData extends accessPackageAssignmentRequestCallbackData {
|
|
512
|
+
approvalStage: accessPackageApprovalStage | null;
|
|
513
|
+
}
|
|
514
|
+
|
|
276
515
|
@complex model attachmentItem {
|
|
277
516
|
attachmentType: attachmentType | null;
|
|
278
517
|
contentType: string | null;
|
|
@@ -292,6 +531,11 @@ namespace reference.`microsoft.graph` {
|
|
|
292
531
|
status: responseStatus | null;
|
|
293
532
|
}
|
|
294
533
|
|
|
534
|
+
@complex model attendeeAvailability {
|
|
535
|
+
attendee: attendeeBase | null;
|
|
536
|
+
availability: freeBusyStatus | null;
|
|
537
|
+
}
|
|
538
|
+
|
|
295
539
|
@complex model attendeeBase extends recipient {
|
|
296
540
|
type: attendeeType | null;
|
|
297
541
|
}
|
|
@@ -340,6 +584,11 @@ namespace reference.`microsoft.graph` {
|
|
|
340
584
|
type: attributeMappingSourceType;
|
|
341
585
|
}
|
|
342
586
|
|
|
587
|
+
@complex model attributeRuleMembers extends subjectSet {
|
|
588
|
+
description: string | null;
|
|
589
|
+
membershipRule: string | null;
|
|
590
|
+
}
|
|
591
|
+
|
|
343
592
|
@complex model audio {
|
|
344
593
|
album: string | null;
|
|
345
594
|
albumArtist: string | null;
|
|
@@ -451,6 +700,38 @@ namespace reference.`microsoft.graph` {
|
|
|
451
700
|
resourceId: string | null;
|
|
452
701
|
}
|
|
453
702
|
|
|
703
|
+
@complex model authContext extends signInContext {
|
|
704
|
+
authenticationContextValue: string | null;
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
@complex model authenticationFlow {
|
|
708
|
+
transferMethod: conditionalAccessTransferMethods | null;
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
@complex model authenticationMethodFeatureConfiguration {
|
|
712
|
+
excludeTarget: featureTarget | null;
|
|
713
|
+
includeTarget: featureTarget | null;
|
|
714
|
+
state: advancedConfigState | null;
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
@complex model authenticationMethodsRegistrationCampaign {
|
|
718
|
+
excludeTargets: excludeTarget[];
|
|
719
|
+
includeTargets: authenticationMethodsRegistrationCampaignIncludeTarget[];
|
|
720
|
+
snoozeDurationInDays: int32;
|
|
721
|
+
state: advancedConfigState;
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
@complex model authenticationMethodsRegistrationCampaignIncludeTarget {
|
|
725
|
+
id: string;
|
|
726
|
+
targetedAuthenticationMethod: string | null;
|
|
727
|
+
targetType: authenticationMethodTargetType;
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
@complex model authenticationStrengthUsage {
|
|
731
|
+
@references mfa: conditionalAccessPolicy[];
|
|
732
|
+
@references none: conditionalAccessPolicy[];
|
|
733
|
+
}
|
|
734
|
+
|
|
454
735
|
@complex model authorizationInfo {
|
|
455
736
|
certificateUserIds: string[] | null;
|
|
456
737
|
}
|
|
@@ -471,9 +752,18 @@ namespace reference.`microsoft.graph` {
|
|
|
471
752
|
status: automaticRepliesStatus | null;
|
|
472
753
|
}
|
|
473
754
|
|
|
755
|
+
@complex model azureActiveDirectoryTenant extends identitySource {
|
|
756
|
+
displayName: string | null;
|
|
757
|
+
tenantId: string | null;
|
|
758
|
+
}
|
|
759
|
+
|
|
474
760
|
@complex model azureADJoinPolicy {
|
|
475
761
|
allowedToJoin: deviceRegistrationMembership | null;
|
|
476
762
|
isAdminConfigurable: boolean | null;
|
|
763
|
+
localAdmins: localAdminSettings | null;
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
@complex model azureAdPopTokenAuthentication extends customExtensionAuthenticationConfiguration {
|
|
477
767
|
}
|
|
478
768
|
|
|
479
769
|
@complex model azureADRegistrationPolicy {
|
|
@@ -738,6 +1028,10 @@ namespace reference.`microsoft.graph` {
|
|
|
738
1028
|
displayAs: string | null;
|
|
739
1029
|
}
|
|
740
1030
|
|
|
1031
|
+
@complex model cloudAppSecuritySessionControl extends conditionalAccessSessionControl {
|
|
1032
|
+
cloudAppSecurityType: cloudAppSecuritySessionControlType | null;
|
|
1033
|
+
}
|
|
1034
|
+
|
|
741
1035
|
@complex model columnValidation {
|
|
742
1036
|
defaultLanguage: string | null;
|
|
743
1037
|
descriptions: displayNameLocalization[] | null;
|
|
@@ -764,6 +1058,113 @@ namespace reference.`microsoft.graph` {
|
|
|
764
1058
|
target: deviceAndAppManagementAssignmentTarget | null;
|
|
765
1059
|
}
|
|
766
1060
|
|
|
1061
|
+
@complex model conditionalAccessAllExternalTenants extends conditionalAccessExternalTenants {
|
|
1062
|
+
}
|
|
1063
|
+
|
|
1064
|
+
@complex model conditionalAccessApplications {
|
|
1065
|
+
applicationFilter: conditionalAccessFilter | null;
|
|
1066
|
+
excludeApplications: string[];
|
|
1067
|
+
includeApplications: string[];
|
|
1068
|
+
includeAuthenticationContextClassReferences: string[];
|
|
1069
|
+
includeUserActions: string[];
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
@complex model conditionalAccessAuthenticationFlows {
|
|
1073
|
+
transferMethods: conditionalAccessTransferMethods;
|
|
1074
|
+
}
|
|
1075
|
+
|
|
1076
|
+
@complex model conditionalAccessClientApplications {
|
|
1077
|
+
excludeServicePrincipals: string[];
|
|
1078
|
+
includeServicePrincipals: string[];
|
|
1079
|
+
servicePrincipalFilter: conditionalAccessFilter | null;
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
@complex model conditionalAccessConditionSet {
|
|
1083
|
+
applications: conditionalAccessApplications | null;
|
|
1084
|
+
authenticationFlows: conditionalAccessAuthenticationFlows | null;
|
|
1085
|
+
clientApplications: conditionalAccessClientApplications | null;
|
|
1086
|
+
clientAppTypes: conditionalAccessClientApp[];
|
|
1087
|
+
devices: conditionalAccessDevices | null;
|
|
1088
|
+
locations: conditionalAccessLocations | null;
|
|
1089
|
+
platforms: conditionalAccessPlatforms | null;
|
|
1090
|
+
servicePrincipalRiskLevels: riskLevel[];
|
|
1091
|
+
signInRiskLevels: riskLevel[];
|
|
1092
|
+
userRiskLevels: riskLevel[];
|
|
1093
|
+
users: conditionalAccessUsers | null;
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1096
|
+
@complex model conditionalAccessDevices {
|
|
1097
|
+
deviceFilter: conditionalAccessFilter | null;
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
@complex model conditionalAccessEnumeratedExternalTenants extends conditionalAccessExternalTenants {
|
|
1101
|
+
members: string[];
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
@abstract
|
|
1105
|
+
@complex model conditionalAccessExternalTenants {
|
|
1106
|
+
membershipKind: conditionalAccessExternalTenantsMembershipKind | null;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
@complex model conditionalAccessFilter {
|
|
1110
|
+
mode: filterMode;
|
|
1111
|
+
rule: string;
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
@complex model conditionalAccessGrantControls {
|
|
1115
|
+
builtInControls: conditionalAccessGrantControl[];
|
|
1116
|
+
customAuthenticationFactors: string[];
|
|
1117
|
+
operator: string | null;
|
|
1118
|
+
termsOfUse: string[];
|
|
1119
|
+
@contains authenticationStrength: authenticationStrengthPolicy | null;
|
|
1120
|
+
}
|
|
1121
|
+
|
|
1122
|
+
@complex model conditionalAccessGuestsOrExternalUsers {
|
|
1123
|
+
externalTenants: conditionalAccessExternalTenants | null;
|
|
1124
|
+
guestOrExternalUserTypes: conditionalAccessGuestOrExternalUserTypes;
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
@complex model conditionalAccessLocations {
|
|
1128
|
+
excludeLocations: string[];
|
|
1129
|
+
includeLocations: string[];
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
@complex model conditionalAccessPlatforms {
|
|
1133
|
+
excludePlatforms: conditionalAccessDevicePlatform[];
|
|
1134
|
+
includePlatforms: conditionalAccessDevicePlatform[];
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
@complex model conditionalAccessPolicyDetail {
|
|
1138
|
+
conditions: conditionalAccessConditionSet;
|
|
1139
|
+
grantControls: conditionalAccessGrantControls | null;
|
|
1140
|
+
sessionControls: conditionalAccessSessionControls | null;
|
|
1141
|
+
}
|
|
1142
|
+
|
|
1143
|
+
@abstract
|
|
1144
|
+
@complex model conditionalAccessSessionControl {
|
|
1145
|
+
isEnabled: boolean | null;
|
|
1146
|
+
}
|
|
1147
|
+
|
|
1148
|
+
@complex model conditionalAccessSessionControls {
|
|
1149
|
+
applicationEnforcedRestrictions: applicationEnforcedRestrictionsSessionControl | null;
|
|
1150
|
+
cloudAppSecurity: cloudAppSecuritySessionControl | null;
|
|
1151
|
+
disableResilienceDefaults: boolean | null;
|
|
1152
|
+
persistentBrowser: persistentBrowserSessionControl | null;
|
|
1153
|
+
secureSignInSession: secureSignInSessionControl | null;
|
|
1154
|
+
signInFrequency: signInFrequencySessionControl | null;
|
|
1155
|
+
}
|
|
1156
|
+
|
|
1157
|
+
@complex model conditionalAccessUsers {
|
|
1158
|
+
excludeGroups: string[];
|
|
1159
|
+
excludeGuestsOrExternalUsers: conditionalAccessGuestsOrExternalUsers | null;
|
|
1160
|
+
excludeRoles: string[];
|
|
1161
|
+
excludeUsers: string[];
|
|
1162
|
+
includeGroups: string[];
|
|
1163
|
+
includeGuestsOrExternalUsers: conditionalAccessGuestsOrExternalUsers | null;
|
|
1164
|
+
includeRoles: string[];
|
|
1165
|
+
includeUsers: string[];
|
|
1166
|
+
}
|
|
1167
|
+
|
|
767
1168
|
/**
|
|
768
1169
|
* configuration Manager client enabled features
|
|
769
1170
|
*/
|
|
@@ -804,6 +1205,15 @@ namespace reference.`microsoft.graph` {
|
|
|
804
1205
|
collectionId: string | null;
|
|
805
1206
|
}
|
|
806
1207
|
|
|
1208
|
+
@complex model connectedOrganizationMembers extends subjectSet {
|
|
1209
|
+
connectedOrganizationId: string | null;
|
|
1210
|
+
description: string | null;
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1213
|
+
@complex model connectionInfo {
|
|
1214
|
+
url: string | null;
|
|
1215
|
+
}
|
|
1216
|
+
|
|
807
1217
|
@complex model containerFilter {
|
|
808
1218
|
includedContainers: string[] | null;
|
|
809
1219
|
}
|
|
@@ -843,6 +1253,12 @@ namespace reference.`microsoft.graph` {
|
|
|
843
1253
|
@complex model createAction {
|
|
844
1254
|
}
|
|
845
1255
|
|
|
1256
|
+
@complex model crossCloudAzureActiveDirectoryTenant extends identitySource {
|
|
1257
|
+
cloudInstance: string;
|
|
1258
|
+
displayName: string | null;
|
|
1259
|
+
tenantId: string | null;
|
|
1260
|
+
}
|
|
1261
|
+
|
|
846
1262
|
@complex model crossTenantAccessPolicyB2BSetting {
|
|
847
1263
|
applications: crossTenantAccessPolicyTargetConfiguration | null;
|
|
848
1264
|
usersAndGroups: crossTenantAccessPolicyTargetConfiguration | null;
|
|
@@ -872,7 +1288,51 @@ namespace reference.`microsoft.graph` {
|
|
|
872
1288
|
locale: string | null;
|
|
873
1289
|
}
|
|
874
1290
|
|
|
1291
|
+
@complex model customAppManagementApplicationConfiguration {
|
|
1292
|
+
identifierUris: identifierUriConfiguration | null;
|
|
1293
|
+
}
|
|
1294
|
+
|
|
875
1295
|
@complex model customAppManagementConfiguration extends appManagementConfiguration {
|
|
1296
|
+
applicationRestrictions: customAppManagementApplicationConfiguration | null;
|
|
1297
|
+
}
|
|
1298
|
+
|
|
1299
|
+
@abstract
|
|
1300
|
+
@complex model customExtensionAuthenticationConfiguration {
|
|
1301
|
+
}
|
|
1302
|
+
|
|
1303
|
+
@complex model customExtensionCallbackConfiguration {
|
|
1304
|
+
timeoutDuration: duration | null;
|
|
1305
|
+
}
|
|
1306
|
+
|
|
1307
|
+
@complex model customExtensionCalloutInstance {
|
|
1308
|
+
customExtensionId: string | null;
|
|
1309
|
+
detail: string | null;
|
|
1310
|
+
externalCorrelationId: string | null;
|
|
1311
|
+
id: string | null;
|
|
1312
|
+
status: customExtensionCalloutInstanceStatus | null;
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
@complex model customExtensionClientConfiguration {
|
|
1316
|
+
maximumRetries: int32 | null;
|
|
1317
|
+
timeoutInMilliseconds: int32 | null;
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1320
|
+
@abstract
|
|
1321
|
+
@complex model customExtensionData {
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
@abstract
|
|
1325
|
+
@complex model customExtensionEndpointConfiguration {
|
|
1326
|
+
}
|
|
1327
|
+
|
|
1328
|
+
@abstract
|
|
1329
|
+
@complex model customSecurityAttributeExemption {
|
|
1330
|
+
id: string;
|
|
1331
|
+
operator: customSecurityAttributeComparisonOperator;
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
@complex model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
|
|
1335
|
+
value: string | null;
|
|
876
1336
|
}
|
|
877
1337
|
|
|
878
1338
|
@open
|
|
@@ -1332,6 +1792,38 @@ namespace reference.`microsoft.graph` {
|
|
|
1332
1792
|
windowsPE: string | null;
|
|
1333
1793
|
}
|
|
1334
1794
|
|
|
1795
|
+
@complex model deviceInfo {
|
|
1796
|
+
deviceId: string | null;
|
|
1797
|
+
displayName: string | null;
|
|
1798
|
+
enrollmentProfileName: string | null;
|
|
1799
|
+
extensionAttribute1: string | null;
|
|
1800
|
+
extensionAttribute10: string | null;
|
|
1801
|
+
extensionAttribute11: string | null;
|
|
1802
|
+
extensionAttribute12: string | null;
|
|
1803
|
+
extensionAttribute13: string | null;
|
|
1804
|
+
extensionAttribute14: string | null;
|
|
1805
|
+
extensionAttribute15: string | null;
|
|
1806
|
+
extensionAttribute2: string | null;
|
|
1807
|
+
extensionAttribute3: string | null;
|
|
1808
|
+
extensionAttribute4: string | null;
|
|
1809
|
+
extensionAttribute5: string | null;
|
|
1810
|
+
extensionAttribute6: string | null;
|
|
1811
|
+
extensionAttribute7: string | null;
|
|
1812
|
+
extensionAttribute8: string | null;
|
|
1813
|
+
extensionAttribute9: string | null;
|
|
1814
|
+
isCompliant: boolean | null;
|
|
1815
|
+
manufacturer: string | null;
|
|
1816
|
+
mdmAppId: string | null;
|
|
1817
|
+
`model`: string | null;
|
|
1818
|
+
operatingSystem: string | null;
|
|
1819
|
+
operatingSystemVersion: string | null;
|
|
1820
|
+
ownership: string | null;
|
|
1821
|
+
physicalIds: string[] | null;
|
|
1822
|
+
profileType: string | null;
|
|
1823
|
+
systemLabels: string[] | null;
|
|
1824
|
+
trustType: string | null;
|
|
1825
|
+
}
|
|
1826
|
+
|
|
1335
1827
|
@complex model deviceLocalCredential {
|
|
1336
1828
|
accountName: string;
|
|
1337
1829
|
accountSid: string;
|
|
@@ -1475,6 +1967,9 @@ namespace reference.`microsoft.graph` {
|
|
|
1475
1967
|
@complex model Dictionary {
|
|
1476
1968
|
}
|
|
1477
1969
|
|
|
1970
|
+
@complex model disableAndDeleteUserApplyAction extends accessReviewApplyAction {
|
|
1971
|
+
}
|
|
1972
|
+
|
|
1478
1973
|
@complex model displayNameLocalization {
|
|
1479
1974
|
displayName: string | null;
|
|
1480
1975
|
languageTag: string | null;
|
|
@@ -1502,6 +1997,11 @@ namespace reference.`microsoft.graph` {
|
|
|
1502
1997
|
versionId: string | null;
|
|
1503
1998
|
}
|
|
1504
1999
|
|
|
2000
|
+
@complex model domainIdentitySource extends identitySource {
|
|
2001
|
+
displayName: string | null;
|
|
2002
|
+
domainName: string | null;
|
|
2003
|
+
}
|
|
2004
|
+
|
|
1505
2005
|
@complex model domainState {
|
|
1506
2006
|
@computed lastActionDateTime: offsetDateTime | null;
|
|
1507
2007
|
operation: string | null;
|
|
@@ -1568,15 +2068,30 @@ namespace reference.`microsoft.graph` {
|
|
|
1568
2068
|
division: string | null;
|
|
1569
2069
|
}
|
|
1570
2070
|
|
|
2071
|
+
@complex model entitlementManagementSchedule {
|
|
2072
|
+
expiration: expirationPattern | null;
|
|
2073
|
+
recurrence: patternedRecurrence | null;
|
|
2074
|
+
startDateTime: offsetDateTime | null;
|
|
2075
|
+
}
|
|
2076
|
+
|
|
1571
2077
|
@complex model enumeratedDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
1572
2078
|
groups: string[] | null;
|
|
1573
2079
|
users: string[] | null;
|
|
1574
2080
|
}
|
|
1575
2081
|
|
|
2082
|
+
@complex model enumeratedScopes extends inheritableScopes {
|
|
2083
|
+
scopes: string[];
|
|
2084
|
+
}
|
|
2085
|
+
|
|
1576
2086
|
@abstract
|
|
1577
2087
|
@complex model eventMessageDetail {
|
|
1578
2088
|
}
|
|
1579
2089
|
|
|
2090
|
+
@complex model excludeTarget {
|
|
2091
|
+
id: string;
|
|
2092
|
+
targetType: authenticationMethodTargetType;
|
|
2093
|
+
}
|
|
2094
|
+
|
|
1580
2095
|
/**
|
|
1581
2096
|
* Represents a group that should be excluded from an assignment.
|
|
1582
2097
|
*/
|
|
@@ -1599,10 +2114,30 @@ namespace reference.`microsoft.graph` {
|
|
|
1599
2114
|
type: string | null;
|
|
1600
2115
|
}
|
|
1601
2116
|
|
|
2117
|
+
@complex model externalDomainFederation extends identitySource {
|
|
2118
|
+
displayName: string | null;
|
|
2119
|
+
domainName: string | null;
|
|
2120
|
+
issuerUri: string | null;
|
|
2121
|
+
}
|
|
2122
|
+
|
|
2123
|
+
@complex model externalSponsors extends subjectSet {
|
|
2124
|
+
}
|
|
2125
|
+
|
|
1602
2126
|
@complex model extractSensitivityLabelsResult {
|
|
1603
2127
|
labels: sensitivityLabelAssignment[] | null;
|
|
1604
2128
|
}
|
|
1605
2129
|
|
|
2130
|
+
@complex model featureTarget {
|
|
2131
|
+
id: string | null;
|
|
2132
|
+
targetType: featureTargetType | null;
|
|
2133
|
+
}
|
|
2134
|
+
|
|
2135
|
+
@complex model fido2KeyRestrictions {
|
|
2136
|
+
aaGuids: string[] | null;
|
|
2137
|
+
enforcementType: fido2RestrictionEnforcementType | null;
|
|
2138
|
+
isEnforced: boolean | null;
|
|
2139
|
+
}
|
|
2140
|
+
|
|
1606
2141
|
@complex model file {
|
|
1607
2142
|
hashes: hashes | null;
|
|
1608
2143
|
mimeType: string | null;
|
|
@@ -1768,6 +2303,9 @@ namespace reference.`microsoft.graph` {
|
|
|
1768
2303
|
groupId: string | null;
|
|
1769
2304
|
}
|
|
1770
2305
|
|
|
2306
|
+
@complex model groupPeerOutlierRecommendationInsightSettings extends accessReviewRecommendationInsightSetting {
|
|
2307
|
+
}
|
|
2308
|
+
|
|
1771
2309
|
@complex model hashes {
|
|
1772
2310
|
crc32Hash: string | null;
|
|
1773
2311
|
quickXorHash: string | null;
|
|
@@ -1779,6 +2317,20 @@ namespace reference.`microsoft.graph` {
|
|
|
1779
2317
|
isPicture: boolean | null;
|
|
1780
2318
|
}
|
|
1781
2319
|
|
|
2320
|
+
@complex model identifierUriConfiguration {
|
|
2321
|
+
nonDefaultUriAddition: identifierUriRestriction | null;
|
|
2322
|
+
uriAdditionWithoutUniqueTenantIdentifier: identifierUriRestriction | null;
|
|
2323
|
+
}
|
|
2324
|
+
|
|
2325
|
+
@complex model identifierUriRestriction {
|
|
2326
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
2327
|
+
excludeAppsReceivingV2Tokens: boolean | null;
|
|
2328
|
+
excludeSaml: boolean | null;
|
|
2329
|
+
isStateSetByMicrosoft: boolean;
|
|
2330
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
2331
|
+
state: appManagementRestrictionState;
|
|
2332
|
+
}
|
|
2333
|
+
|
|
1782
2334
|
@open
|
|
1783
2335
|
@complex model identity {
|
|
1784
2336
|
displayName: string | null;
|
|
@@ -1792,6 +2344,10 @@ namespace reference.`microsoft.graph` {
|
|
|
1792
2344
|
user: identity | null;
|
|
1793
2345
|
}
|
|
1794
2346
|
|
|
2347
|
+
@abstract
|
|
2348
|
+
@complex model identitySource {
|
|
2349
|
+
}
|
|
2350
|
+
|
|
1795
2351
|
@complex model idleSessionSignOut {
|
|
1796
2352
|
isEnabled: boolean | null;
|
|
1797
2353
|
signOutAfterInSeconds: int64 | null;
|
|
@@ -1832,6 +2388,11 @@ namespace reference.`microsoft.graph` {
|
|
|
1832
2388
|
outboundAllowed: boolean | null;
|
|
1833
2389
|
}
|
|
1834
2390
|
|
|
2391
|
+
@complex model includeTarget {
|
|
2392
|
+
id: string;
|
|
2393
|
+
targetType: authenticationMethodTargetType;
|
|
2394
|
+
}
|
|
2395
|
+
|
|
1835
2396
|
@open
|
|
1836
2397
|
@complex model incompleteData {
|
|
1837
2398
|
missingDataBeforeDateTime: offsetDateTime | null;
|
|
@@ -1846,6 +2407,11 @@ namespace reference.`microsoft.graph` {
|
|
|
1846
2407
|
termsOfServiceUrl: string | null;
|
|
1847
2408
|
}
|
|
1848
2409
|
|
|
2410
|
+
@abstract
|
|
2411
|
+
@complex model inheritableScopes {
|
|
2412
|
+
kind: scopeCollectionKind;
|
|
2413
|
+
}
|
|
2414
|
+
|
|
1849
2415
|
@open
|
|
1850
2416
|
@complex model initiator extends identity {
|
|
1851
2417
|
initiatorType: initiatorType | null;
|
|
@@ -1876,6 +2442,9 @@ namespace reference.`microsoft.graph` {
|
|
|
1876
2442
|
resourceAppId: string;
|
|
1877
2443
|
}
|
|
1878
2444
|
|
|
2445
|
+
@complex model internalSponsors extends subjectSet {
|
|
2446
|
+
}
|
|
2447
|
+
|
|
1879
2448
|
@complex model internetMessageHeader {
|
|
1880
2449
|
name: string | null;
|
|
1881
2450
|
value: string | null;
|
|
@@ -2318,6 +2887,11 @@ namespace reference.`microsoft.graph` {
|
|
|
2318
2887
|
isEnabled: boolean | null;
|
|
2319
2888
|
}
|
|
2320
2889
|
|
|
2890
|
+
@complex model localAdminSettings {
|
|
2891
|
+
enableGlobalAdmins: boolean | null;
|
|
2892
|
+
registeringUsers: deviceRegistrationMembership | null;
|
|
2893
|
+
}
|
|
2894
|
+
|
|
2321
2895
|
@complex model localeInfo {
|
|
2322
2896
|
displayName: string | null;
|
|
2323
2897
|
locale: string | null;
|
|
@@ -2344,6 +2918,23 @@ namespace reference.`microsoft.graph` {
|
|
|
2344
2918
|
uniqueIdType: locationUniqueIdType | null;
|
|
2345
2919
|
}
|
|
2346
2920
|
|
|
2921
|
+
@complex model locationConstraint {
|
|
2922
|
+
isRequired: boolean | null;
|
|
2923
|
+
locations: locationConstraintItem[] | null;
|
|
2924
|
+
suggestLocation: boolean | null;
|
|
2925
|
+
}
|
|
2926
|
+
|
|
2927
|
+
@complex model locationConstraintItem extends location {
|
|
2928
|
+
resolveAvailability: boolean | null;
|
|
2929
|
+
}
|
|
2930
|
+
|
|
2931
|
+
@complex model logicAppTriggerEndpointConfiguration extends customExtensionEndpointConfiguration {
|
|
2932
|
+
logicAppWorkflowName: string | null;
|
|
2933
|
+
resourceGroupName: string | null;
|
|
2934
|
+
subscriptionId: string | null;
|
|
2935
|
+
url: string | null;
|
|
2936
|
+
}
|
|
2937
|
+
|
|
2347
2938
|
@complex model loginPageLayoutConfiguration {
|
|
2348
2939
|
isFooterShown: boolean | null;
|
|
2349
2940
|
isHeaderShown: boolean | null;
|
|
@@ -2650,6 +3241,21 @@ namespace reference.`microsoft.graph` {
|
|
|
2650
3241
|
meetingChatId: string | null;
|
|
2651
3242
|
}
|
|
2652
3243
|
|
|
3244
|
+
@complex model meetingTimeSuggestion {
|
|
3245
|
+
attendeeAvailability: attendeeAvailability[] | null;
|
|
3246
|
+
confidence: float64 | null;
|
|
3247
|
+
locations: location[] | null;
|
|
3248
|
+
meetingTimeSlot: timeSlot | null;
|
|
3249
|
+
order: int32 | null;
|
|
3250
|
+
organizerAvailability: freeBusyStatus | null;
|
|
3251
|
+
suggestionReason: string | null;
|
|
3252
|
+
}
|
|
3253
|
+
|
|
3254
|
+
@complex model meetingTimeSuggestionsResult {
|
|
3255
|
+
emptySuggestionsReason: string | null;
|
|
3256
|
+
meetingTimeSuggestions: meetingTimeSuggestion[] | null;
|
|
3257
|
+
}
|
|
3258
|
+
|
|
2653
3259
|
@complex model membersAddedEventMessageDetail extends eventMessageDetail {
|
|
2654
3260
|
initiator: identitySet | null;
|
|
2655
3261
|
members: teamworkUserIdentity[] | null;
|
|
@@ -2742,6 +3348,11 @@ namespace reference.`microsoft.graph` {
|
|
|
2742
3348
|
value: Json | null;
|
|
2743
3349
|
}
|
|
2744
3350
|
|
|
3351
|
+
@complex model microsoftAuthenticatorFeatureSettings {
|
|
3352
|
+
displayAppInformationRequiredState: authenticationMethodFeatureConfiguration | null;
|
|
3353
|
+
displayLocationInformationRequiredState: authenticationMethodFeatureConfiguration | null;
|
|
3354
|
+
}
|
|
3355
|
+
|
|
2745
3356
|
/**
|
|
2746
3357
|
* Contains properties used to assign an Microsoft Store for Business mobile app to a group.
|
|
2747
3358
|
*/
|
|
@@ -2812,6 +3423,9 @@ namespace reference.`microsoft.graph` {
|
|
|
2812
3423
|
@complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
2813
3424
|
}
|
|
2814
3425
|
|
|
3426
|
+
@complex model noScopes extends inheritableScopes {
|
|
3427
|
+
}
|
|
3428
|
+
|
|
2815
3429
|
@complex model numberColumn {
|
|
2816
3430
|
decimalPlaces: string | null;
|
|
2817
3431
|
displayAs: string | null;
|
|
@@ -3020,6 +3634,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3020
3634
|
value: string | null;
|
|
3021
3635
|
}
|
|
3022
3636
|
|
|
3637
|
+
@complex model openIdConnectSetting {
|
|
3638
|
+
clientId: string;
|
|
3639
|
+
discoveryUrl: string;
|
|
3640
|
+
}
|
|
3641
|
+
|
|
3023
3642
|
@complex model operationError {
|
|
3024
3643
|
code: string | null;
|
|
3025
3644
|
message: string | null;
|
|
@@ -3089,7 +3708,7 @@ namespace reference.`microsoft.graph` {
|
|
|
3089
3708
|
*/
|
|
3090
3709
|
privacySettingsHidden: boolean;
|
|
3091
3710
|
/**
|
|
3092
|
-
* The type of user. Possible values are administrator and standard. Default value is administrator.
|
|
3711
|
+
* The type of user. Possible values are administrator and standard. Default value is administrator. Yes No
|
|
3093
3712
|
|
|
3094
3713
|
*/
|
|
3095
3714
|
userType: windowsUserType;
|
|
@@ -3129,6 +3748,10 @@ namespace reference.`microsoft.graph` {
|
|
|
3129
3748
|
password: string | null;
|
|
3130
3749
|
}
|
|
3131
3750
|
|
|
3751
|
+
@complex model passwordResetResponse {
|
|
3752
|
+
newPassword: string | null;
|
|
3753
|
+
}
|
|
3754
|
+
|
|
3132
3755
|
@complex model patternedRecurrence {
|
|
3133
3756
|
pattern: recurrencePattern | null;
|
|
3134
3757
|
range: recurrenceRange | null;
|
|
@@ -3154,6 +3777,10 @@ namespace reference.`microsoft.graph` {
|
|
|
3154
3777
|
value: string | null;
|
|
3155
3778
|
}
|
|
3156
3779
|
|
|
3780
|
+
@complex model persistentBrowserSessionControl extends conditionalAccessSessionControl {
|
|
3781
|
+
mode: persistentBrowserSessionMode | null;
|
|
3782
|
+
}
|
|
3783
|
+
|
|
3157
3784
|
@complex model personOrGroupColumn {
|
|
3158
3785
|
allowMultipleSelection: boolean | null;
|
|
3159
3786
|
chooseFromType: string | null;
|
|
@@ -3201,6 +3828,86 @@ namespace reference.`microsoft.graph` {
|
|
|
3201
3828
|
street: string | null;
|
|
3202
3829
|
}
|
|
3203
3830
|
|
|
3831
|
+
@open
|
|
3832
|
+
@complex model plannerAppliedCategories {
|
|
3833
|
+
}
|
|
3834
|
+
|
|
3835
|
+
@complex model plannerAssignment {
|
|
3836
|
+
assignedBy: identitySet | null;
|
|
3837
|
+
assignedDateTime: offsetDateTime | null;
|
|
3838
|
+
orderHint: string | null;
|
|
3839
|
+
}
|
|
3840
|
+
|
|
3841
|
+
@open
|
|
3842
|
+
@complex model plannerAssignments {
|
|
3843
|
+
}
|
|
3844
|
+
|
|
3845
|
+
@complex model plannerCategoryDescriptions {
|
|
3846
|
+
category1: string | null;
|
|
3847
|
+
category10: string | null;
|
|
3848
|
+
category11: string | null;
|
|
3849
|
+
category12: string | null;
|
|
3850
|
+
category13: string | null;
|
|
3851
|
+
category14: string | null;
|
|
3852
|
+
category15: string | null;
|
|
3853
|
+
category16: string | null;
|
|
3854
|
+
category17: string | null;
|
|
3855
|
+
category18: string | null;
|
|
3856
|
+
category19: string | null;
|
|
3857
|
+
category2: string | null;
|
|
3858
|
+
category20: string | null;
|
|
3859
|
+
category21: string | null;
|
|
3860
|
+
category22: string | null;
|
|
3861
|
+
category23: string | null;
|
|
3862
|
+
category24: string | null;
|
|
3863
|
+
category25: string | null;
|
|
3864
|
+
category3: string | null;
|
|
3865
|
+
category4: string | null;
|
|
3866
|
+
category5: string | null;
|
|
3867
|
+
category6: string | null;
|
|
3868
|
+
category7: string | null;
|
|
3869
|
+
category8: string | null;
|
|
3870
|
+
category9: string | null;
|
|
3871
|
+
}
|
|
3872
|
+
|
|
3873
|
+
@complex model plannerChecklistItem {
|
|
3874
|
+
isChecked: boolean | null;
|
|
3875
|
+
lastModifiedBy: identitySet | null;
|
|
3876
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
3877
|
+
orderHint: string | null;
|
|
3878
|
+
title: string | null;
|
|
3879
|
+
}
|
|
3880
|
+
|
|
3881
|
+
@open
|
|
3882
|
+
@complex model plannerChecklistItems {
|
|
3883
|
+
}
|
|
3884
|
+
|
|
3885
|
+
@complex model plannerExternalReference {
|
|
3886
|
+
`alias`: string | null;
|
|
3887
|
+
lastModifiedBy: identitySet | null;
|
|
3888
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
3889
|
+
previewPriority: string | null;
|
|
3890
|
+
type: string | null;
|
|
3891
|
+
}
|
|
3892
|
+
|
|
3893
|
+
@open
|
|
3894
|
+
@complex model plannerExternalReferences {
|
|
3895
|
+
}
|
|
3896
|
+
|
|
3897
|
+
@open
|
|
3898
|
+
@complex model plannerOrderHintsByAssignee {
|
|
3899
|
+
}
|
|
3900
|
+
|
|
3901
|
+
@complex model plannerPlanContainer {
|
|
3902
|
+
containerId: string | null;
|
|
3903
|
+
type: plannerContainerType | null;
|
|
3904
|
+
url: string | null;
|
|
3905
|
+
}
|
|
3906
|
+
|
|
3907
|
+
@open
|
|
3908
|
+
@complex model plannerUserIds {
|
|
3909
|
+
}
|
|
3910
|
+
|
|
3204
3911
|
@complex model preAuthorizedApplication {
|
|
3205
3912
|
appId: string | null;
|
|
3206
3913
|
delegatedPermissionIds: string[];
|
|
@@ -3212,6 +3919,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3212
3919
|
publishedDateTime: offsetDateTime | null;
|
|
3213
3920
|
}
|
|
3214
3921
|
|
|
3922
|
+
@complex model principalResourceMembershipsScope extends accessReviewScope {
|
|
3923
|
+
principalScopes: accessReviewScope[] | null;
|
|
3924
|
+
resourceScopes: accessReviewScope[] | null;
|
|
3925
|
+
}
|
|
3926
|
+
|
|
3215
3927
|
@complex model privacyProfile {
|
|
3216
3928
|
contactEmail: string | null;
|
|
3217
3929
|
statementUrl: string | null;
|
|
@@ -3222,6 +3934,12 @@ namespace reference.`microsoft.graph` {
|
|
|
3222
3934
|
localizations: displayNameLocalization[] | null;
|
|
3223
3935
|
}
|
|
3224
3936
|
|
|
3937
|
+
@complex model profileSourceLocalization {
|
|
3938
|
+
displayName: string | null;
|
|
3939
|
+
languageTag: string | null;
|
|
3940
|
+
webUrl: string | null;
|
|
3941
|
+
}
|
|
3942
|
+
|
|
3225
3943
|
@complex model provisionChannelEmailResult {
|
|
3226
3944
|
email: string | null;
|
|
3227
3945
|
}
|
|
@@ -3318,6 +4036,13 @@ namespace reference.`microsoft.graph` {
|
|
|
3318
4036
|
target: string | null;
|
|
3319
4037
|
}
|
|
3320
4038
|
|
|
4039
|
+
@complex model qrCodeImageDetails {
|
|
4040
|
+
binaryValue: binary | null;
|
|
4041
|
+
errorCorrectionLevel: errorCorrectionLevel | null;
|
|
4042
|
+
rawContent: binary | null;
|
|
4043
|
+
version: int32 | null;
|
|
4044
|
+
}
|
|
4045
|
+
|
|
3321
4046
|
@complex model quota {
|
|
3322
4047
|
deleted: int64 | null;
|
|
3323
4048
|
remaining: int64 | null;
|
|
@@ -3369,6 +4094,10 @@ namespace reference.`microsoft.graph` {
|
|
|
3369
4094
|
referencedProperty: string | null;
|
|
3370
4095
|
}
|
|
3371
4096
|
|
|
4097
|
+
@complex model registrationEnforcement {
|
|
4098
|
+
authenticationMethodsRegistrationCampaign: authenticationMethodsRegistrationCampaign | null;
|
|
4099
|
+
}
|
|
4100
|
+
|
|
3372
4101
|
@complex model reminder {
|
|
3373
4102
|
changeKey: string | null;
|
|
3374
4103
|
eventEndTime: dateTimeTimeZone | null;
|
|
@@ -3412,6 +4141,9 @@ namespace reference.`microsoft.graph` {
|
|
|
3412
4141
|
unlockPin: string | null;
|
|
3413
4142
|
}
|
|
3414
4143
|
|
|
4144
|
+
@complex model removeAccessApplyAction extends accessReviewApplyAction {
|
|
4145
|
+
}
|
|
4146
|
+
|
|
3415
4147
|
@complex model renameAction {
|
|
3416
4148
|
newName: string | null;
|
|
3417
4149
|
oldName: string | null;
|
|
@@ -3424,6 +4156,10 @@ namespace reference.`microsoft.graph` {
|
|
|
3424
4156
|
content: stream | null;
|
|
3425
4157
|
}
|
|
3426
4158
|
|
|
4159
|
+
@complex model requestorManager extends subjectSet {
|
|
4160
|
+
managerLevel: int32 | null;
|
|
4161
|
+
}
|
|
4162
|
+
|
|
3427
4163
|
@complex model requestSchedule {
|
|
3428
4164
|
expiration: expirationPattern | null;
|
|
3429
4165
|
recurrence: patternedRecurrence | null;
|
|
@@ -3582,6 +4318,9 @@ namespace reference.`microsoft.graph` {
|
|
|
3582
4318
|
onClickTelemetryUrl: string | null;
|
|
3583
4319
|
}
|
|
3584
4320
|
|
|
4321
|
+
@complex model secureSignInSessionControl extends conditionalAccessSessionControl {
|
|
4322
|
+
}
|
|
4323
|
+
|
|
3585
4324
|
@complex model sensitivityLabelAssignment {
|
|
3586
4325
|
assignmentMethod: sensitivityLabelAssignmentMethod;
|
|
3587
4326
|
sensitivityLabelId: string;
|
|
@@ -3608,6 +4347,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3608
4347
|
servicePlanName: string | null;
|
|
3609
4348
|
}
|
|
3610
4349
|
|
|
4350
|
+
@open
|
|
4351
|
+
@complex model servicePrincipalIdentity extends identity {
|
|
4352
|
+
appId: string | null;
|
|
4353
|
+
}
|
|
4354
|
+
|
|
3611
4355
|
@complex model servicePrincipalLockConfiguration {
|
|
3612
4356
|
allProperties: boolean | null;
|
|
3613
4357
|
credentialsWithUsageSign: boolean | null;
|
|
@@ -3616,6 +4360,10 @@ namespace reference.`microsoft.graph` {
|
|
|
3616
4360
|
tokenEncryptionKeyId: boolean | null;
|
|
3617
4361
|
}
|
|
3618
4362
|
|
|
4363
|
+
@complex model servicePrincipalSignIn extends signInIdentity {
|
|
4364
|
+
servicePrincipalId: string | null;
|
|
4365
|
+
}
|
|
4366
|
+
|
|
3619
4367
|
@complex model serviceUpdateMessageViewpoint {
|
|
3620
4368
|
isArchived: boolean | null;
|
|
3621
4369
|
isFavorited: boolean | null;
|
|
@@ -3726,11 +4474,38 @@ namespace reference.`microsoft.graph` {
|
|
|
3726
4474
|
lastSuccessfulSignInRequestId: string | null;
|
|
3727
4475
|
}
|
|
3728
4476
|
|
|
4477
|
+
@complex model signInConditions {
|
|
4478
|
+
authenticationFlow: authenticationFlow | null;
|
|
4479
|
+
clientAppType: conditionalAccessClientApp | null;
|
|
4480
|
+
country: string | null;
|
|
4481
|
+
deviceInfo: deviceInfo | null;
|
|
4482
|
+
devicePlatform: conditionalAccessDevicePlatform | null;
|
|
4483
|
+
ipAddress: string | null;
|
|
4484
|
+
servicePrincipalRiskLevel: riskLevel | null;
|
|
4485
|
+
signInRiskLevel: riskLevel | null;
|
|
4486
|
+
userRiskLevel: riskLevel | null;
|
|
4487
|
+
}
|
|
4488
|
+
|
|
4489
|
+
@abstract
|
|
4490
|
+
@complex model signInContext {
|
|
4491
|
+
}
|
|
4492
|
+
|
|
4493
|
+
@complex model signInFrequencySessionControl extends conditionalAccessSessionControl {
|
|
4494
|
+
authenticationType: signInFrequencyAuthenticationType | null;
|
|
4495
|
+
frequencyInterval: signInFrequencyInterval | null;
|
|
4496
|
+
type: signinFrequencyType | null;
|
|
4497
|
+
value: int32 | null;
|
|
4498
|
+
}
|
|
4499
|
+
|
|
3729
4500
|
@complex model signingCertificateUpdateStatus {
|
|
3730
4501
|
certificateUpdateResult: string | null;
|
|
3731
4502
|
@computed lastRunDateTime: offsetDateTime | null;
|
|
3732
4503
|
}
|
|
3733
4504
|
|
|
4505
|
+
@abstract
|
|
4506
|
+
@complex model signInIdentity {
|
|
4507
|
+
}
|
|
4508
|
+
|
|
3734
4509
|
@complex model signInLocation {
|
|
3735
4510
|
city: string | null;
|
|
3736
4511
|
countryOrRegion: string | null;
|
|
@@ -3744,6 +4519,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3744
4519
|
failureReason: string | null;
|
|
3745
4520
|
}
|
|
3746
4521
|
|
|
4522
|
+
@complex model singleServicePrincipal extends subjectSet {
|
|
4523
|
+
description: string | null;
|
|
4524
|
+
servicePrincipalId: string | null;
|
|
4525
|
+
}
|
|
4526
|
+
|
|
3747
4527
|
@complex model singleUser extends subjectSet {
|
|
3748
4528
|
description: string | null;
|
|
3749
4529
|
userId: string | null;
|
|
@@ -3765,6 +4545,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3765
4545
|
minimumSize: int32 | null;
|
|
3766
4546
|
}
|
|
3767
4547
|
|
|
4548
|
+
@complex model socialIdentitySource extends identitySource {
|
|
4549
|
+
displayName: string | null;
|
|
4550
|
+
socialIdentitySourceType: socialIdentitySourceType;
|
|
4551
|
+
}
|
|
4552
|
+
|
|
3768
4553
|
@complex model spaApplication {
|
|
3769
4554
|
redirectUris: string[];
|
|
3770
4555
|
}
|
|
@@ -3921,6 +4706,16 @@ namespace reference.`microsoft.graph` {
|
|
|
3921
4706
|
tabId: string | null;
|
|
3922
4707
|
}
|
|
3923
4708
|
|
|
4709
|
+
@complex model targetAgentIdentitySponsorsOrOwners extends subjectSet {
|
|
4710
|
+
}
|
|
4711
|
+
|
|
4712
|
+
@complex model targetApplicationOwners extends subjectSet {
|
|
4713
|
+
}
|
|
4714
|
+
|
|
4715
|
+
@complex model targetManager extends subjectSet {
|
|
4716
|
+
managerLevel: int32 | null;
|
|
4717
|
+
}
|
|
4718
|
+
|
|
3924
4719
|
@complex model targetResource {
|
|
3925
4720
|
displayName: string | null;
|
|
3926
4721
|
groupType: groupType | null;
|
|
@@ -3930,6 +4725,9 @@ namespace reference.`microsoft.graph` {
|
|
|
3930
4725
|
userPrincipalName: string | null;
|
|
3931
4726
|
}
|
|
3932
4727
|
|
|
4728
|
+
@complex model targetUserSponsors extends subjectSet {
|
|
4729
|
+
}
|
|
4730
|
+
|
|
3933
4731
|
@complex model teamArchivedEventMessageDetail extends eventMessageDetail {
|
|
3934
4732
|
initiator: identitySet | null;
|
|
3935
4733
|
teamId: string | null;
|
|
@@ -4134,6 +4932,11 @@ namespace reference.`microsoft.graph` {
|
|
|
4134
4932
|
ticketSystem: string | null;
|
|
4135
4933
|
}
|
|
4136
4934
|
|
|
4935
|
+
@complex model timeConstraint {
|
|
4936
|
+
activityDomain: activityDomain | null;
|
|
4937
|
+
timeSlots: timeSlot[] | null;
|
|
4938
|
+
}
|
|
4939
|
+
|
|
4137
4940
|
@complex model timeSlot {
|
|
4138
4941
|
end: dateTimeTimeZone;
|
|
4139
4942
|
start: dateTimeTimeZone;
|
|
@@ -4186,6 +4989,13 @@ namespace reference.`microsoft.graph` {
|
|
|
4186
4989
|
excludedResourceActions: string[] | null;
|
|
4187
4990
|
}
|
|
4188
4991
|
|
|
4992
|
+
@complex model updateAllowedCombinationsResult {
|
|
4993
|
+
additionalInformation: string | null;
|
|
4994
|
+
conditionalAccessReferences: string[] | null;
|
|
4995
|
+
currentCombinations: authenticationMethodModes[];
|
|
4996
|
+
previousCombinations: authenticationMethodModes[];
|
|
4997
|
+
}
|
|
4998
|
+
|
|
4189
4999
|
@complex model updateWindowsDeviceAccountActionParameter {
|
|
4190
5000
|
calendarSyncEnabled: boolean | null;
|
|
4191
5001
|
deviceAccount: windowsDeviceAccount | null;
|
|
@@ -4201,6 +5011,10 @@ namespace reference.`microsoft.graph` {
|
|
|
4201
5011
|
uploadUrl: string | null;
|
|
4202
5012
|
}
|
|
4203
5013
|
|
|
5014
|
+
@complex model userActionContext extends signInContext {
|
|
5015
|
+
userAction: userAction | null;
|
|
5016
|
+
}
|
|
5017
|
+
|
|
4204
5018
|
/**
|
|
4205
5019
|
* The user experience analytics summary of Devices not windows autopilot ready.
|
|
4206
5020
|
*/
|
|
@@ -4364,6 +5178,11 @@ namespace reference.`microsoft.graph` {
|
|
|
4364
5178
|
userPrincipalName: string | null;
|
|
4365
5179
|
}
|
|
4366
5180
|
|
|
5181
|
+
@complex model userLastSignInRecommendationInsightSetting extends accessReviewRecommendationInsightSetting {
|
|
5182
|
+
recommendationLookBackDuration: duration | null;
|
|
5183
|
+
signInScope: userSignInRecommendationScope | null;
|
|
5184
|
+
}
|
|
5185
|
+
|
|
4367
5186
|
@complex model userRegistrationFeatureCount {
|
|
4368
5187
|
feature: authenticationMethodFeature;
|
|
4369
5188
|
userCount: int64;
|
|
@@ -4388,6 +5207,18 @@ namespace reference.`microsoft.graph` {
|
|
|
4388
5207
|
userTypes: includedUserTypes | null;
|
|
4389
5208
|
}
|
|
4390
5209
|
|
|
5210
|
+
@complex model userSignIn extends signInIdentity {
|
|
5211
|
+
externalTenantId: string | null;
|
|
5212
|
+
externalUserType: conditionalAccessGuestOrExternalUserTypes;
|
|
5213
|
+
userId: string | null;
|
|
5214
|
+
}
|
|
5215
|
+
|
|
5216
|
+
@complex model userWorkLocation {
|
|
5217
|
+
placeId: string | null;
|
|
5218
|
+
source: workLocationSource;
|
|
5219
|
+
workLocationType: workLocationType;
|
|
5220
|
+
}
|
|
5221
|
+
|
|
4391
5222
|
@complex model verifiedDomain {
|
|
4392
5223
|
capabilities: string | null;
|
|
4393
5224
|
isDefault: boolean | null;
|
|
@@ -4440,6 +5271,70 @@ namespace reference.`microsoft.graph` {
|
|
|
4440
5271
|
redirectUriSettings: redirectUriSettings[];
|
|
4441
5272
|
}
|
|
4442
5273
|
|
|
5274
|
+
@open
|
|
5275
|
+
@complex model webauthnAuthenticationExtensionsClientInputs {
|
|
5276
|
+
}
|
|
5277
|
+
|
|
5278
|
+
@open
|
|
5279
|
+
@complex model webauthnAuthenticationExtensionsClientOutputs {
|
|
5280
|
+
}
|
|
5281
|
+
|
|
5282
|
+
@complex model webauthnAuthenticatorAttestationResponse {
|
|
5283
|
+
attestationObject: string | null;
|
|
5284
|
+
clientDataJSON: string | null;
|
|
5285
|
+
}
|
|
5286
|
+
|
|
5287
|
+
@complex model webauthnAuthenticatorSelectionCriteria {
|
|
5288
|
+
authenticatorAttachment: string | null;
|
|
5289
|
+
requireResidentKey: boolean | null;
|
|
5290
|
+
userVerification: string | null;
|
|
5291
|
+
}
|
|
5292
|
+
|
|
5293
|
+
@complex model webauthnCredentialCreationOptions {
|
|
5294
|
+
challengeTimeoutDateTime: offsetDateTime | null;
|
|
5295
|
+
publicKey: webauthnPublicKeyCredentialCreationOptions | null;
|
|
5296
|
+
}
|
|
5297
|
+
|
|
5298
|
+
@complex model webauthnPublicKeyCredential {
|
|
5299
|
+
clientExtensionResults: webauthnAuthenticationExtensionsClientOutputs | null;
|
|
5300
|
+
id: string | null;
|
|
5301
|
+
response: webauthnAuthenticatorAttestationResponse | null;
|
|
5302
|
+
}
|
|
5303
|
+
|
|
5304
|
+
@complex model webauthnPublicKeyCredentialCreationOptions {
|
|
5305
|
+
attestation: string | null;
|
|
5306
|
+
authenticatorSelection: webauthnAuthenticatorSelectionCriteria | null;
|
|
5307
|
+
challenge: string | null;
|
|
5308
|
+
excludeCredentials: webauthnPublicKeyCredentialDescriptor[] | null;
|
|
5309
|
+
extensions: webauthnAuthenticationExtensionsClientInputs | null;
|
|
5310
|
+
pubKeyCredParams: webauthnPublicKeyCredentialParameters[] | null;
|
|
5311
|
+
rp: webauthnPublicKeyCredentialRpEntity | null;
|
|
5312
|
+
timeout: int32 | null;
|
|
5313
|
+
user: webauthnPublicKeyCredentialUserEntity | null;
|
|
5314
|
+
}
|
|
5315
|
+
|
|
5316
|
+
@complex model webauthnPublicKeyCredentialDescriptor {
|
|
5317
|
+
id: string | null;
|
|
5318
|
+
transports: string[] | null;
|
|
5319
|
+
type: string | null;
|
|
5320
|
+
}
|
|
5321
|
+
|
|
5322
|
+
@complex model webauthnPublicKeyCredentialParameters {
|
|
5323
|
+
alg: int32 | null;
|
|
5324
|
+
type: string | null;
|
|
5325
|
+
}
|
|
5326
|
+
|
|
5327
|
+
@complex model webauthnPublicKeyCredentialRpEntity {
|
|
5328
|
+
id: string | null;
|
|
5329
|
+
name: string | null;
|
|
5330
|
+
}
|
|
5331
|
+
|
|
5332
|
+
@complex model webauthnPublicKeyCredentialUserEntity {
|
|
5333
|
+
displayName: string | null;
|
|
5334
|
+
id: string | null;
|
|
5335
|
+
name: string | null;
|
|
5336
|
+
}
|
|
5337
|
+
|
|
4443
5338
|
@complex model webPartData {
|
|
4444
5339
|
dataVersion: string | null;
|
|
4445
5340
|
description: string | null;
|
|
@@ -5134,18 +6029,315 @@ namespace reference.`microsoft.graph` {
|
|
|
5134
6029
|
scheduledInstallTime: offsetDateTime;
|
|
5135
6030
|
}
|
|
5136
6031
|
|
|
5137
|
-
@complex model workingHours {
|
|
5138
|
-
daysOfWeek: dayOfWeek[] | null;
|
|
5139
|
-
endTime: offsetDateTime | null;
|
|
5140
|
-
startTime: offsetDateTime | null;
|
|
5141
|
-
timeZone: timeZoneBase | null;
|
|
6032
|
+
@complex model workingHours {
|
|
6033
|
+
daysOfWeek: dayOfWeek[] | null;
|
|
6034
|
+
endTime: offsetDateTime | null;
|
|
6035
|
+
startTime: offsetDateTime | null;
|
|
6036
|
+
timeZone: timeZoneBase | null;
|
|
6037
|
+
}
|
|
6038
|
+
|
|
6039
|
+
@complex model x509CertificateAuthenticationModeConfiguration {
|
|
6040
|
+
rules: x509CertificateRule[] | null;
|
|
6041
|
+
x509CertificateAuthenticationDefaultMode: x509CertificateAuthenticationMode | null;
|
|
6042
|
+
x509CertificateDefaultRequiredAffinityLevel: x509CertificateAffinityLevel | null;
|
|
6043
|
+
}
|
|
6044
|
+
|
|
6045
|
+
@complex model x509CertificateAuthorityScope {
|
|
6046
|
+
includeTargets: includeTarget[] | null;
|
|
6047
|
+
publicKeyInfrastructureIdentifier: string | null;
|
|
6048
|
+
subjectKeyIdentifier: string | null;
|
|
6049
|
+
}
|
|
6050
|
+
|
|
6051
|
+
@complex model x509CertificateIssuerHintsConfiguration {
|
|
6052
|
+
state: x509CertificateIssuerHintsState | null;
|
|
6053
|
+
}
|
|
6054
|
+
|
|
6055
|
+
@complex model x509CertificateRule {
|
|
6056
|
+
identifier: string | null;
|
|
6057
|
+
issuerSubjectIdentifier: string | null;
|
|
6058
|
+
policyOidIdentifier: string | null;
|
|
6059
|
+
x509CertificateAuthenticationMode: x509CertificateAuthenticationMode | null;
|
|
6060
|
+
x509CertificateRequiredAffinityLevel: x509CertificateAffinityLevel | null;
|
|
6061
|
+
x509CertificateRuleType: x509CertificateRuleType | null;
|
|
6062
|
+
}
|
|
6063
|
+
|
|
6064
|
+
@complex model x509CertificateUserBinding {
|
|
6065
|
+
priority: int32;
|
|
6066
|
+
trustAffinityLevel: x509CertificateAffinityLevel | null;
|
|
6067
|
+
userProperty: string | null;
|
|
6068
|
+
x509CertificateField: string | null;
|
|
6069
|
+
}
|
|
6070
|
+
|
|
6071
|
+
@entity model aadUserConversationMember extends conversationMember {
|
|
6072
|
+
email: string | null;
|
|
6073
|
+
tenantId: string | null;
|
|
6074
|
+
userId: string | null;
|
|
6075
|
+
@references user: user | null;
|
|
6076
|
+
}
|
|
6077
|
+
|
|
6078
|
+
@entity model accessPackage extends entity {
|
|
6079
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6080
|
+
description: string | null;
|
|
6081
|
+
displayName: string | null;
|
|
6082
|
+
isHidden: boolean | null;
|
|
6083
|
+
modifiedDateTime: offsetDateTime | null;
|
|
6084
|
+
@references accessPackagesIncompatibleWith: accessPackage[];
|
|
6085
|
+
@contains assignmentPolicies: accessPackageAssignmentPolicy[];
|
|
6086
|
+
@references catalog: accessPackageCatalog | null;
|
|
6087
|
+
@references incompatibleAccessPackages: accessPackage[];
|
|
6088
|
+
@contains incompatibleGroups: group[];
|
|
6089
|
+
@contains resourceRoleScopes: accessPackageResourceRoleScope[];
|
|
6090
|
+
}
|
|
6091
|
+
|
|
6092
|
+
@entity model accessPackageAssignment extends entity {
|
|
6093
|
+
customExtensionCalloutInstances: customExtensionCalloutInstance[] | null;
|
|
6094
|
+
expiredDateTime: offsetDateTime | null;
|
|
6095
|
+
schedule: entitlementManagementSchedule | null;
|
|
6096
|
+
state: accessPackageAssignmentState | null;
|
|
6097
|
+
status: string | null;
|
|
6098
|
+
@references accessPackage: accessPackage | null;
|
|
6099
|
+
@references assignmentPolicy: accessPackageAssignmentPolicy | null;
|
|
6100
|
+
@references target: accessPackageSubject | null;
|
|
6101
|
+
}
|
|
6102
|
+
|
|
6103
|
+
@entity model accessPackageAssignmentPolicy extends entity {
|
|
6104
|
+
allowedTargetScope: allowedTargetScope | null;
|
|
6105
|
+
automaticRequestSettings: accessPackageAutomaticRequestSettings | null;
|
|
6106
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6107
|
+
description: string | null;
|
|
6108
|
+
displayName: string | null;
|
|
6109
|
+
expiration: expirationPattern | null;
|
|
6110
|
+
modifiedDateTime: offsetDateTime | null;
|
|
6111
|
+
notificationSettings: accessPackageNotificationSettings | null;
|
|
6112
|
+
requestApprovalSettings: accessPackageAssignmentApprovalSettings | null;
|
|
6113
|
+
requestorSettings: accessPackageAssignmentRequestorSettings | null;
|
|
6114
|
+
reviewSettings: accessPackageAssignmentReviewSettings | null;
|
|
6115
|
+
specificAllowedTargets: subjectSet[] | null;
|
|
6116
|
+
@references accessPackage: accessPackage | null;
|
|
6117
|
+
@references catalog: accessPackageCatalog | null;
|
|
6118
|
+
@references customExtensionStageSettings: customExtensionStageSetting[];
|
|
6119
|
+
@contains questions: accessPackageQuestion[];
|
|
6120
|
+
}
|
|
6121
|
+
|
|
6122
|
+
@entity model accessPackageAssignmentRequest extends entity {
|
|
6123
|
+
answers: accessPackageAnswer[] | null;
|
|
6124
|
+
completedDateTime: offsetDateTime | null;
|
|
6125
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6126
|
+
customExtensionCalloutInstances: customExtensionCalloutInstance[] | null;
|
|
6127
|
+
justification: string | null;
|
|
6128
|
+
requestType: accessPackageRequestType | null;
|
|
6129
|
+
schedule: entitlementManagementSchedule | null;
|
|
6130
|
+
state: accessPackageRequestState | null;
|
|
6131
|
+
status: string | null;
|
|
6132
|
+
@references accessPackage: accessPackage | null;
|
|
6133
|
+
@references assignment: accessPackageAssignment | null;
|
|
6134
|
+
@references requestor: accessPackageSubject | null;
|
|
6135
|
+
}
|
|
6136
|
+
|
|
6137
|
+
@entity model accessPackageAssignmentRequestWorkflowExtension extends customCalloutExtension {
|
|
6138
|
+
callbackConfiguration: customExtensionCallbackConfiguration | null;
|
|
6139
|
+
createdBy: string | null;
|
|
6140
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6141
|
+
lastModifiedBy: string | null;
|
|
6142
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
6143
|
+
}
|
|
6144
|
+
|
|
6145
|
+
@entity model accessPackageAssignmentWorkflowExtension extends customCalloutExtension {
|
|
6146
|
+
callbackConfiguration: customExtensionCallbackConfiguration | null;
|
|
6147
|
+
createdBy: string | null;
|
|
6148
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6149
|
+
lastModifiedBy: string | null;
|
|
6150
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
6151
|
+
}
|
|
6152
|
+
|
|
6153
|
+
@entity model accessPackageCatalog extends entity {
|
|
6154
|
+
catalogType: accessPackageCatalogType | null;
|
|
6155
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6156
|
+
description: string | null;
|
|
6157
|
+
displayName: string | null;
|
|
6158
|
+
isExternallyVisible: boolean | null;
|
|
6159
|
+
modifiedDateTime: offsetDateTime | null;
|
|
6160
|
+
state: accessPackageCatalogState | null;
|
|
6161
|
+
@contains accessPackages: accessPackage[];
|
|
6162
|
+
@contains customWorkflowExtensions: customCalloutExtension[];
|
|
6163
|
+
@contains resourceRoles: accessPackageResourceRole[];
|
|
6164
|
+
@contains resources: accessPackageResource[];
|
|
6165
|
+
@contains resourceScopes: accessPackageResourceScope[];
|
|
6166
|
+
}
|
|
6167
|
+
|
|
6168
|
+
@entity model accessPackageMultipleChoiceQuestion extends accessPackageQuestion {
|
|
6169
|
+
choices: accessPackageAnswerChoice[] | null;
|
|
6170
|
+
isMultipleSelectionAllowed: boolean | null;
|
|
6171
|
+
}
|
|
6172
|
+
|
|
6173
|
+
@abstract
|
|
6174
|
+
@entity model accessPackageQuestion extends entity {
|
|
6175
|
+
isAnswerEditable: boolean | null;
|
|
6176
|
+
isRequired: boolean | null;
|
|
6177
|
+
localizations: accessPackageLocalizedText[] | null;
|
|
6178
|
+
sequence: int32 | null;
|
|
6179
|
+
text: string | null;
|
|
6180
|
+
}
|
|
6181
|
+
|
|
6182
|
+
@entity model accessPackageResource extends entity {
|
|
6183
|
+
attributes: accessPackageResourceAttribute[] | null;
|
|
6184
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6185
|
+
description: string | null;
|
|
6186
|
+
displayName: string | null;
|
|
6187
|
+
modifiedDateTime: offsetDateTime | null;
|
|
6188
|
+
originId: string | null;
|
|
6189
|
+
originSystem: string | null;
|
|
6190
|
+
@references environment: accessPackageResourceEnvironment | null;
|
|
6191
|
+
@contains roles: accessPackageResourceRole[];
|
|
6192
|
+
@contains scopes: accessPackageResourceScope[];
|
|
6193
|
+
}
|
|
6194
|
+
|
|
6195
|
+
@entity model accessPackageResourceEnvironment extends entity {
|
|
6196
|
+
connectionInfo: connectionInfo | null;
|
|
6197
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6198
|
+
description: string | null;
|
|
6199
|
+
displayName: string | null;
|
|
6200
|
+
isDefaultEnvironment: boolean | null;
|
|
6201
|
+
modifiedDateTime: offsetDateTime | null;
|
|
6202
|
+
originId: string | null;
|
|
6203
|
+
originSystem: string | null;
|
|
6204
|
+
@contains resources: accessPackageResource[];
|
|
6205
|
+
}
|
|
6206
|
+
|
|
6207
|
+
@entity model accessPackageResourceRequest extends entity {
|
|
6208
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6209
|
+
requestType: accessPackageRequestType | null;
|
|
6210
|
+
state: accessPackageRequestState | null;
|
|
6211
|
+
@contains catalog: accessPackageCatalog | null;
|
|
6212
|
+
@contains resource: accessPackageResource | null;
|
|
6213
|
+
}
|
|
6214
|
+
|
|
6215
|
+
@entity model accessPackageResourceRole extends entity {
|
|
6216
|
+
description: string | null;
|
|
6217
|
+
displayName: string | null;
|
|
6218
|
+
originId: string | null;
|
|
6219
|
+
originSystem: string | null;
|
|
6220
|
+
@contains resource: accessPackageResource | null;
|
|
6221
|
+
}
|
|
6222
|
+
|
|
6223
|
+
@entity model accessPackageResourceRoleScope extends entity {
|
|
6224
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6225
|
+
@contains role: accessPackageResourceRole | null;
|
|
6226
|
+
@contains scope: accessPackageResourceScope | null;
|
|
6227
|
+
}
|
|
6228
|
+
|
|
6229
|
+
@entity model accessPackageResourceScope extends entity {
|
|
6230
|
+
description: string | null;
|
|
6231
|
+
displayName: string | null;
|
|
6232
|
+
isRootScope: boolean | null;
|
|
6233
|
+
originId: string | null;
|
|
6234
|
+
originSystem: string | null;
|
|
6235
|
+
@contains resource: accessPackageResource | null;
|
|
6236
|
+
}
|
|
6237
|
+
|
|
6238
|
+
@entity model accessPackageSubject extends entity {
|
|
6239
|
+
displayName: string | null;
|
|
6240
|
+
email: string | null;
|
|
6241
|
+
objectId: string | null;
|
|
6242
|
+
onPremisesSecurityIdentifier: string | null;
|
|
6243
|
+
principalName: string | null;
|
|
6244
|
+
subjectType: accessPackageSubjectType | null;
|
|
6245
|
+
@references connectedOrganization: connectedOrganization | null;
|
|
6246
|
+
}
|
|
6247
|
+
|
|
6248
|
+
@entity model accessPackageTextInputQuestion extends accessPackageQuestion {
|
|
6249
|
+
isSingleLineQuestion: boolean | null;
|
|
6250
|
+
regexPattern: string | null;
|
|
6251
|
+
}
|
|
6252
|
+
|
|
6253
|
+
@entity model accessReviewHistoryDefinition extends entity {
|
|
6254
|
+
createdBy: userIdentity;
|
|
6255
|
+
@computed createdDateTime: offsetDateTime;
|
|
6256
|
+
decisions: accessReviewHistoryDecisionFilter[] | null;
|
|
6257
|
+
displayName: string;
|
|
6258
|
+
reviewHistoryPeriodEndDateTime: offsetDateTime;
|
|
6259
|
+
reviewHistoryPeriodStartDateTime: offsetDateTime;
|
|
6260
|
+
scheduleSettings: accessReviewHistoryScheduleSettings | null;
|
|
6261
|
+
scopes: accessReviewScope[];
|
|
6262
|
+
status: accessReviewHistoryStatus | null;
|
|
6263
|
+
@contains instances: accessReviewHistoryInstance[];
|
|
6264
|
+
}
|
|
6265
|
+
|
|
6266
|
+
@entity model accessReviewHistoryInstance extends entity {
|
|
6267
|
+
downloadUri: string | null;
|
|
6268
|
+
expirationDateTime: offsetDateTime;
|
|
6269
|
+
fulfilledDateTime: offsetDateTime | null;
|
|
6270
|
+
reviewHistoryPeriodEndDateTime: offsetDateTime | null;
|
|
6271
|
+
reviewHistoryPeriodStartDateTime: offsetDateTime | null;
|
|
6272
|
+
runDateTime: offsetDateTime;
|
|
6273
|
+
status: accessReviewHistoryStatus | null;
|
|
6274
|
+
}
|
|
6275
|
+
|
|
6276
|
+
@entity model accessReviewInstance extends entity {
|
|
6277
|
+
endDateTime: offsetDateTime | null;
|
|
6278
|
+
fallbackReviewers: accessReviewReviewerScope[] | null;
|
|
6279
|
+
reviewers: accessReviewReviewerScope[] | null;
|
|
6280
|
+
scope: accessReviewScope | null;
|
|
6281
|
+
startDateTime: offsetDateTime | null;
|
|
6282
|
+
status: string | null;
|
|
6283
|
+
@contains contactedReviewers: accessReviewReviewer[];
|
|
6284
|
+
@contains decisions: accessReviewInstanceDecisionItem[];
|
|
6285
|
+
@contains stages: accessReviewStage[];
|
|
6286
|
+
}
|
|
6287
|
+
|
|
6288
|
+
@entity model accessReviewInstanceDecisionItem extends entity {
|
|
6289
|
+
accessReviewId: string;
|
|
6290
|
+
appliedBy: userIdentity | null;
|
|
6291
|
+
appliedDateTime: offsetDateTime | null;
|
|
6292
|
+
applyResult: string | null;
|
|
6293
|
+
decision: string | null;
|
|
6294
|
+
justification: string | null;
|
|
6295
|
+
principal: identity | null;
|
|
6296
|
+
principalLink: string | null;
|
|
6297
|
+
recommendation: string | null;
|
|
6298
|
+
resource: accessReviewInstanceDecisionItemResource | null;
|
|
6299
|
+
resourceLink: string | null;
|
|
6300
|
+
reviewedBy: userIdentity | null;
|
|
6301
|
+
reviewedDateTime: offsetDateTime | null;
|
|
6302
|
+
@contains insights: governanceInsight[];
|
|
6303
|
+
}
|
|
6304
|
+
|
|
6305
|
+
@entity model accessReviewReviewer extends entity {
|
|
6306
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6307
|
+
displayName: string | null;
|
|
6308
|
+
userPrincipalName: string | null;
|
|
5142
6309
|
}
|
|
5143
6310
|
|
|
5144
|
-
@entity model
|
|
5145
|
-
|
|
5146
|
-
|
|
5147
|
-
|
|
5148
|
-
|
|
6311
|
+
@entity model accessReviewScheduleDefinition extends entity {
|
|
6312
|
+
additionalNotificationRecipients: accessReviewNotificationRecipientItem[] | null;
|
|
6313
|
+
createdBy: userIdentity | null;
|
|
6314
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6315
|
+
descriptionForAdmins: string | null;
|
|
6316
|
+
descriptionForReviewers: string | null;
|
|
6317
|
+
displayName: string | null;
|
|
6318
|
+
fallbackReviewers: accessReviewReviewerScope[] | null;
|
|
6319
|
+
instanceEnumerationScope: accessReviewScope | null;
|
|
6320
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
6321
|
+
reviewers: accessReviewReviewerScope[] | null;
|
|
6322
|
+
scope: accessReviewScope | null;
|
|
6323
|
+
settings: accessReviewScheduleSettings | null;
|
|
6324
|
+
stageSettings: accessReviewStageSettings[] | null;
|
|
6325
|
+
status: string | null;
|
|
6326
|
+
@contains instances: accessReviewInstance[];
|
|
6327
|
+
}
|
|
6328
|
+
|
|
6329
|
+
@entity model accessReviewSet extends entity {
|
|
6330
|
+
@contains definitions: accessReviewScheduleDefinition[];
|
|
6331
|
+
@contains historyDefinitions: accessReviewHistoryDefinition[];
|
|
6332
|
+
}
|
|
6333
|
+
|
|
6334
|
+
@entity model accessReviewStage extends entity {
|
|
6335
|
+
endDateTime: offsetDateTime | null;
|
|
6336
|
+
fallbackReviewers: accessReviewReviewerScope[] | null;
|
|
6337
|
+
reviewers: accessReviewReviewerScope[] | null;
|
|
6338
|
+
startDateTime: offsetDateTime | null;
|
|
6339
|
+
status: string | null;
|
|
6340
|
+
@contains decisions: accessReviewInstanceDecisionItem[];
|
|
5149
6341
|
}
|
|
5150
6342
|
|
|
5151
6343
|
@entity model activityBasedTimeoutPolicy extends stsPolicy {
|
|
@@ -5162,6 +6354,15 @@ namespace reference.`microsoft.graph` {
|
|
|
5162
6354
|
@contains sharepoint: sharepoint | null;
|
|
5163
6355
|
}
|
|
5164
6356
|
|
|
6357
|
+
@entity model adminConsentRequestPolicy extends entity {
|
|
6358
|
+
isEnabled: boolean;
|
|
6359
|
+
notifyReviewers: boolean;
|
|
6360
|
+
remindersEnabled: boolean;
|
|
6361
|
+
requestDurationInDays: int32;
|
|
6362
|
+
reviewers: accessReviewReviewerScope[] | null;
|
|
6363
|
+
version: int32;
|
|
6364
|
+
}
|
|
6365
|
+
|
|
5165
6366
|
@open
|
|
5166
6367
|
@entity model administrativeUnit extends directoryObject {
|
|
5167
6368
|
description: string | null;
|
|
@@ -5175,6 +6376,28 @@ namespace reference.`microsoft.graph` {
|
|
|
5175
6376
|
@contains scopedRoleMembers: scopedRoleMembership[];
|
|
5176
6377
|
}
|
|
5177
6378
|
|
|
6379
|
+
@open
|
|
6380
|
+
@entity model agentIdentity extends servicePrincipal {
|
|
6381
|
+
agentIdentityBlueprintId: string;
|
|
6382
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6383
|
+
@references sponsors: directoryObject[];
|
|
6384
|
+
}
|
|
6385
|
+
|
|
6386
|
+
@open
|
|
6387
|
+
@entity model agentIdentityBlueprint extends application {
|
|
6388
|
+
@contains inheritablePermissions: inheritablePermission[];
|
|
6389
|
+
@references sponsors: directoryObject[];
|
|
6390
|
+
}
|
|
6391
|
+
|
|
6392
|
+
@open
|
|
6393
|
+
@entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
|
|
6394
|
+
@references sponsors: directoryObject[];
|
|
6395
|
+
}
|
|
6396
|
+
|
|
6397
|
+
@open
|
|
6398
|
+
@entity model agentUser extends user {
|
|
6399
|
+
}
|
|
6400
|
+
|
|
5178
6401
|
@entity model agreement extends entity {
|
|
5179
6402
|
displayName: string | null;
|
|
5180
6403
|
isPerDeviceAcceptanceRequired: boolean | null;
|
|
@@ -5867,6 +7090,17 @@ namespace reference.`microsoft.graph` {
|
|
|
5867
7090
|
@contains teamsApps: teamsApp[];
|
|
5868
7091
|
}
|
|
5869
7092
|
|
|
7093
|
+
@entity model appConsentApprovalRoute extends entity {
|
|
7094
|
+
@contains appConsentRequests: appConsentRequest[];
|
|
7095
|
+
}
|
|
7096
|
+
|
|
7097
|
+
@entity model appConsentRequest extends entity {
|
|
7098
|
+
appDisplayName: string | null;
|
|
7099
|
+
appId: string;
|
|
7100
|
+
pendingScopes: appConsentRequestScope[] | null;
|
|
7101
|
+
@contains userConsentRequests: userConsentRequest[];
|
|
7102
|
+
}
|
|
7103
|
+
|
|
5870
7104
|
/**
|
|
5871
7105
|
* Apple device features configuration profile.
|
|
5872
7106
|
*/
|
|
@@ -5916,6 +7150,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5916
7150
|
appId: string | null;
|
|
5917
7151
|
applicationTemplateId: string | null;
|
|
5918
7152
|
appRoles: appRole[];
|
|
7153
|
+
createdByAppId: string | null;
|
|
5919
7154
|
@computed createdDateTime: offsetDateTime | null;
|
|
5920
7155
|
defaultRedirectUri: string | null;
|
|
5921
7156
|
description: string | null;
|
|
@@ -5925,9 +7160,11 @@ namespace reference.`microsoft.graph` {
|
|
|
5925
7160
|
identifierUris: string[];
|
|
5926
7161
|
info: informationalUrl | null;
|
|
5927
7162
|
isDeviceOnlyAuthSupported: boolean | null;
|
|
7163
|
+
isDisabled: boolean | null;
|
|
5928
7164
|
isFallbackPublicClient: boolean | null;
|
|
5929
7165
|
keyCredentials: keyCredential[];
|
|
5930
7166
|
logo: stream;
|
|
7167
|
+
managerApplications: guid;
|
|
5931
7168
|
notes: string | null;
|
|
5932
7169
|
oauth2RequirePostResponse: boolean;
|
|
5933
7170
|
optionalClaims: optionalClaims | null;
|
|
@@ -6004,6 +7241,24 @@ namespace reference.`microsoft.graph` {
|
|
|
6004
7241
|
resourceId: guid | null;
|
|
6005
7242
|
}
|
|
6006
7243
|
|
|
7244
|
+
@entity model approval extends entity {
|
|
7245
|
+
@contains stages: approvalStage[];
|
|
7246
|
+
}
|
|
7247
|
+
|
|
7248
|
+
@entity model approvalStage extends entity {
|
|
7249
|
+
assignedToMe: boolean | null;
|
|
7250
|
+
displayName: string | null;
|
|
7251
|
+
justification: string | null;
|
|
7252
|
+
reviewedBy: identity | null;
|
|
7253
|
+
reviewedDateTime: offsetDateTime | null;
|
|
7254
|
+
reviewResult: string | null;
|
|
7255
|
+
status: string | null;
|
|
7256
|
+
}
|
|
7257
|
+
|
|
7258
|
+
@entity model approvedClientApp extends entity {
|
|
7259
|
+
displayName: string | null;
|
|
7260
|
+
}
|
|
7261
|
+
|
|
6007
7262
|
@entity model appScope extends entity {
|
|
6008
7263
|
displayName: string | null;
|
|
6009
7264
|
type: string | null;
|
|
@@ -6094,10 +7349,42 @@ namespace reference.`microsoft.graph` {
|
|
|
6094
7349
|
@contains signIns: signIn[];
|
|
6095
7350
|
}
|
|
6096
7351
|
|
|
7352
|
+
@abstract
|
|
7353
|
+
@entity model authenticationCombinationConfiguration extends entity {
|
|
7354
|
+
appliesToCombinations: authenticationMethodModes[];
|
|
7355
|
+
}
|
|
7356
|
+
|
|
7357
|
+
@entity model authenticationContextClassReference extends entity {
|
|
7358
|
+
description: string | null;
|
|
7359
|
+
displayName: string | null;
|
|
7360
|
+
isAvailable: boolean | null;
|
|
7361
|
+
}
|
|
7362
|
+
|
|
7363
|
+
@entity model authenticationMethodModeDetail extends entity {
|
|
7364
|
+
authenticationMethod: baseAuthenticationMethod;
|
|
7365
|
+
displayName: string;
|
|
7366
|
+
}
|
|
7367
|
+
|
|
6097
7368
|
@entity model authenticationMethodsRoot extends entity {
|
|
6098
7369
|
@contains userRegistrationDetails: userRegistrationDetails[];
|
|
6099
7370
|
}
|
|
6100
7371
|
|
|
7372
|
+
@entity model authenticationMethodTarget extends entity {
|
|
7373
|
+
isRegistrationRequired: boolean;
|
|
7374
|
+
targetType: authenticationMethodTargetType;
|
|
7375
|
+
}
|
|
7376
|
+
|
|
7377
|
+
@entity model authenticationStrengthPolicy extends entity {
|
|
7378
|
+
allowedCombinations: authenticationMethodModes[];
|
|
7379
|
+
@computed createdDateTime: offsetDateTime;
|
|
7380
|
+
description: string | null;
|
|
7381
|
+
displayName: string;
|
|
7382
|
+
modifiedDateTime: offsetDateTime;
|
|
7383
|
+
policyType: authenticationStrengthPolicyType;
|
|
7384
|
+
requirementsSatisfied: authenticationStrengthRequirements;
|
|
7385
|
+
@contains combinationConfigurations: authenticationCombinationConfiguration[];
|
|
7386
|
+
}
|
|
7387
|
+
|
|
6101
7388
|
@entity model authorizationPolicy extends policyBase {
|
|
6102
7389
|
allowedToSignUpEmailBasedSubscriptions: boolean;
|
|
6103
7390
|
allowedToUseSSPR: boolean;
|
|
@@ -6412,6 +7699,44 @@ namespace reference.`microsoft.graph` {
|
|
|
6412
7699
|
partnerState: deviceManagementPartnerTenantState;
|
|
6413
7700
|
}
|
|
6414
7701
|
|
|
7702
|
+
@entity model conditionalAccessPolicy extends policyDeletableItem {
|
|
7703
|
+
conditions: conditionalAccessConditionSet;
|
|
7704
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
7705
|
+
description: string | null;
|
|
7706
|
+
displayName: string;
|
|
7707
|
+
grantControls: conditionalAccessGrantControls | null;
|
|
7708
|
+
@computed @key id: string;
|
|
7709
|
+
modifiedDateTime: offsetDateTime | null;
|
|
7710
|
+
sessionControls: conditionalAccessSessionControls | null;
|
|
7711
|
+
state: conditionalAccessPolicyState;
|
|
7712
|
+
templateId: string | null;
|
|
7713
|
+
}
|
|
7714
|
+
|
|
7715
|
+
@entity model conditionalAccessRoot extends entity {
|
|
7716
|
+
@contains authenticationContextClassReferences: authenticationContextClassReference[];
|
|
7717
|
+
@contains namedLocations: namedLocation[];
|
|
7718
|
+
@contains policies: conditionalAccessPolicy[];
|
|
7719
|
+
@contains templates: conditionalAccessTemplate[];
|
|
7720
|
+
}
|
|
7721
|
+
|
|
7722
|
+
@entity model conditionalAccessTemplate extends entity {
|
|
7723
|
+
description: string;
|
|
7724
|
+
details: conditionalAccessPolicyDetail;
|
|
7725
|
+
name: string;
|
|
7726
|
+
scenarios: templateScenarios;
|
|
7727
|
+
}
|
|
7728
|
+
|
|
7729
|
+
@entity model connectedOrganization extends entity {
|
|
7730
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
7731
|
+
description: string | null;
|
|
7732
|
+
displayName: string | null;
|
|
7733
|
+
identitySources: identitySource[] | null;
|
|
7734
|
+
modifiedDateTime: offsetDateTime | null;
|
|
7735
|
+
state: connectedOrganizationState | null;
|
|
7736
|
+
@contains externalSponsors: directoryObject[];
|
|
7737
|
+
@contains internalSponsors: directoryObject[];
|
|
7738
|
+
}
|
|
7739
|
+
|
|
6415
7740
|
@open
|
|
6416
7741
|
@entity model contact extends outlookItem {
|
|
6417
7742
|
assistantName: string | null;
|
|
@@ -6520,6 +7845,12 @@ namespace reference.`microsoft.graph` {
|
|
|
6520
7845
|
@contains posts: post[];
|
|
6521
7846
|
}
|
|
6522
7847
|
|
|
7848
|
+
@entity model countryNamedLocation extends namedLocation {
|
|
7849
|
+
countriesAndRegions: string[];
|
|
7850
|
+
countryLookupMethod: countryLookupMethodType | null;
|
|
7851
|
+
includeUnknownCountriesAndRegions: boolean;
|
|
7852
|
+
}
|
|
7853
|
+
|
|
6523
7854
|
@entity model crossTenantAccessPolicy extends policyBase {
|
|
6524
7855
|
@contains default: crossTenantAccessPolicyConfigurationDefault | null;
|
|
6525
7856
|
@contains partners: crossTenantAccessPolicyConfigurationPartner[];
|
|
@@ -6554,6 +7885,20 @@ namespace reference.`microsoft.graph` {
|
|
|
6554
7885
|
userSyncInbound: crossTenantUserSyncInbound | null;
|
|
6555
7886
|
}
|
|
6556
7887
|
|
|
7888
|
+
@abstract
|
|
7889
|
+
@entity model customCalloutExtension extends entity {
|
|
7890
|
+
authenticationConfiguration: customExtensionAuthenticationConfiguration | null;
|
|
7891
|
+
clientConfiguration: customExtensionClientConfiguration | null;
|
|
7892
|
+
description: string | null;
|
|
7893
|
+
displayName: string | null;
|
|
7894
|
+
endpointConfiguration: customExtensionEndpointConfiguration | null;
|
|
7895
|
+
}
|
|
7896
|
+
|
|
7897
|
+
@entity model customExtensionStageSetting extends entity {
|
|
7898
|
+
stage: accessPackageCustomExtensionStage;
|
|
7899
|
+
@references customExtension: customCalloutExtension | null;
|
|
7900
|
+
}
|
|
7901
|
+
|
|
6557
7902
|
@entity model customSecurityAttributeDefinition extends entity {
|
|
6558
7903
|
attributeSet: string;
|
|
6559
7904
|
description: string | null;
|
|
@@ -8385,6 +9730,26 @@ namespace reference.`microsoft.graph` {
|
|
|
8385
9730
|
uploadDateTime: offsetDateTime;
|
|
8386
9731
|
}
|
|
8387
9732
|
|
|
9733
|
+
@entity model entitlementManagement extends entity {
|
|
9734
|
+
@contains accessPackageAssignmentApprovals: approval[];
|
|
9735
|
+
@contains accessPackages: accessPackage[];
|
|
9736
|
+
@contains assignmentPolicies: accessPackageAssignmentPolicy[];
|
|
9737
|
+
@contains assignmentRequests: accessPackageAssignmentRequest[];
|
|
9738
|
+
@contains assignments: accessPackageAssignment[];
|
|
9739
|
+
@contains catalogs: accessPackageCatalog[];
|
|
9740
|
+
@contains connectedOrganizations: connectedOrganization[];
|
|
9741
|
+
@contains resourceEnvironments: accessPackageResourceEnvironment[];
|
|
9742
|
+
@contains resourceRequests: accessPackageResourceRequest[];
|
|
9743
|
+
@contains resourceRoleScopes: accessPackageResourceRoleScope[];
|
|
9744
|
+
@contains resources: accessPackageResource[];
|
|
9745
|
+
@contains settings: entitlementManagementSettings | null;
|
|
9746
|
+
}
|
|
9747
|
+
|
|
9748
|
+
@entity model entitlementManagementSettings extends entity {
|
|
9749
|
+
durationUntilExternalUserDeletedAfterBlocked: duration | null;
|
|
9750
|
+
externalUserLifecycleAction: accessPackageExternalUserLifecycleAction | null;
|
|
9751
|
+
}
|
|
9752
|
+
|
|
8388
9753
|
@abstract
|
|
8389
9754
|
@entity model entity {
|
|
8390
9755
|
@computed @key id: string;
|
|
@@ -8481,6 +9846,15 @@ namespace reference.`microsoft.graph` {
|
|
|
8481
9846
|
@entity model externalDomainName extends entity {
|
|
8482
9847
|
}
|
|
8483
9848
|
|
|
9849
|
+
@entity model featureRolloutPolicy extends entity {
|
|
9850
|
+
description: string | null;
|
|
9851
|
+
displayName: string;
|
|
9852
|
+
feature: stagedFeatureName;
|
|
9853
|
+
isAppliedToOrganization: boolean;
|
|
9854
|
+
isEnabled: boolean;
|
|
9855
|
+
@contains appliesTo: directoryObject[];
|
|
9856
|
+
}
|
|
9857
|
+
|
|
8484
9858
|
@entity model federatedIdentityCredential extends entity {
|
|
8485
9859
|
audiences: string[];
|
|
8486
9860
|
description: string | null;
|
|
@@ -8489,6 +9863,10 @@ namespace reference.`microsoft.graph` {
|
|
|
8489
9863
|
subject: string;
|
|
8490
9864
|
}
|
|
8491
9865
|
|
|
9866
|
+
@entity model fido2CombinationConfiguration extends authenticationCombinationConfiguration {
|
|
9867
|
+
allowedAAGUIDs: string[];
|
|
9868
|
+
}
|
|
9869
|
+
|
|
8492
9870
|
@open
|
|
8493
9871
|
@entity model fieldValueSet extends entity {
|
|
8494
9872
|
}
|
|
@@ -8559,6 +9937,11 @@ namespace reference.`microsoft.graph` {
|
|
|
8559
9937
|
supportedAttributeTypes: attributeType[];
|
|
8560
9938
|
}
|
|
8561
9939
|
|
|
9940
|
+
@abstract
|
|
9941
|
+
@entity model governanceInsight extends entity {
|
|
9942
|
+
insightCreatedDateTime: offsetDateTime | null;
|
|
9943
|
+
}
|
|
9944
|
+
|
|
8562
9945
|
@open
|
|
8563
9946
|
@entity model group extends directoryObject {
|
|
8564
9947
|
allowExternalSenders: boolean | null;
|
|
@@ -8574,6 +9957,7 @@ namespace reference.`microsoft.graph` {
|
|
|
8574
9957
|
hasMembersWithLicenseErrors: boolean | null;
|
|
8575
9958
|
hideFromAddressLists: boolean | null;
|
|
8576
9959
|
hideFromOutlookClients: boolean | null;
|
|
9960
|
+
infoCatalogs: string[];
|
|
8577
9961
|
isArchived: boolean | null;
|
|
8578
9962
|
isAssignableToRole: boolean | null;
|
|
8579
9963
|
isManagementRestricted: boolean | null;
|
|
@@ -8585,6 +9969,7 @@ namespace reference.`microsoft.graph` {
|
|
|
8585
9969
|
membershipRule: string | null;
|
|
8586
9970
|
membershipRuleProcessingState: string | null;
|
|
8587
9971
|
onPremisesDomainName: string | null;
|
|
9972
|
+
onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
|
|
8588
9973
|
onPremisesLastSyncDateTime: offsetDateTime | null;
|
|
8589
9974
|
onPremisesNetBiosName: string | null;
|
|
8590
9975
|
onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
|
|
@@ -8603,6 +9988,7 @@ namespace reference.`microsoft.graph` {
|
|
|
8603
9988
|
uniqueName: string | null;
|
|
8604
9989
|
unseenCount: int32 | null;
|
|
8605
9990
|
visibility: string | null;
|
|
9991
|
+
welcomeMessageEnabled: boolean | null;
|
|
8606
9992
|
@contains acceptedSenders: directoryObject[];
|
|
8607
9993
|
@contains appRoleAssignments: appRoleAssignment[];
|
|
8608
9994
|
@contains calendar: calendar | null;
|
|
@@ -8622,6 +10008,7 @@ namespace reference.`microsoft.graph` {
|
|
|
8622
10008
|
@contains permissionGrants: resourceSpecificPermissionGrant[];
|
|
8623
10009
|
@contains photo: profilePhoto | null;
|
|
8624
10010
|
@contains photos: profilePhoto[];
|
|
10011
|
+
@contains planner: plannerGroup | null;
|
|
8625
10012
|
@contains rejectedSenders: directoryObject[];
|
|
8626
10013
|
@contains settings: groupSetting[];
|
|
8627
10014
|
@contains sites: site[];
|
|
@@ -8666,9 +10053,13 @@ namespace reference.`microsoft.graph` {
|
|
|
8666
10053
|
}
|
|
8667
10054
|
|
|
8668
10055
|
@entity model identityContainer extends MsGraph.SharedModels.entity {
|
|
10056
|
+
@contains conditionalAccess: conditionalAccessRoot | null;
|
|
8669
10057
|
}
|
|
8670
10058
|
|
|
8671
10059
|
@entity model identityGovernance extends MsGraph.SharedModels.entity {
|
|
10060
|
+
@contains accessReviews: accessReviewSet | null;
|
|
10061
|
+
@contains appConsent: appConsentApprovalRoute | null;
|
|
10062
|
+
@contains entitlementManagement: entitlementManagement | null;
|
|
8672
10063
|
@contains privilegedAccess: privilegedAccessRoot | null;
|
|
8673
10064
|
@contains termsOfUse: termsOfUseContainer | null;
|
|
8674
10065
|
}
|
|
@@ -8685,6 +10076,10 @@ namespace reference.`microsoft.graph` {
|
|
|
8685
10076
|
displayName: string | null;
|
|
8686
10077
|
}
|
|
8687
10078
|
|
|
10079
|
+
@entity model identitySecurityDefaultsEnforcementPolicy extends policyBase {
|
|
10080
|
+
isEnabled: boolean;
|
|
10081
|
+
}
|
|
10082
|
+
|
|
8688
10083
|
/**
|
|
8689
10084
|
* Imported windows autopilot devices.
|
|
8690
10085
|
*/
|
|
@@ -8750,6 +10145,11 @@ namespace reference.`microsoft.graph` {
|
|
|
8750
10145
|
@contains bitlocker: bitlocker | null;
|
|
8751
10146
|
}
|
|
8752
10147
|
|
|
10148
|
+
@entity model inheritablePermission extends MsGraph.SharedModels.entity {
|
|
10149
|
+
inheritableScopes: inheritableScopes | null;
|
|
10150
|
+
@computed @key resourceAppId: string;
|
|
10151
|
+
}
|
|
10152
|
+
|
|
8753
10153
|
@entity model insightsSettings extends entity {
|
|
8754
10154
|
disabledForGroup: string | null;
|
|
8755
10155
|
isEnabledInOrganization: boolean | null;
|
|
@@ -8815,7 +10215,7 @@ namespace reference.`microsoft.graph` {
|
|
|
8815
10215
|
*/
|
|
8816
10216
|
passcodeBlockSimple: boolean;
|
|
8817
10217
|
/**
|
|
8818
|
-
* Number of days before the passcode expires. Valid values 1 to 65535
|
|
10218
|
+
* Number of days before the passcode expires. Starting January 2026 (Intune release version: 2601), the maximum expiration days will be limited to 730 days. Any setting above 730 days will be default to 730 days. Valid values 1 to 65535
|
|
8819
10219
|
*/
|
|
8820
10220
|
passcodeExpirationDays: int32 | null;
|
|
8821
10221
|
/**
|
|
@@ -9711,6 +11111,11 @@ namespace reference.`microsoft.graph` {
|
|
|
9711
11111
|
@entity model iosVppEBookAssignment extends managedEBookAssignment {
|
|
9712
11112
|
}
|
|
9713
11113
|
|
|
11114
|
+
@entity model ipNamedLocation extends namedLocation {
|
|
11115
|
+
ipRanges: ipRange[];
|
|
11116
|
+
isTrusted: boolean;
|
|
11117
|
+
}
|
|
11118
|
+
|
|
9714
11119
|
@open
|
|
9715
11120
|
@entity model itemActivity extends entity {
|
|
9716
11121
|
access: accessAction | null;
|
|
@@ -9825,71 +11230,71 @@ namespace reference.`microsoft.graph` {
|
|
|
9825
11230
|
*/
|
|
9826
11231
|
@entity model macOSCompliancePolicy extends deviceCompliancePolicy {
|
|
9827
11232
|
/**
|
|
9828
|
-
*
|
|
11233
|
+
* Specifies whether Mobile Threat Defense (MTD) must be enabled. When set to true, the device is marked noncompliant if MTD isn't enabled or doesn't report a threat level. When false, threat protection level requirements aren't enforced. Default is false.
|
|
9829
11234
|
*/
|
|
9830
11235
|
deviceThreatProtectionEnabled: boolean;
|
|
9831
11236
|
/**
|
|
9832
|
-
*
|
|
11237
|
+
* Specifies the Mobile Threat Defense risk level threshold used to report noncompliance (for example, secured, medium, or high). When set to a value other than unavailable, the device is marked noncompliant if the reported risk level doesn't meet the configured requirement. Default is unavailable.
|
|
9833
11238
|
*/
|
|
9834
11239
|
deviceThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
|
|
9835
11240
|
/**
|
|
9836
|
-
*
|
|
11241
|
+
* Specifies whether Block all incoming connections must be enabled. When set to true, the device is marked noncompliant if the setting is disabled. Default is false.
|
|
9837
11242
|
*/
|
|
9838
11243
|
firewallBlockAllIncoming: boolean;
|
|
9839
11244
|
/**
|
|
9840
|
-
*
|
|
11245
|
+
* Specifies whether the macOS application firewall must be enabled. When set to true, the device is marked noncompliant if the firewall is disabled. Default is false.
|
|
9841
11246
|
*/
|
|
9842
11247
|
firewallEnabled: boolean;
|
|
9843
11248
|
/**
|
|
9844
|
-
*
|
|
11249
|
+
* Specifies whether Enable stealth mode must be enabled. When set to true, the device is marked noncompliant if the setting is disabled. Default is false.
|
|
9845
11250
|
*/
|
|
9846
11251
|
firewallEnableStealthMode: boolean;
|
|
9847
11252
|
/**
|
|
9848
|
-
*
|
|
11253
|
+
* Specifies the maximum allowed macOS version. When set, the device is marked noncompliant if its OS version is higher than this value. Default is null, when set to default it is not evaluated.
|
|
9849
11254
|
*/
|
|
9850
11255
|
osMaximumVersion: string | null;
|
|
9851
11256
|
/**
|
|
9852
|
-
*
|
|
11257
|
+
* Specifies the minimum allowed macOS version. When set, the device is marked noncompliant if its OS version is lower than this value. Default is null, when set to default it is not evaluated.
|
|
9853
11258
|
*/
|
|
9854
11259
|
osMinimumVersion: string | null;
|
|
9855
11260
|
/**
|
|
9856
|
-
*
|
|
11261
|
+
* Specifies whether simple passwords such as 1111 or 1234 are allowed. When set to true, the device is marked noncompliant if it allows simple passwords. Default is false.
|
|
9857
11262
|
*/
|
|
9858
11263
|
passwordBlockSimple: boolean;
|
|
9859
11264
|
/**
|
|
9860
|
-
*
|
|
11265
|
+
* Specifies the maximum password age in days. When set, the device is marked noncompliant if the password age exceeds this value. Valid values are 1 to 65535. Default is null, when set to default it is not evaluated. Valid values 1 to 65535
|
|
9861
11266
|
*/
|
|
9862
11267
|
passwordExpirationDays: int32 | null;
|
|
9863
11268
|
/**
|
|
9864
|
-
*
|
|
11269
|
+
* Specifies the minimum number of character sets required in the password. When set, the device is marked noncompliant if the password doesn't meet this requirement. Default is null, when set to default it is not evaluated.
|
|
9865
11270
|
*/
|
|
9866
11271
|
passwordMinimumCharacterSetCount: int32 | null;
|
|
9867
11272
|
/**
|
|
9868
|
-
*
|
|
11273
|
+
* Specifies the minimum password length. When set, the device is marked noncompliant if the password length is less than this value. Valid values are 4 to 14. Default is null, when set to default it is not evaluated. Valid values 4 to 14
|
|
9869
11274
|
*/
|
|
9870
11275
|
passwordMinimumLength: int32 | null;
|
|
9871
11276
|
/**
|
|
9872
|
-
*
|
|
11277
|
+
* Specifies the maximum minutes of inactivity before a password is required to unlock the device. When set, the device is marked noncompliant if it allows a longer inactivity period. Default is null, when set to default it is not evaluated.
|
|
9873
11278
|
*/
|
|
9874
11279
|
passwordMinutesOfInactivityBeforeLock: int32 | null;
|
|
9875
11280
|
/**
|
|
9876
|
-
*
|
|
11281
|
+
* Specifies the number of previous passwords that can't be reused. When set, the device is marked noncompliant if it doesn't enforce this history count. Valid values are 1 to 24. Default is null, when set to default it is not evaluated. Valid values 1 to 24
|
|
9877
11282
|
*/
|
|
9878
11283
|
passwordPreviousPasswordBlockCount: int32 | null;
|
|
9879
11284
|
/**
|
|
9880
|
-
*
|
|
11285
|
+
* Specifies whether a device password is required. When set to true, the device is marked noncompliant if a password isn't configured. Default is false.
|
|
9881
11286
|
*/
|
|
9882
11287
|
passwordRequired: boolean;
|
|
9883
11288
|
/**
|
|
9884
|
-
*
|
|
11289
|
+
* Specifies the required password type (for example, deviceDefault or alphanumeric). When set to a value other than deviceDefault, the device is marked noncompliant if the password type doesn't match. Default is deviceDefault.
|
|
9885
11290
|
*/
|
|
9886
11291
|
passwordRequiredType: requiredPasswordType;
|
|
9887
11292
|
/**
|
|
9888
|
-
*
|
|
11293
|
+
* Specifies whether storage encryption is required on macOS devices. When set to true, the device is marked noncompliant if storage isn't encrypted. Default is false.
|
|
9889
11294
|
*/
|
|
9890
11295
|
storageRequireEncryption: boolean;
|
|
9891
11296
|
/**
|
|
9892
|
-
*
|
|
11297
|
+
* Specifies whether System Integrity Protection must be enabled. When set to true, the device is marked noncompliant if System Integrity Protection is disabled. Default is false.
|
|
9893
11298
|
*/
|
|
9894
11299
|
systemIntegrityProtectionEnabled: boolean;
|
|
9895
11300
|
}
|
|
@@ -11468,6 +12873,13 @@ namespace reference.`microsoft.graph` {
|
|
|
11468
12873
|
value: string[] | null;
|
|
11469
12874
|
}
|
|
11470
12875
|
|
|
12876
|
+
@entity model namedLocation extends policyDeletableItem {
|
|
12877
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
12878
|
+
displayName: string;
|
|
12879
|
+
@computed @key id: string;
|
|
12880
|
+
modifiedDateTime: offsetDateTime | null;
|
|
12881
|
+
}
|
|
12882
|
+
|
|
11471
12883
|
/**
|
|
11472
12884
|
* Notification messages are messages that are sent to end users who are determined to be not-compliant with the compliance policies defined by the administrator. Administrators choose notifications and configure them in the Intune Admin Console using the compliance policy creation page under the “Actions for non-compliance” section. Use the notificationMessageTemplate object to create your own custom notifications for administrators to choose while configuring actions for non-compliance.
|
|
11473
12885
|
*/
|
|
@@ -11690,9 +13102,15 @@ namespace reference.`microsoft.graph` {
|
|
|
11690
13102
|
@contains masterCategories: outlookCategory[];
|
|
11691
13103
|
}
|
|
11692
13104
|
|
|
13105
|
+
@entity model passkeyAuthenticationMethodTarget extends authenticationMethodTarget {
|
|
13106
|
+
allowedPasskeyProfiles: guid | null;
|
|
13107
|
+
}
|
|
13108
|
+
|
|
11693
13109
|
@entity model peopleAdminSettings extends entity {
|
|
11694
13110
|
@contains itemInsights: insightsSettings | null;
|
|
11695
13111
|
@contains profileCardProperties: profileCardProperty[];
|
|
13112
|
+
@contains profilePropertySettings: profilePropertySetting[];
|
|
13113
|
+
@contains profileSources: profileSource[];
|
|
11696
13114
|
@contains pronouns: pronounsSettings | null;
|
|
11697
13115
|
}
|
|
11698
13116
|
|
|
@@ -11760,21 +13178,118 @@ namespace reference.`microsoft.graph` {
|
|
|
11760
13178
|
@references message: chatMessage | null;
|
|
11761
13179
|
}
|
|
11762
13180
|
|
|
13181
|
+
@entity model planner extends entity {
|
|
13182
|
+
@contains buckets: plannerBucket[];
|
|
13183
|
+
@contains plans: plannerPlan[];
|
|
13184
|
+
@contains tasks: plannerTask[];
|
|
13185
|
+
}
|
|
13186
|
+
|
|
13187
|
+
@entity model plannerAssignedToTaskBoardTaskFormat extends entity {
|
|
13188
|
+
orderHintsByAssignee: plannerOrderHintsByAssignee | null;
|
|
13189
|
+
unassignedOrderHint: string | null;
|
|
13190
|
+
}
|
|
13191
|
+
|
|
13192
|
+
@entity model plannerBucket extends entity {
|
|
13193
|
+
name: string;
|
|
13194
|
+
orderHint: string | null;
|
|
13195
|
+
planId: string | null;
|
|
13196
|
+
@references tasks: plannerTask[];
|
|
13197
|
+
}
|
|
13198
|
+
|
|
13199
|
+
@entity model plannerBucketTaskBoardTaskFormat extends entity {
|
|
13200
|
+
orderHint: string | null;
|
|
13201
|
+
}
|
|
13202
|
+
|
|
13203
|
+
@entity model plannerGroup extends entity {
|
|
13204
|
+
@references plans: plannerPlan[];
|
|
13205
|
+
}
|
|
13206
|
+
|
|
13207
|
+
@entity model plannerPlan extends entity {
|
|
13208
|
+
container: plannerPlanContainer | null;
|
|
13209
|
+
createdBy: identitySet | null;
|
|
13210
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
13211
|
+
|
|
13212
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
13213
|
+
owner: string | null;
|
|
13214
|
+
title: string;
|
|
13215
|
+
@references buckets: plannerBucket[];
|
|
13216
|
+
@contains details: plannerPlanDetails | null;
|
|
13217
|
+
@references tasks: plannerTask[];
|
|
13218
|
+
}
|
|
13219
|
+
|
|
13220
|
+
@entity model plannerPlanDetails extends entity {
|
|
13221
|
+
categoryDescriptions: plannerCategoryDescriptions | null;
|
|
13222
|
+
sharedWith: plannerUserIds | null;
|
|
13223
|
+
}
|
|
13224
|
+
|
|
13225
|
+
@entity model plannerProgressTaskBoardTaskFormat extends entity {
|
|
13226
|
+
orderHint: string | null;
|
|
13227
|
+
}
|
|
13228
|
+
|
|
13229
|
+
@entity model plannerTask extends entity {
|
|
13230
|
+
activeChecklistItemCount: int32 | null;
|
|
13231
|
+
appliedCategories: plannerAppliedCategories | null;
|
|
13232
|
+
assigneePriority: string | null;
|
|
13233
|
+
assignments: plannerAssignments | null;
|
|
13234
|
+
bucketId: string | null;
|
|
13235
|
+
checklistItemCount: int32 | null;
|
|
13236
|
+
completedBy: identitySet | null;
|
|
13237
|
+
completedDateTime: offsetDateTime | null;
|
|
13238
|
+
conversationThreadId: string | null;
|
|
13239
|
+
createdBy: identitySet | null;
|
|
13240
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
13241
|
+
dueDateTime: offsetDateTime | null;
|
|
13242
|
+
hasDescription: boolean | null;
|
|
13243
|
+
orderHint: string | null;
|
|
13244
|
+
percentComplete: int32 | null;
|
|
13245
|
+
planId: string | null;
|
|
13246
|
+
previewType: plannerPreviewType | null;
|
|
13247
|
+
priority: int32 | null;
|
|
13248
|
+
referenceCount: int32 | null;
|
|
13249
|
+
startDateTime: offsetDateTime | null;
|
|
13250
|
+
title: string;
|
|
13251
|
+
@contains assignedToTaskBoardFormat: plannerAssignedToTaskBoardTaskFormat | null;
|
|
13252
|
+
@contains bucketTaskBoardFormat: plannerBucketTaskBoardTaskFormat | null;
|
|
13253
|
+
@contains details: plannerTaskDetails | null;
|
|
13254
|
+
@contains progressTaskBoardFormat: plannerProgressTaskBoardTaskFormat | null;
|
|
13255
|
+
}
|
|
13256
|
+
|
|
13257
|
+
@entity model plannerTaskDetails extends entity {
|
|
13258
|
+
checklist: plannerChecklistItems | null;
|
|
13259
|
+
description: string | null;
|
|
13260
|
+
previewType: plannerPreviewType | null;
|
|
13261
|
+
references: plannerExternalReferences | null;
|
|
13262
|
+
}
|
|
13263
|
+
|
|
13264
|
+
@entity model plannerUser extends entity {
|
|
13265
|
+
@references plans: plannerPlan[];
|
|
13266
|
+
@references tasks: plannerTask[];
|
|
13267
|
+
}
|
|
13268
|
+
|
|
11763
13269
|
@abstract
|
|
11764
13270
|
@entity model policyBase extends directoryObject {
|
|
11765
13271
|
description: string | null;
|
|
11766
13272
|
displayName: string | null;
|
|
11767
13273
|
}
|
|
11768
13274
|
|
|
11769
|
-
@
|
|
13275
|
+
@abstract
|
|
13276
|
+
@entity model policyDeletableItem extends MsGraph.SharedModels.entity {
|
|
13277
|
+
deletedDateTime: offsetDateTime | null;
|
|
13278
|
+
}
|
|
13279
|
+
|
|
13280
|
+
@entity model policyRoot extends entity {
|
|
11770
13281
|
@contains activityBasedTimeoutPolicies: activityBasedTimeoutPolicy[];
|
|
13282
|
+
@contains adminConsentRequestPolicy: adminConsentRequestPolicy | null;
|
|
11771
13283
|
@contains appManagementPolicies: appManagementPolicy[];
|
|
11772
13284
|
@contains authorizationPolicy: authorizationPolicy | null;
|
|
11773
13285
|
@contains claimsMappingPolicies: claimsMappingPolicy[];
|
|
13286
|
+
@contains conditionalAccessPolicies: conditionalAccessPolicy[];
|
|
11774
13287
|
@contains crossTenantAccessPolicy: crossTenantAccessPolicy | null;
|
|
11775
13288
|
@contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
|
|
11776
13289
|
@contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
|
|
13290
|
+
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
11777
13291
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
13292
|
+
@contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
|
|
11778
13293
|
@contains permissionGrantPolicies: permissionGrantPolicy[];
|
|
11779
13294
|
@contains roleManagementPolicies: unifiedRoleManagementPolicy[];
|
|
11780
13295
|
@contains roleManagementPolicyAssignments: unifiedRoleManagementPolicyAssignment[];
|
|
@@ -11803,9 +13318,11 @@ namespace reference.`microsoft.graph` {
|
|
|
11803
13318
|
activity: string | null;
|
|
11804
13319
|
availability: string | null;
|
|
11805
13320
|
statusMessage: presenceStatusMessage | null;
|
|
13321
|
+
workLocation: userWorkLocation | null;
|
|
11806
13322
|
}
|
|
11807
13323
|
|
|
11808
13324
|
@entity model privilegedAccessGroup extends entity {
|
|
13325
|
+
@contains assignmentApprovals: approval[];
|
|
11809
13326
|
@contains assignmentScheduleInstances: privilegedAccessGroupAssignmentScheduleInstance[];
|
|
11810
13327
|
@contains assignmentScheduleRequests: privilegedAccessGroupAssignmentScheduleRequest[];
|
|
11811
13328
|
@contains assignmentSchedules: privilegedAccessGroupAssignmentSchedule[];
|
|
@@ -11908,6 +13425,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11908
13425
|
@entity model profileCardProperty extends entity {
|
|
11909
13426
|
annotations: profileCardAnnotation[] | null;
|
|
11910
13427
|
directoryPropertyName: string | null;
|
|
13428
|
+
isVisible: boolean;
|
|
11911
13429
|
}
|
|
11912
13430
|
|
|
11913
13431
|
@entity model profilePhoto extends entity {
|
|
@@ -11915,6 +13433,20 @@ namespace reference.`microsoft.graph` {
|
|
|
11915
13433
|
width: int32 | null;
|
|
11916
13434
|
}
|
|
11917
13435
|
|
|
13436
|
+
@entity model profilePropertySetting extends entity {
|
|
13437
|
+
displayName: string | null;
|
|
13438
|
+
name: string | null;
|
|
13439
|
+
prioritizedSourceUrls: string[];
|
|
13440
|
+
}
|
|
13441
|
+
|
|
13442
|
+
@entity model profileSource extends entity {
|
|
13443
|
+
displayName: string | null;
|
|
13444
|
+
kind: string | null;
|
|
13445
|
+
localizations: profileSourceLocalization[];
|
|
13446
|
+
sourceId: string | null;
|
|
13447
|
+
webUrl: string | null;
|
|
13448
|
+
}
|
|
13449
|
+
|
|
11918
13450
|
@entity model pronounsSettings extends entity {
|
|
11919
13451
|
isEnabledInOrganization: boolean;
|
|
11920
13452
|
}
|
|
@@ -11938,6 +13470,13 @@ namespace reference.`microsoft.graph` {
|
|
|
11938
13470
|
tenantId: string | null;
|
|
11939
13471
|
}
|
|
11940
13472
|
|
|
13473
|
+
@entity model qrPin extends entity {
|
|
13474
|
+
code: string;
|
|
13475
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
13476
|
+
forceChangePinNextSignIn: boolean | null;
|
|
13477
|
+
updatedDateTime: offsetDateTime | null;
|
|
13478
|
+
}
|
|
13479
|
+
|
|
11941
13480
|
@entity model rbacApplication extends entity {
|
|
11942
13481
|
@contains resourceNamespaces: unifiedRbacResourceNamespace[];
|
|
11943
13482
|
@contains roleAssignments: unifiedRoleAssignment[];
|
|
@@ -11990,6 +13529,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11990
13529
|
|
|
11991
13530
|
@entity model remoteDesktopSecurityConfiguration extends entity {
|
|
11992
13531
|
isRemoteDesktopProtocolEnabled: boolean;
|
|
13532
|
+
@contains approvedClientApps: approvedClientApp[];
|
|
11993
13533
|
@contains targetDeviceGroups: targetDeviceGroup[];
|
|
11994
13534
|
}
|
|
11995
13535
|
|
|
@@ -11997,8 +13537,13 @@ namespace reference.`microsoft.graph` {
|
|
|
11997
13537
|
@contains authenticationMethods: authenticationMethodsRoot | null;
|
|
11998
13538
|
}
|
|
11999
13539
|
|
|
12000
|
-
@abstract
|
|
12001
13540
|
@entity model request extends entity {
|
|
13541
|
+
approvalId: string | null;
|
|
13542
|
+
completedDateTime: offsetDateTime | null;
|
|
13543
|
+
createdBy: identitySet | null;
|
|
13544
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
13545
|
+
customData: string | null;
|
|
13546
|
+
status: string;
|
|
12002
13547
|
}
|
|
12003
13548
|
|
|
12004
13549
|
/**
|
|
@@ -12142,6 +13687,10 @@ namespace reference.`microsoft.graph` {
|
|
|
12142
13687
|
|
|
12143
13688
|
@entity model roleManagement extends MsGraph.SharedModels.entity {
|
|
12144
13689
|
@contains directory: rbacApplication | null;
|
|
13690
|
+
/**
|
|
13691
|
+
* The RbacApplication for Entitlement Management
|
|
13692
|
+
*/
|
|
13693
|
+
@contains entitlementManagement: rbacApplication | null;
|
|
12145
13694
|
}
|
|
12146
13695
|
|
|
12147
13696
|
@entity model samlOrWsFedExternalDomainFederation extends samlOrWsFedProvider {
|
|
@@ -12224,12 +13773,14 @@ namespace reference.`microsoft.graph` {
|
|
|
12224
13773
|
appOwnerOrganizationId: guid | null;
|
|
12225
13774
|
appRoleAssignmentRequired: boolean;
|
|
12226
13775
|
appRoles: appRole[];
|
|
13776
|
+
createdByAppId: string | null;
|
|
12227
13777
|
customSecurityAttributes: customSecurityAttributeValue | null;
|
|
12228
13778
|
description: string | null;
|
|
12229
13779
|
disabledByMicrosoftStatus: string | null;
|
|
12230
13780
|
displayName: string | null;
|
|
12231
13781
|
homepage: string | null;
|
|
12232
13782
|
info: informationalUrl | null;
|
|
13783
|
+
isDisabled: boolean | null;
|
|
12233
13784
|
keyCredentials: keyCredential[];
|
|
12234
13785
|
loginUrl: string | null;
|
|
12235
13786
|
logoutUrl: string | null;
|
|
@@ -13205,11 +14756,13 @@ namespace reference.`microsoft.graph` {
|
|
|
13205
14756
|
|
|
13206
14757
|
@open
|
|
13207
14758
|
@entity model user extends directoryObject {
|
|
14759
|
+
aboutMe: string | null;
|
|
13208
14760
|
accountEnabled: boolean | null;
|
|
13209
14761
|
ageGroup: string | null;
|
|
13210
14762
|
assignedLicenses: assignedLicense[];
|
|
13211
14763
|
assignedPlans: assignedPlan[];
|
|
13212
14764
|
authorizationInfo: authorizationInfo | null;
|
|
14765
|
+
birthday: offsetDateTime;
|
|
13213
14766
|
businessPhones: string[];
|
|
13214
14767
|
city: string | null;
|
|
13215
14768
|
companyName: string | null;
|
|
@@ -13233,8 +14786,11 @@ namespace reference.`microsoft.graph` {
|
|
|
13233
14786
|
externalUserStateChangeDateTime: offsetDateTime | null;
|
|
13234
14787
|
faxNumber: string | null;
|
|
13235
14788
|
givenName: string | null;
|
|
14789
|
+
hireDate: offsetDateTime;
|
|
13236
14790
|
identities: objectIdentity[] | null;
|
|
14791
|
+
identityParentId: string | null;
|
|
13237
14792
|
imAddresses: string[] | null;
|
|
14793
|
+
interests: string[] | null;
|
|
13238
14794
|
isManagementRestricted: boolean | null;
|
|
13239
14795
|
isResourceAccount: boolean | null;
|
|
13240
14796
|
jobTitle: string | null;
|
|
@@ -13245,6 +14801,7 @@ namespace reference.`microsoft.graph` {
|
|
|
13245
14801
|
mailboxSettings: mailboxSettings | null;
|
|
13246
14802
|
mailNickname: string | null;
|
|
13247
14803
|
mobilePhone: string | null;
|
|
14804
|
+
mySite: string | null;
|
|
13248
14805
|
officeLocation: string | null;
|
|
13249
14806
|
onPremisesDistinguishedName: string | null;
|
|
13250
14807
|
onPremisesDomainName: string | null;
|
|
@@ -13259,15 +14816,20 @@ namespace reference.`microsoft.graph` {
|
|
|
13259
14816
|
otherMails: string[];
|
|
13260
14817
|
passwordPolicies: string | null;
|
|
13261
14818
|
passwordProfile: passwordProfile | null;
|
|
14819
|
+
pastProjects: string[] | null;
|
|
13262
14820
|
postalCode: string | null;
|
|
13263
14821
|
preferredDataLocation: string | null;
|
|
13264
14822
|
preferredLanguage: string | null;
|
|
14823
|
+
preferredName: string | null;
|
|
13265
14824
|
provisionedPlans: provisionedPlan[];
|
|
13266
14825
|
proxyAddresses: string[];
|
|
14826
|
+
responsibilities: string[] | null;
|
|
14827
|
+
schools: string[] | null;
|
|
13267
14828
|
securityIdentifier: string | null;
|
|
13268
14829
|
showInAddressList: boolean | null;
|
|
13269
14830
|
signInActivity: signInActivity | null;
|
|
13270
14831
|
signInSessionsValidFromDateTime: offsetDateTime | null;
|
|
14832
|
+
skills: string[] | null;
|
|
13271
14833
|
state: string | null;
|
|
13272
14834
|
streetAddress: string | null;
|
|
13273
14835
|
surname: string | null;
|
|
@@ -13320,6 +14882,7 @@ namespace reference.`microsoft.graph` {
|
|
|
13320
14882
|
@contains permissionGrants: resourceSpecificPermissionGrant[];
|
|
13321
14883
|
@contains photo: profilePhoto | null;
|
|
13322
14884
|
@contains photos: profilePhoto[];
|
|
14885
|
+
@contains planner: plannerUser | null;
|
|
13323
14886
|
@contains presence: presence | null;
|
|
13324
14887
|
@references registeredDevices: directoryObject[];
|
|
13325
14888
|
@contains scopedRoleMemberOf: scopedRoleMembership[];
|
|
@@ -13328,6 +14891,11 @@ namespace reference.`microsoft.graph` {
|
|
|
13328
14891
|
@references transitiveMemberOf: directoryObject[];
|
|
13329
14892
|
}
|
|
13330
14893
|
|
|
14894
|
+
@entity model userConsentRequest extends request {
|
|
14895
|
+
reason: string | null;
|
|
14896
|
+
@contains approval: approval | null;
|
|
14897
|
+
}
|
|
14898
|
+
|
|
13331
14899
|
/**
|
|
13332
14900
|
* The user experience analytics application performance entity contains application performance details.
|
|
13333
14901
|
*/
|
|
@@ -14336,6 +15904,10 @@ namespace reference.`microsoft.graph` {
|
|
|
14336
15904
|
@contains itemInsights: userInsightsSettings | null;
|
|
14337
15905
|
}
|
|
14338
15906
|
|
|
15907
|
+
@entity model userSignInInsight extends governanceInsight {
|
|
15908
|
+
@computed lastSignInDateTime: offsetDateTime | null;
|
|
15909
|
+
}
|
|
15910
|
+
|
|
14339
15911
|
@entity model userTeamwork extends entity {
|
|
14340
15912
|
locale: string | null;
|
|
14341
15913
|
region: string | null;
|
|
@@ -14416,6 +15988,11 @@ namespace reference.`microsoft.graph` {
|
|
|
14416
15988
|
@entity model webPart extends entity {
|
|
14417
15989
|
}
|
|
14418
15990
|
|
|
15991
|
+
@entity model whatIfAnalysisResult extends conditionalAccessPolicy {
|
|
15992
|
+
analysisReasons: whatIfAnalysisReasons;
|
|
15993
|
+
policyApplies: boolean;
|
|
15994
|
+
}
|
|
15995
|
+
|
|
14419
15996
|
/**
|
|
14420
15997
|
* Contains properties and inherited properties for Win32 apps.
|
|
14421
15998
|
*/
|
|
@@ -16004,7 +17581,7 @@ namespace reference.`microsoft.graph` {
|
|
|
16004
17581
|
*/
|
|
16005
17582
|
preprovisioningAllowed: boolean | null;
|
|
16006
17583
|
/**
|
|
16007
|
-
* List of role scope tags for the deployment profile.
|
|
17584
|
+
* List of role scope tags for the deployment profile.
|
|
16008
17585
|
*/
|
|
16009
17586
|
roleScopeTagIds: string[] | null;
|
|
16010
17587
|
/**
|
|
@@ -16620,6 +18197,10 @@ namespace reference.`microsoft.graph` {
|
|
|
16620
18197
|
* Current anti malware version
|
|
16621
18198
|
*/
|
|
16622
18199
|
antiMalwareVersion: string | null;
|
|
18200
|
+
/**
|
|
18201
|
+
* When TRUE indicates the Windows Defender controlled configuration feature is enabled, when FALSE indicates the Windows Defender controlled configuration feature is not enabled. Defaults to setting on client device.
|
|
18202
|
+
*/
|
|
18203
|
+
controlledConfigurationEnabled: boolean | null;
|
|
16623
18204
|
/**
|
|
16624
18205
|
* Indicates device's health state. Possible values are: clean, fullScanPending, rebootPending, manualStepsPending, offlineScanPending, critical.
|
|
16625
18206
|
*/
|
|
@@ -16904,14 +18485,162 @@ namespace reference.`microsoft.graph` {
|
|
|
16904
18485
|
userWindowsUpdateScanAccess: enablement;
|
|
16905
18486
|
}
|
|
16906
18487
|
|
|
16907
|
-
/**
|
|
16908
|
-
* Contains properties and inherited properties for Windows web apps.
|
|
16909
|
-
*/
|
|
16910
|
-
@entity model windowsWebApp extends mobileApp {
|
|
16911
|
-
/**
|
|
16912
|
-
* Indicates the Windows web app URL. Example: "https://www.contoso.com"
|
|
16913
|
-
*/
|
|
16914
|
-
appUrl: string | null;
|
|
18488
|
+
/**
|
|
18489
|
+
* Contains properties and inherited properties for Windows web apps.
|
|
18490
|
+
*/
|
|
18491
|
+
@entity model windowsWebApp extends mobileApp {
|
|
18492
|
+
/**
|
|
18493
|
+
* Indicates the Windows web app URL. Example: "https://www.contoso.com"
|
|
18494
|
+
*/
|
|
18495
|
+
appUrl: string | null;
|
|
18496
|
+
}
|
|
18497
|
+
|
|
18498
|
+
@entity model x509CertificateCombinationConfiguration extends authenticationCombinationConfiguration {
|
|
18499
|
+
allowedIssuerSkis: string[];
|
|
18500
|
+
allowedPolicyOIDs: string[];
|
|
18501
|
+
}
|
|
18502
|
+
|
|
18503
|
+
enum accessPackageAssignmentFilterByCurrentUserOptions {
|
|
18504
|
+
target: 1,
|
|
18505
|
+
createdBy: 2,
|
|
18506
|
+
unknownFutureValue: 99,
|
|
18507
|
+
targetManager: 100,
|
|
18508
|
+
targetAgentIdentitySponsorOrOwner: 101,
|
|
18509
|
+
}
|
|
18510
|
+
|
|
18511
|
+
enum accessPackageAssignmentRequestFilterByCurrentUserOptions {
|
|
18512
|
+
target: 1,
|
|
18513
|
+
createdBy: 2,
|
|
18514
|
+
approver: 3,
|
|
18515
|
+
unknownFutureValue: 99,
|
|
18516
|
+
targetOrRequestor: 100,
|
|
18517
|
+
targetManager: 101,
|
|
18518
|
+
requestForOthers: 102,
|
|
18519
|
+
targetAgentIdentitySponsorOrOwner: 103,
|
|
18520
|
+
}
|
|
18521
|
+
|
|
18522
|
+
enum accessPackageAssignmentState {
|
|
18523
|
+
delivering: 0,
|
|
18524
|
+
partiallyDelivered: 1,
|
|
18525
|
+
delivered: 2,
|
|
18526
|
+
expired: 3,
|
|
18527
|
+
deliveryFailed: 4,
|
|
18528
|
+
unknownFutureValue: 5,
|
|
18529
|
+
}
|
|
18530
|
+
|
|
18531
|
+
enum accessPackageCatalogState {
|
|
18532
|
+
unpublished: 1,
|
|
18533
|
+
published: 2,
|
|
18534
|
+
unknownFutureValue: 3,
|
|
18535
|
+
}
|
|
18536
|
+
|
|
18537
|
+
enum accessPackageCatalogType {
|
|
18538
|
+
userManaged: 1,
|
|
18539
|
+
serviceDefault: 2,
|
|
18540
|
+
serviceManaged: 3,
|
|
18541
|
+
unknownFutureValue: 4,
|
|
18542
|
+
}
|
|
18543
|
+
|
|
18544
|
+
enum accessPackageCustomExtensionStage {
|
|
18545
|
+
assignmentRequestCreated: 1,
|
|
18546
|
+
assignmentRequestApproved: 2,
|
|
18547
|
+
assignmentRequestGranted: 3,
|
|
18548
|
+
assignmentRequestRemoved: 4,
|
|
18549
|
+
assignmentFourteenDaysBeforeExpiration: 5,
|
|
18550
|
+
assignmentOneDayBeforeExpiration: 6,
|
|
18551
|
+
unknownFutureValue: 7,
|
|
18552
|
+
}
|
|
18553
|
+
|
|
18554
|
+
enum accessPackageExternalUserLifecycleAction {
|
|
18555
|
+
none: 0,
|
|
18556
|
+
blockSignIn: 1,
|
|
18557
|
+
blockSignInAndDelete: 2,
|
|
18558
|
+
unknownFutureValue: 3,
|
|
18559
|
+
}
|
|
18560
|
+
|
|
18561
|
+
enum accessPackageFilterByCurrentUserOptions {
|
|
18562
|
+
allowedRequestor: 1,
|
|
18563
|
+
unknownFutureValue: 99,
|
|
18564
|
+
}
|
|
18565
|
+
|
|
18566
|
+
enum accessPackageRequestState {
|
|
18567
|
+
submitted: 0,
|
|
18568
|
+
pendingApproval: 1,
|
|
18569
|
+
delivering: 2,
|
|
18570
|
+
delivered: 3,
|
|
18571
|
+
deliveryFailed: 4,
|
|
18572
|
+
denied: 5,
|
|
18573
|
+
scheduled: 6,
|
|
18574
|
+
canceled: 7,
|
|
18575
|
+
partiallyDelivered: 8,
|
|
18576
|
+
unknownFutureValue: 9,
|
|
18577
|
+
}
|
|
18578
|
+
|
|
18579
|
+
enum accessPackageRequestType {
|
|
18580
|
+
notSpecified: 0,
|
|
18581
|
+
userAdd: 1,
|
|
18582
|
+
userUpdate: 2,
|
|
18583
|
+
userRemove: 3,
|
|
18584
|
+
adminAdd: 4,
|
|
18585
|
+
adminUpdate: 5,
|
|
18586
|
+
adminRemove: 6,
|
|
18587
|
+
systemAdd: 7,
|
|
18588
|
+
systemUpdate: 8,
|
|
18589
|
+
systemRemove: 9,
|
|
18590
|
+
onBehalfAdd: 10,
|
|
18591
|
+
unknownFutureValue: 11,
|
|
18592
|
+
approverRemove: 12,
|
|
18593
|
+
}
|
|
18594
|
+
|
|
18595
|
+
enum accessPackageSubjectType {
|
|
18596
|
+
notSpecified: 0,
|
|
18597
|
+
user: 1,
|
|
18598
|
+
servicePrincipal: 2,
|
|
18599
|
+
unknownFutureValue: 3,
|
|
18600
|
+
}
|
|
18601
|
+
|
|
18602
|
+
enum accessReviewExpirationBehavior {
|
|
18603
|
+
keepAccess: 0,
|
|
18604
|
+
removeAccess: 1,
|
|
18605
|
+
acceptAccessRecommendation: 2,
|
|
18606
|
+
unknownFutureValue: 99,
|
|
18607
|
+
}
|
|
18608
|
+
|
|
18609
|
+
enum accessReviewHistoryDecisionFilter {
|
|
18610
|
+
approve: 0,
|
|
18611
|
+
deny: 1,
|
|
18612
|
+
notReviewed: 2,
|
|
18613
|
+
dontKnow: 3,
|
|
18614
|
+
notNotified: 4,
|
|
18615
|
+
unknownFutureValue: 5,
|
|
18616
|
+
}
|
|
18617
|
+
|
|
18618
|
+
enum accessReviewHistoryStatus {
|
|
18619
|
+
done: 0,
|
|
18620
|
+
inprogress: 1,
|
|
18621
|
+
error: 2,
|
|
18622
|
+
requested: 3,
|
|
18623
|
+
unknownFutureValue: 4,
|
|
18624
|
+
}
|
|
18625
|
+
|
|
18626
|
+
enum accessReviewInstanceDecisionItemFilterByCurrentUserOptions {
|
|
18627
|
+
reviewer: 1,
|
|
18628
|
+
unknownFutureValue: 2,
|
|
18629
|
+
}
|
|
18630
|
+
|
|
18631
|
+
enum accessReviewInstanceFilterByCurrentUserOptions {
|
|
18632
|
+
reviewer: 1,
|
|
18633
|
+
unknownFutureValue: 2,
|
|
18634
|
+
}
|
|
18635
|
+
|
|
18636
|
+
enum accessReviewScheduleDefinitionFilterByCurrentUserOptions {
|
|
18637
|
+
reviewer: 1,
|
|
18638
|
+
unknownFutureValue: 2,
|
|
18639
|
+
}
|
|
18640
|
+
|
|
18641
|
+
enum accessReviewStageFilterByCurrentUserOptions {
|
|
18642
|
+
reviewer: 1,
|
|
18643
|
+
unknownFutureValue: 2,
|
|
16915
18644
|
}
|
|
16916
18645
|
|
|
16917
18646
|
/**
|
|
@@ -16949,6 +18678,14 @@ namespace reference.`microsoft.graph` {
|
|
|
16949
18678
|
notSupported: 6,
|
|
16950
18679
|
}
|
|
16951
18680
|
|
|
18681
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
18682
|
+
enum activityDomain {
|
|
18683
|
+
`unknown`: 0,
|
|
18684
|
+
work: 1,
|
|
18685
|
+
personal: 2,
|
|
18686
|
+
unrestricted: 3,
|
|
18687
|
+
}
|
|
18688
|
+
|
|
16952
18689
|
enum activityType {
|
|
16953
18690
|
signin: 0,
|
|
16954
18691
|
user: 1,
|
|
@@ -16956,12 +18693,33 @@ namespace reference.`microsoft.graph` {
|
|
|
16956
18693
|
servicePrincipal: 3,
|
|
16957
18694
|
}
|
|
16958
18695
|
|
|
18696
|
+
enum advancedConfigState {
|
|
18697
|
+
default: 0,
|
|
18698
|
+
enabled: 1,
|
|
18699
|
+
disabled: 2,
|
|
18700
|
+
unknownFutureValue: 3,
|
|
18701
|
+
}
|
|
18702
|
+
|
|
16959
18703
|
enum agreementAcceptanceState {
|
|
16960
18704
|
accepted: 2,
|
|
16961
18705
|
declined: 3,
|
|
16962
18706
|
unknownFutureValue: 5,
|
|
16963
18707
|
}
|
|
16964
18708
|
|
|
18709
|
+
enum allowedTargetScope {
|
|
18710
|
+
notSpecified: 0,
|
|
18711
|
+
specificDirectoryUsers: 1,
|
|
18712
|
+
specificConnectedOrganizationUsers: 2,
|
|
18713
|
+
specificDirectoryServicePrincipals: 3,
|
|
18714
|
+
allMemberUsers: 4,
|
|
18715
|
+
allDirectoryUsers: 5,
|
|
18716
|
+
allDirectoryServicePrincipals: 6,
|
|
18717
|
+
allConfiguredConnectedOrganizationUsers: 7,
|
|
18718
|
+
allExternalUsers: 8,
|
|
18719
|
+
allDirectoryAgentIdentities: 9,
|
|
18720
|
+
unknownFutureValue: 10,
|
|
18721
|
+
}
|
|
18722
|
+
|
|
16965
18723
|
enum allowInvitesFrom {
|
|
16966
18724
|
none: 0,
|
|
16967
18725
|
adminsAndGuestInviters: 1,
|
|
@@ -17263,6 +19021,19 @@ namespace reference.`microsoft.graph` {
|
|
|
17263
19021
|
unknownFutureValue: 3,
|
|
17264
19022
|
}
|
|
17265
19023
|
|
|
19024
|
+
enum appManagementRestrictionState {
|
|
19025
|
+
enabled: 1,
|
|
19026
|
+
disabled: 2,
|
|
19027
|
+
unknownFutureValue: 3,
|
|
19028
|
+
}
|
|
19029
|
+
|
|
19030
|
+
enum approvalFilterByCurrentUserOptions {
|
|
19031
|
+
target: 0,
|
|
19032
|
+
createdBy: 1,
|
|
19033
|
+
approver: 2,
|
|
19034
|
+
unknownFutureValue: 3,
|
|
19035
|
+
}
|
|
19036
|
+
|
|
17266
19037
|
enum assignmentScheduleFilterByCurrentUserOptions {
|
|
17267
19038
|
principal: 1,
|
|
17268
19039
|
unknownFutureValue: 2,
|
|
@@ -17294,6 +19065,18 @@ namespace reference.`microsoft.graph` {
|
|
|
17294
19065
|
resource: 2,
|
|
17295
19066
|
}
|
|
17296
19067
|
|
|
19068
|
+
enum attestationEnforcement {
|
|
19069
|
+
disabled: 0,
|
|
19070
|
+
registrationOnly: 1,
|
|
19071
|
+
unknownFutureValue: 2,
|
|
19072
|
+
}
|
|
19073
|
+
|
|
19074
|
+
enum attestationLevel {
|
|
19075
|
+
attested: 0,
|
|
19076
|
+
notAttested: 1,
|
|
19077
|
+
unknownFutureValue: 2,
|
|
19078
|
+
}
|
|
19079
|
+
|
|
17297
19080
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
17298
19081
|
enum attributeDefinitionMetadata {
|
|
17299
19082
|
BaseAttributeName: 0,
|
|
@@ -17348,12 +19131,100 @@ namespace reference.`microsoft.graph` {
|
|
|
17348
19131
|
unknownFutureValue: 5,
|
|
17349
19132
|
}
|
|
17350
19133
|
|
|
19134
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
19135
|
+
enum authenticationMethodKeyStrength {
|
|
19136
|
+
normal: 0,
|
|
19137
|
+
weak: 1,
|
|
19138
|
+
`unknown`: 2,
|
|
19139
|
+
}
|
|
19140
|
+
|
|
19141
|
+
@graphFlags
|
|
19142
|
+
enum authenticationMethodModes {
|
|
19143
|
+
password: 1,
|
|
19144
|
+
voice: 2,
|
|
19145
|
+
hardwareOath: 4,
|
|
19146
|
+
softwareOath: 8,
|
|
19147
|
+
sms: 16,
|
|
19148
|
+
fido2: 32,
|
|
19149
|
+
windowsHelloForBusiness: 64,
|
|
19150
|
+
microsoftAuthenticatorPush: 128,
|
|
19151
|
+
deviceBasedPush: 256,
|
|
19152
|
+
temporaryAccessPassOneTime: 512,
|
|
19153
|
+
temporaryAccessPassMultiUse: 1024,
|
|
19154
|
+
email: 2048,
|
|
19155
|
+
x509CertificateSingleFactor: 4096,
|
|
19156
|
+
x509CertificateMultiFactor: 8192,
|
|
19157
|
+
federatedSingleFactor: 16384,
|
|
19158
|
+
federatedMultiFactor: 32768,
|
|
19159
|
+
unknownFutureValue: 65536,
|
|
19160
|
+
qrCodePin: 131072,
|
|
19161
|
+
}
|
|
19162
|
+
|
|
19163
|
+
enum authenticationMethodPlatform {
|
|
19164
|
+
`unknown`: 0,
|
|
19165
|
+
windows: 1,
|
|
19166
|
+
macOS: 2,
|
|
19167
|
+
iOS: 3,
|
|
19168
|
+
android: 4,
|
|
19169
|
+
linux: 5,
|
|
19170
|
+
unknownFutureValue: 6,
|
|
19171
|
+
}
|
|
19172
|
+
|
|
19173
|
+
enum authenticationMethodSignInState {
|
|
19174
|
+
notSupported: 0,
|
|
19175
|
+
notAllowedByPolicy: 1,
|
|
19176
|
+
notEnabled: 2,
|
|
19177
|
+
phoneNumberNotUnique: 3,
|
|
19178
|
+
ready: 4,
|
|
19179
|
+
notConfigured: 5,
|
|
19180
|
+
unknownFutureValue: 6,
|
|
19181
|
+
}
|
|
19182
|
+
|
|
19183
|
+
enum authenticationMethodsPolicyMigrationState {
|
|
19184
|
+
preMigration: 0,
|
|
19185
|
+
migrationInProgress: 1,
|
|
19186
|
+
migrationComplete: 2,
|
|
19187
|
+
unknownFutureValue: 3,
|
|
19188
|
+
}
|
|
19189
|
+
|
|
19190
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
19191
|
+
enum authenticationMethodState {
|
|
19192
|
+
enabled: 0,
|
|
19193
|
+
disabled: 1,
|
|
19194
|
+
}
|
|
19195
|
+
|
|
19196
|
+
enum authenticationMethodTargetType {
|
|
19197
|
+
user: 0,
|
|
19198
|
+
group: 1,
|
|
19199
|
+
unknownFutureValue: 2,
|
|
19200
|
+
}
|
|
19201
|
+
|
|
19202
|
+
enum authenticationPhoneType {
|
|
19203
|
+
mobile: 0,
|
|
19204
|
+
alternateMobile: 1,
|
|
19205
|
+
office: 2,
|
|
19206
|
+
unknownFutureValue: 3,
|
|
19207
|
+
}
|
|
19208
|
+
|
|
17351
19209
|
enum authenticationProtocol {
|
|
17352
19210
|
wsFed: 0,
|
|
17353
19211
|
saml: 1,
|
|
17354
19212
|
unknownFutureValue: 2,
|
|
17355
19213
|
}
|
|
17356
19214
|
|
|
19215
|
+
enum authenticationStrengthPolicyType {
|
|
19216
|
+
builtIn: 0,
|
|
19217
|
+
custom: 1,
|
|
19218
|
+
unknownFutureValue: 2,
|
|
19219
|
+
}
|
|
19220
|
+
|
|
19221
|
+
@graphFlags
|
|
19222
|
+
enum authenticationStrengthRequirements {
|
|
19223
|
+
none: 0,
|
|
19224
|
+
mfa: 1,
|
|
19225
|
+
unknownFutureValue: 2,
|
|
19226
|
+
}
|
|
19227
|
+
|
|
17357
19228
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
17358
19229
|
enum automaticRepliesStatus {
|
|
17359
19230
|
disabled: 0,
|
|
@@ -17421,6 +19292,23 @@ namespace reference.`microsoft.graph` {
|
|
|
17421
19292
|
unknownFutureValue: 7,
|
|
17422
19293
|
}
|
|
17423
19294
|
|
|
19295
|
+
enum baseAuthenticationMethod {
|
|
19296
|
+
password: 1,
|
|
19297
|
+
voice: 2,
|
|
19298
|
+
hardwareOath: 3,
|
|
19299
|
+
softwareOath: 4,
|
|
19300
|
+
sms: 5,
|
|
19301
|
+
fido2: 6,
|
|
19302
|
+
windowsHelloForBusiness: 7,
|
|
19303
|
+
microsoftAuthenticator: 8,
|
|
19304
|
+
temporaryAccessPass: 9,
|
|
19305
|
+
email: 10,
|
|
19306
|
+
x509Certificate: 11,
|
|
19307
|
+
federation: 12,
|
|
19308
|
+
unknownFutureValue: 13,
|
|
19309
|
+
qrCodePin: 14,
|
|
19310
|
+
}
|
|
19311
|
+
|
|
17424
19312
|
/**
|
|
17425
19313
|
* BitLockerEncryptionMethod types
|
|
17426
19314
|
*/
|
|
@@ -17627,6 +19515,13 @@ namespace reference.`microsoft.graph` {
|
|
|
17627
19515
|
members: 16,
|
|
17628
19516
|
}
|
|
17629
19517
|
|
|
19518
|
+
enum cloudAppSecuritySessionControlType {
|
|
19519
|
+
mcasConfigured: 0,
|
|
19520
|
+
monitorOnly: 1,
|
|
19521
|
+
blockDownloads: 2,
|
|
19522
|
+
unknownFutureValue: 3,
|
|
19523
|
+
}
|
|
19524
|
+
|
|
17630
19525
|
enum columnTypes {
|
|
17631
19526
|
note: 0,
|
|
17632
19527
|
text: 1,
|
|
@@ -17696,6 +19591,64 @@ namespace reference.`microsoft.graph` {
|
|
|
17696
19591
|
notAssigned: 7,
|
|
17697
19592
|
}
|
|
17698
19593
|
|
|
19594
|
+
enum conditionalAccessClientApp {
|
|
19595
|
+
all: 0,
|
|
19596
|
+
browser: 1,
|
|
19597
|
+
mobileAppsAndDesktopClients: 2,
|
|
19598
|
+
exchangeActiveSync: 3,
|
|
19599
|
+
easSupported: 4,
|
|
19600
|
+
other: 5,
|
|
19601
|
+
unknownFutureValue: 6,
|
|
19602
|
+
}
|
|
19603
|
+
|
|
19604
|
+
enum conditionalAccessDevicePlatform {
|
|
19605
|
+
android: 0,
|
|
19606
|
+
iOS: 1,
|
|
19607
|
+
windows: 2,
|
|
19608
|
+
windowsPhone: 3,
|
|
19609
|
+
macOS: 4,
|
|
19610
|
+
all: 5,
|
|
19611
|
+
unknownFutureValue: 6,
|
|
19612
|
+
linux: 7,
|
|
19613
|
+
}
|
|
19614
|
+
|
|
19615
|
+
enum conditionalAccessExternalTenantsMembershipKind {
|
|
19616
|
+
all: 0,
|
|
19617
|
+
enumerated: 1,
|
|
19618
|
+
unknownFutureValue: 2,
|
|
19619
|
+
}
|
|
19620
|
+
|
|
19621
|
+
enum conditionalAccessGrantControl {
|
|
19622
|
+
block: 0,
|
|
19623
|
+
mfa: 1,
|
|
19624
|
+
compliantDevice: 2,
|
|
19625
|
+
domainJoinedDevice: 3,
|
|
19626
|
+
approvedApplication: 4,
|
|
19627
|
+
compliantApplication: 5,
|
|
19628
|
+
passwordChange: 6,
|
|
19629
|
+
unknownFutureValue: 7,
|
|
19630
|
+
riskRemediation: 8,
|
|
19631
|
+
}
|
|
19632
|
+
|
|
19633
|
+
@graphFlags
|
|
19634
|
+
enum conditionalAccessGuestOrExternalUserTypes {
|
|
19635
|
+
none: 0,
|
|
19636
|
+
internalGuest: 1,
|
|
19637
|
+
b2bCollaborationGuest: 2,
|
|
19638
|
+
b2bCollaborationMember: 4,
|
|
19639
|
+
b2bDirectConnectUser: 8,
|
|
19640
|
+
otherExternalUser: 16,
|
|
19641
|
+
serviceProvider: 32,
|
|
19642
|
+
unknownFutureValue: 64,
|
|
19643
|
+
}
|
|
19644
|
+
|
|
19645
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
19646
|
+
enum conditionalAccessPolicyState {
|
|
19647
|
+
enabled: 0,
|
|
19648
|
+
disabled: 1,
|
|
19649
|
+
enabledForReportingButNotEnforced: 2,
|
|
19650
|
+
}
|
|
19651
|
+
|
|
17699
19652
|
enum conditionalAccessStatus {
|
|
17700
19653
|
success: 0,
|
|
17701
19654
|
failure: 1,
|
|
@@ -17703,6 +19656,31 @@ namespace reference.`microsoft.graph` {
|
|
|
17703
19656
|
unknownFutureValue: 3,
|
|
17704
19657
|
}
|
|
17705
19658
|
|
|
19659
|
+
@graphFlags
|
|
19660
|
+
enum conditionalAccessTransferMethods {
|
|
19661
|
+
none: 0,
|
|
19662
|
+
deviceCodeFlow: 1,
|
|
19663
|
+
authenticationTransfer: 2,
|
|
19664
|
+
unknownFutureValue: 4,
|
|
19665
|
+
}
|
|
19666
|
+
|
|
19667
|
+
enum connectedOrganizationState {
|
|
19668
|
+
configured: 0,
|
|
19669
|
+
proposed: 1,
|
|
19670
|
+
unknownFutureValue: 2,
|
|
19671
|
+
}
|
|
19672
|
+
|
|
19673
|
+
enum consentRequestFilterByCurrentUserOptions {
|
|
19674
|
+
reviewer: 0,
|
|
19675
|
+
unknownFutureValue: 1,
|
|
19676
|
+
}
|
|
19677
|
+
|
|
19678
|
+
enum countryLookupMethodType {
|
|
19679
|
+
clientIpAddress: 0,
|
|
19680
|
+
authenticatorAppGps: 1,
|
|
19681
|
+
unknownFutureValue: 2,
|
|
19682
|
+
}
|
|
19683
|
+
|
|
17706
19684
|
enum crossTenantAccessPolicyTargetConfigurationAccessType {
|
|
17707
19685
|
allowed: 1,
|
|
17708
19686
|
blocked: 2,
|
|
@@ -17716,6 +19694,20 @@ namespace reference.`microsoft.graph` {
|
|
|
17716
19694
|
unknownFutureValue: 4,
|
|
17717
19695
|
}
|
|
17718
19696
|
|
|
19697
|
+
enum customExtensionCalloutInstanceStatus {
|
|
19698
|
+
calloutSent: 1,
|
|
19699
|
+
callbackReceived: 2,
|
|
19700
|
+
calloutFailed: 3,
|
|
19701
|
+
callbackTimedOut: 4,
|
|
19702
|
+
waitingForCallback: 5,
|
|
19703
|
+
unknownFutureValue: 6,
|
|
19704
|
+
}
|
|
19705
|
+
|
|
19706
|
+
enum customSecurityAttributeComparisonOperator {
|
|
19707
|
+
equals: 1,
|
|
19708
|
+
unknownFutureValue: 2,
|
|
19709
|
+
}
|
|
19710
|
+
|
|
17719
19711
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
17720
19712
|
enum dayOfWeek {
|
|
17721
19713
|
sunday: 0,
|
|
@@ -18652,6 +20644,14 @@ namespace reference.`microsoft.graph` {
|
|
|
18652
20644
|
Update: 3,
|
|
18653
20645
|
}
|
|
18654
20646
|
|
|
20647
|
+
enum errorCorrectionLevel {
|
|
20648
|
+
l: 1,
|
|
20649
|
+
m: 2,
|
|
20650
|
+
q: 3,
|
|
20651
|
+
h: 4,
|
|
20652
|
+
unknownFutureValue: 5,
|
|
20653
|
+
}
|
|
20654
|
+
|
|
18655
20655
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
18656
20656
|
enum escrowBehavior {
|
|
18657
20657
|
Default: 1,
|
|
@@ -18690,6 +20690,20 @@ namespace reference.`microsoft.graph` {
|
|
|
18690
20690
|
all: 2,
|
|
18691
20691
|
}
|
|
18692
20692
|
|
|
20693
|
+
enum externalEmailOtpState {
|
|
20694
|
+
default: 0,
|
|
20695
|
+
enabled: 1,
|
|
20696
|
+
disabled: 2,
|
|
20697
|
+
unknownFutureValue: 3,
|
|
20698
|
+
}
|
|
20699
|
+
|
|
20700
|
+
enum featureTargetType {
|
|
20701
|
+
group: 0,
|
|
20702
|
+
administrativeUnit: 1,
|
|
20703
|
+
role: 2,
|
|
20704
|
+
unknownFutureValue: 3,
|
|
20705
|
+
}
|
|
20706
|
+
|
|
18693
20707
|
enum federatedIdpMfaBehavior {
|
|
18694
20708
|
acceptIfMfaDoneByFederatedIdp: 0,
|
|
18695
20709
|
enforceMfaByFederatedIdp: 1,
|
|
@@ -18697,6 +20711,12 @@ namespace reference.`microsoft.graph` {
|
|
|
18697
20711
|
unknownFutureValue: 3,
|
|
18698
20712
|
}
|
|
18699
20713
|
|
|
20714
|
+
enum fido2RestrictionEnforcementType {
|
|
20715
|
+
allow: 0,
|
|
20716
|
+
block: 1,
|
|
20717
|
+
unknownFutureValue: 2,
|
|
20718
|
+
}
|
|
20719
|
+
|
|
18700
20720
|
enum fileStorageContainerBillingClassification {
|
|
18701
20721
|
standard: 0,
|
|
18702
20722
|
trial: 1,
|
|
@@ -18746,6 +20766,12 @@ namespace reference.`microsoft.graph` {
|
|
|
18746
20766
|
unknownFutureValue: 6,
|
|
18747
20767
|
}
|
|
18748
20768
|
|
|
20769
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
20770
|
+
enum filterMode {
|
|
20771
|
+
include: 0,
|
|
20772
|
+
exclude: 1,
|
|
20773
|
+
}
|
|
20774
|
+
|
|
18749
20775
|
/**
|
|
18750
20776
|
* Possible values for firewallCertificateRevocationListCheckMethod
|
|
18751
20777
|
*/
|
|
@@ -19552,6 +21578,13 @@ namespace reference.`microsoft.graph` {
|
|
|
19552
21578
|
review: 10,
|
|
19553
21579
|
}
|
|
19554
21580
|
|
|
21581
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
21582
|
+
enum microsoftAuthenticatorAuthenticationMode {
|
|
21583
|
+
deviceBasedPush: 0,
|
|
21584
|
+
push: 1,
|
|
21585
|
+
any: 2,
|
|
21586
|
+
}
|
|
21587
|
+
|
|
19555
21588
|
/**
|
|
19556
21589
|
* The enum to specify the channels for Microsoft Edge apps.
|
|
19557
21590
|
*/
|
|
@@ -19930,6 +21963,19 @@ namespace reference.`microsoft.graph` {
|
|
|
19930
21963
|
unknownFutureValue: 7,
|
|
19931
21964
|
}
|
|
19932
21965
|
|
|
21966
|
+
enum passkeyType {
|
|
21967
|
+
deviceBound: 0,
|
|
21968
|
+
synced: 1,
|
|
21969
|
+
unknownFutureValue: 2,
|
|
21970
|
+
}
|
|
21971
|
+
|
|
21972
|
+
@graphFlags
|
|
21973
|
+
enum passkeyTypes {
|
|
21974
|
+
deviceBound: 1,
|
|
21975
|
+
synced: 2,
|
|
21976
|
+
unknownFutureValue: 4,
|
|
21977
|
+
}
|
|
21978
|
+
|
|
19933
21979
|
enum permissionClassificationType {
|
|
19934
21980
|
low: 1,
|
|
19935
21981
|
medium: 2,
|
|
@@ -19944,6 +21990,12 @@ namespace reference.`microsoft.graph` {
|
|
|
19944
21990
|
application: 3,
|
|
19945
21991
|
}
|
|
19946
21992
|
|
|
21993
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
21994
|
+
enum persistentBrowserSessionMode {
|
|
21995
|
+
always: 0,
|
|
21996
|
+
`never`: 1,
|
|
21997
|
+
}
|
|
21998
|
+
|
|
19947
21999
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
19948
22000
|
enum phoneType {
|
|
19949
22001
|
home: 0,
|
|
@@ -19958,6 +22010,29 @@ namespace reference.`microsoft.graph` {
|
|
|
19958
22010
|
radio: 9,
|
|
19959
22011
|
}
|
|
19960
22012
|
|
|
22013
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
22014
|
+
enum physicalAddressType {
|
|
22015
|
+
`unknown`: 0,
|
|
22016
|
+
home: 1,
|
|
22017
|
+
business: 2,
|
|
22018
|
+
other: 3,
|
|
22019
|
+
}
|
|
22020
|
+
|
|
22021
|
+
enum plannerContainerType {
|
|
22022
|
+
group: 1,
|
|
22023
|
+
unknownFutureValue: 2,
|
|
22024
|
+
roster: 3,
|
|
22025
|
+
}
|
|
22026
|
+
|
|
22027
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
22028
|
+
enum plannerPreviewType {
|
|
22029
|
+
automatic: 0,
|
|
22030
|
+
noPreview: 1,
|
|
22031
|
+
checklist: 2,
|
|
22032
|
+
description: 3,
|
|
22033
|
+
reference: 4,
|
|
22034
|
+
}
|
|
22035
|
+
|
|
19961
22036
|
/**
|
|
19962
22037
|
* Supported platform types for policies.
|
|
19963
22038
|
*/
|
|
@@ -20974,6 +23049,14 @@ namespace reference.`microsoft.graph` {
|
|
|
20974
23049
|
unknownFutureValue: 10,
|
|
20975
23050
|
}
|
|
20976
23051
|
|
|
23052
|
+
enum scopeCollectionKind {
|
|
23053
|
+
allAllowed: 0,
|
|
23054
|
+
enumerated: 1,
|
|
23055
|
+
none: 2,
|
|
23056
|
+
scopeKindNotSet: 3,
|
|
23057
|
+
unknownFutureValue: 4,
|
|
23058
|
+
}
|
|
23059
|
+
|
|
20977
23060
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
20978
23061
|
enum scopeOperatorMultiValuedComparisonType {
|
|
20979
23062
|
All: 0,
|
|
@@ -21140,6 +23223,24 @@ namespace reference.`microsoft.graph` {
|
|
|
21140
23223
|
unknownFutureValue: 3,
|
|
21141
23224
|
}
|
|
21142
23225
|
|
|
23226
|
+
enum signInFrequencyAuthenticationType {
|
|
23227
|
+
primaryAndSecondaryAuthentication: 0,
|
|
23228
|
+
secondaryAuthentication: 1,
|
|
23229
|
+
unknownFutureValue: 2,
|
|
23230
|
+
}
|
|
23231
|
+
|
|
23232
|
+
enum signInFrequencyInterval {
|
|
23233
|
+
timeBased: 0,
|
|
23234
|
+
everyTime: 1,
|
|
23235
|
+
unknownFutureValue: 2,
|
|
23236
|
+
}
|
|
23237
|
+
|
|
23238
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
23239
|
+
enum signinFrequencyType {
|
|
23240
|
+
days: 0,
|
|
23241
|
+
hours: 1,
|
|
23242
|
+
}
|
|
23243
|
+
|
|
21143
23244
|
enum signInUserType {
|
|
21144
23245
|
member: 0,
|
|
21145
23246
|
guest: 1,
|
|
@@ -21192,6 +23293,21 @@ namespace reference.`microsoft.graph` {
|
|
|
21192
23293
|
high: 5,
|
|
21193
23294
|
}
|
|
21194
23295
|
|
|
23296
|
+
enum socialIdentitySourceType {
|
|
23297
|
+
facebook: 1,
|
|
23298
|
+
unknownFutureValue: 2,
|
|
23299
|
+
}
|
|
23300
|
+
|
|
23301
|
+
enum stagedFeatureName {
|
|
23302
|
+
passthroughAuthentication: 0,
|
|
23303
|
+
seamlessSso: 1,
|
|
23304
|
+
passwordHashSync: 2,
|
|
23305
|
+
emailAsAlternateId: 3,
|
|
23306
|
+
unknownFutureValue: 4,
|
|
23307
|
+
certificateBasedAuthentication: 5,
|
|
23308
|
+
multiFactorAuthentication: 6,
|
|
23309
|
+
}
|
|
23310
|
+
|
|
21195
23311
|
/**
|
|
21196
23312
|
* State Management Setting.
|
|
21197
23313
|
*/
|
|
@@ -21444,6 +23560,17 @@ namespace reference.`microsoft.graph` {
|
|
|
21444
23560
|
emailUser: 8,
|
|
21445
23561
|
}
|
|
21446
23562
|
|
|
23563
|
+
@graphFlags
|
|
23564
|
+
enum templateScenarios {
|
|
23565
|
+
new: 0,
|
|
23566
|
+
secureFoundation: 1,
|
|
23567
|
+
zeroTrust: 2,
|
|
23568
|
+
remoteWork: 4,
|
|
23569
|
+
protectAdmins: 8,
|
|
23570
|
+
emergingThreats: 16,
|
|
23571
|
+
unknownFutureValue: 32,
|
|
23572
|
+
}
|
|
23573
|
+
|
|
21447
23574
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
21448
23575
|
enum timeZoneStandard {
|
|
21449
23576
|
windows: 0,
|
|
@@ -21498,6 +23625,12 @@ namespace reference.`microsoft.graph` {
|
|
|
21498
23625
|
unknownFutureValue: 10,
|
|
21499
23626
|
}
|
|
21500
23627
|
|
|
23628
|
+
enum userAction {
|
|
23629
|
+
registerSecurityInformation: 0,
|
|
23630
|
+
registerOrJoinDevices: 1,
|
|
23631
|
+
unknownFutureValue: 2,
|
|
23632
|
+
}
|
|
23633
|
+
|
|
21501
23634
|
enum userDefaultAuthenticationMethod {
|
|
21502
23635
|
push: 0,
|
|
21503
23636
|
oath: 1,
|
|
@@ -21626,6 +23759,12 @@ namespace reference.`microsoft.graph` {
|
|
|
21626
23759
|
unknownFutureValue: 7,
|
|
21627
23760
|
}
|
|
21628
23761
|
|
|
23762
|
+
enum userSignInRecommendationScope {
|
|
23763
|
+
tenant: 0,
|
|
23764
|
+
application: 1,
|
|
23765
|
+
unknownFutureValue: 2,
|
|
23766
|
+
}
|
|
23767
|
+
|
|
21629
23768
|
/**
|
|
21630
23769
|
* Generic visibility state.
|
|
21631
23770
|
*/
|
|
@@ -21830,6 +23969,31 @@ namespace reference.`microsoft.graph` {
|
|
|
21830
23969
|
showOrganizerAndTimeAndSubject: 2,
|
|
21831
23970
|
}
|
|
21832
23971
|
|
|
23972
|
+
@graphFlags
|
|
23973
|
+
enum whatIfAnalysisReasons {
|
|
23974
|
+
notSet: 0,
|
|
23975
|
+
notEnoughInformation: 1,
|
|
23976
|
+
invalidCondition: 2,
|
|
23977
|
+
users: 4,
|
|
23978
|
+
workloadIdentities: 8,
|
|
23979
|
+
application: 16,
|
|
23980
|
+
userActions: 32,
|
|
23981
|
+
authenticationContext: 64,
|
|
23982
|
+
devicePlatform: 128,
|
|
23983
|
+
devices: 256,
|
|
23984
|
+
clientApps: 512,
|
|
23985
|
+
location: 1024,
|
|
23986
|
+
signInRisk: 2048,
|
|
23987
|
+
emptyPolicy: 4096,
|
|
23988
|
+
invalidPolicy: 8192,
|
|
23989
|
+
policyNotEnabled: 16384,
|
|
23990
|
+
userRisk: 32768,
|
|
23991
|
+
time: 65536,
|
|
23992
|
+
insiderRisk: 131072,
|
|
23993
|
+
authenticationFlow: 262144,
|
|
23994
|
+
unknownFutureValue: 524288,
|
|
23995
|
+
}
|
|
23996
|
+
|
|
21833
23997
|
/**
|
|
21834
23998
|
* Contains value for delivery optimization priority.
|
|
21835
23999
|
*/
|
|
@@ -23028,6 +25192,47 @@ namespace reference.`microsoft.graph` {
|
|
|
23028
25192
|
unknownFutureValue: 2,
|
|
23029
25193
|
}
|
|
23030
25194
|
|
|
25195
|
+
enum workLocationSource {
|
|
25196
|
+
none: 0,
|
|
25197
|
+
manual: 1,
|
|
25198
|
+
scheduled: 2,
|
|
25199
|
+
automatic: 3,
|
|
25200
|
+
unknownFutureValue: 4,
|
|
25201
|
+
}
|
|
25202
|
+
|
|
25203
|
+
enum workLocationType {
|
|
25204
|
+
unspecified: 0,
|
|
25205
|
+
office: 1,
|
|
25206
|
+
remote: 2,
|
|
25207
|
+
timeOff: 3,
|
|
25208
|
+
unknownFutureValue: 4,
|
|
25209
|
+
}
|
|
25210
|
+
|
|
25211
|
+
enum x509CertificateAffinityLevel {
|
|
25212
|
+
low: 0,
|
|
25213
|
+
high: 1,
|
|
25214
|
+
unknownFutureValue: 2,
|
|
25215
|
+
}
|
|
25216
|
+
|
|
25217
|
+
enum x509CertificateAuthenticationMode {
|
|
25218
|
+
x509CertificateSingleFactor: 0,
|
|
25219
|
+
x509CertificateMultiFactor: 1,
|
|
25220
|
+
unknownFutureValue: 2,
|
|
25221
|
+
}
|
|
25222
|
+
|
|
25223
|
+
enum x509CertificateIssuerHintsState {
|
|
25224
|
+
disabled: 0,
|
|
25225
|
+
enabled: 1,
|
|
25226
|
+
unknownFutureValue: 2,
|
|
25227
|
+
}
|
|
25228
|
+
|
|
25229
|
+
enum x509CertificateRuleType {
|
|
25230
|
+
issuerSubject: 0,
|
|
25231
|
+
policyOID: 1,
|
|
25232
|
+
unknownFutureValue: 2,
|
|
25233
|
+
issuerSubjectAndPolicyOID: 3,
|
|
25234
|
+
}
|
|
25235
|
+
|
|
23031
25236
|
}
|
|
23032
25237
|
@publicNamespace("microsoft.graph.security")
|
|
23033
25238
|
namespace reference.`microsoft.graph.security` {
|