@microsoft/typespec-msgraph-reference 1.0.3 → 1.0.4
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 +9 -0
- package/lib/Bleu/Beta/main.tsp +2222 -51
- package/lib/Bleu/V1.0/main.tsp +2203 -51
- package/lib/Delos/Beta/main.tsp +1721 -49
- package/lib/Delos/V1.0/main.tsp +308 -20
- package/lib/Fairfax/Beta/main.tsp +704 -60
- package/lib/Fairfax/V1.0/main.tsp +304 -20
- package/lib/GovSG/Beta/main.tsp +113 -13
- package/lib/GovSG/V1.0/main.tsp +195 -0
- package/lib/Mooncake/Beta/main.tsp +653 -50
- package/lib/Mooncake/V1.0/main.tsp +171 -20
- package/lib/Prod/Beta/main.tsp +3553 -216
- package/lib/Prod/V1.0/main.tsp +979 -26
- package/lib/USNat/Beta/main.tsp +301 -37
- package/lib/USNat/V1.0/main.tsp +399 -3
- package/lib/USSec/Beta/main.tsp +700 -65
- package/lib/USSec/V1.0/main.tsp +702 -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;
|
|
@@ -340,6 +579,11 @@ namespace reference.`microsoft.graph` {
|
|
|
340
579
|
type: attributeMappingSourceType;
|
|
341
580
|
}
|
|
342
581
|
|
|
582
|
+
@complex model attributeRuleMembers extends subjectSet {
|
|
583
|
+
description: string | null;
|
|
584
|
+
membershipRule: string | null;
|
|
585
|
+
}
|
|
586
|
+
|
|
343
587
|
@complex model audio {
|
|
344
588
|
album: string | null;
|
|
345
589
|
albumArtist: string | null;
|
|
@@ -451,6 +695,38 @@ namespace reference.`microsoft.graph` {
|
|
|
451
695
|
resourceId: string | null;
|
|
452
696
|
}
|
|
453
697
|
|
|
698
|
+
@complex model authContext extends signInContext {
|
|
699
|
+
authenticationContextValue: string | null;
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
@complex model authenticationFlow {
|
|
703
|
+
transferMethod: conditionalAccessTransferMethods | null;
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
@complex model authenticationMethodFeatureConfiguration {
|
|
707
|
+
excludeTarget: featureTarget | null;
|
|
708
|
+
includeTarget: featureTarget | null;
|
|
709
|
+
state: advancedConfigState | null;
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
@complex model authenticationMethodsRegistrationCampaign {
|
|
713
|
+
excludeTargets: excludeTarget[];
|
|
714
|
+
includeTargets: authenticationMethodsRegistrationCampaignIncludeTarget[];
|
|
715
|
+
snoozeDurationInDays: int32;
|
|
716
|
+
state: advancedConfigState;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
@complex model authenticationMethodsRegistrationCampaignIncludeTarget {
|
|
720
|
+
id: string;
|
|
721
|
+
targetedAuthenticationMethod: string | null;
|
|
722
|
+
targetType: authenticationMethodTargetType;
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
@complex model authenticationStrengthUsage {
|
|
726
|
+
@references mfa: conditionalAccessPolicy[];
|
|
727
|
+
@references none: conditionalAccessPolicy[];
|
|
728
|
+
}
|
|
729
|
+
|
|
454
730
|
@complex model authorizationInfo {
|
|
455
731
|
certificateUserIds: string[] | null;
|
|
456
732
|
}
|
|
@@ -471,9 +747,18 @@ namespace reference.`microsoft.graph` {
|
|
|
471
747
|
status: automaticRepliesStatus | null;
|
|
472
748
|
}
|
|
473
749
|
|
|
750
|
+
@complex model azureActiveDirectoryTenant extends identitySource {
|
|
751
|
+
displayName: string | null;
|
|
752
|
+
tenantId: string | null;
|
|
753
|
+
}
|
|
754
|
+
|
|
474
755
|
@complex model azureADJoinPolicy {
|
|
475
756
|
allowedToJoin: deviceRegistrationMembership | null;
|
|
476
757
|
isAdminConfigurable: boolean | null;
|
|
758
|
+
localAdmins: localAdminSettings | null;
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
@complex model azureAdPopTokenAuthentication extends customExtensionAuthenticationConfiguration {
|
|
477
762
|
}
|
|
478
763
|
|
|
479
764
|
@complex model azureADRegistrationPolicy {
|
|
@@ -738,6 +1023,10 @@ namespace reference.`microsoft.graph` {
|
|
|
738
1023
|
displayAs: string | null;
|
|
739
1024
|
}
|
|
740
1025
|
|
|
1026
|
+
@complex model cloudAppSecuritySessionControl extends conditionalAccessSessionControl {
|
|
1027
|
+
cloudAppSecurityType: cloudAppSecuritySessionControlType | null;
|
|
1028
|
+
}
|
|
1029
|
+
|
|
741
1030
|
@complex model columnValidation {
|
|
742
1031
|
defaultLanguage: string | null;
|
|
743
1032
|
descriptions: displayNameLocalization[] | null;
|
|
@@ -764,6 +1053,113 @@ namespace reference.`microsoft.graph` {
|
|
|
764
1053
|
target: deviceAndAppManagementAssignmentTarget | null;
|
|
765
1054
|
}
|
|
766
1055
|
|
|
1056
|
+
@complex model conditionalAccessAllExternalTenants extends conditionalAccessExternalTenants {
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
@complex model conditionalAccessApplications {
|
|
1060
|
+
applicationFilter: conditionalAccessFilter | null;
|
|
1061
|
+
excludeApplications: string[];
|
|
1062
|
+
includeApplications: string[];
|
|
1063
|
+
includeAuthenticationContextClassReferences: string[];
|
|
1064
|
+
includeUserActions: string[];
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
@complex model conditionalAccessAuthenticationFlows {
|
|
1068
|
+
transferMethods: conditionalAccessTransferMethods;
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
@complex model conditionalAccessClientApplications {
|
|
1072
|
+
excludeServicePrincipals: string[];
|
|
1073
|
+
includeServicePrincipals: string[];
|
|
1074
|
+
servicePrincipalFilter: conditionalAccessFilter | null;
|
|
1075
|
+
}
|
|
1076
|
+
|
|
1077
|
+
@complex model conditionalAccessConditionSet {
|
|
1078
|
+
applications: conditionalAccessApplications | null;
|
|
1079
|
+
authenticationFlows: conditionalAccessAuthenticationFlows | null;
|
|
1080
|
+
clientApplications: conditionalAccessClientApplications | null;
|
|
1081
|
+
clientAppTypes: conditionalAccessClientApp[];
|
|
1082
|
+
devices: conditionalAccessDevices | null;
|
|
1083
|
+
locations: conditionalAccessLocations | null;
|
|
1084
|
+
platforms: conditionalAccessPlatforms | null;
|
|
1085
|
+
servicePrincipalRiskLevels: riskLevel[];
|
|
1086
|
+
signInRiskLevels: riskLevel[];
|
|
1087
|
+
userRiskLevels: riskLevel[];
|
|
1088
|
+
users: conditionalAccessUsers | null;
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
@complex model conditionalAccessDevices {
|
|
1092
|
+
deviceFilter: conditionalAccessFilter | null;
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
@complex model conditionalAccessEnumeratedExternalTenants extends conditionalAccessExternalTenants {
|
|
1096
|
+
members: string[];
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
@abstract
|
|
1100
|
+
@complex model conditionalAccessExternalTenants {
|
|
1101
|
+
membershipKind: conditionalAccessExternalTenantsMembershipKind | null;
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
@complex model conditionalAccessFilter {
|
|
1105
|
+
mode: filterMode;
|
|
1106
|
+
rule: string;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
@complex model conditionalAccessGrantControls {
|
|
1110
|
+
builtInControls: conditionalAccessGrantControl[];
|
|
1111
|
+
customAuthenticationFactors: string[];
|
|
1112
|
+
operator: string | null;
|
|
1113
|
+
termsOfUse: string[];
|
|
1114
|
+
@contains authenticationStrength: authenticationStrengthPolicy | null;
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
@complex model conditionalAccessGuestsOrExternalUsers {
|
|
1118
|
+
externalTenants: conditionalAccessExternalTenants | null;
|
|
1119
|
+
guestOrExternalUserTypes: conditionalAccessGuestOrExternalUserTypes;
|
|
1120
|
+
}
|
|
1121
|
+
|
|
1122
|
+
@complex model conditionalAccessLocations {
|
|
1123
|
+
excludeLocations: string[];
|
|
1124
|
+
includeLocations: string[];
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
@complex model conditionalAccessPlatforms {
|
|
1128
|
+
excludePlatforms: conditionalAccessDevicePlatform[];
|
|
1129
|
+
includePlatforms: conditionalAccessDevicePlatform[];
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
@complex model conditionalAccessPolicyDetail {
|
|
1133
|
+
conditions: conditionalAccessConditionSet;
|
|
1134
|
+
grantControls: conditionalAccessGrantControls | null;
|
|
1135
|
+
sessionControls: conditionalAccessSessionControls | null;
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
@abstract
|
|
1139
|
+
@complex model conditionalAccessSessionControl {
|
|
1140
|
+
isEnabled: boolean | null;
|
|
1141
|
+
}
|
|
1142
|
+
|
|
1143
|
+
@complex model conditionalAccessSessionControls {
|
|
1144
|
+
applicationEnforcedRestrictions: applicationEnforcedRestrictionsSessionControl | null;
|
|
1145
|
+
cloudAppSecurity: cloudAppSecuritySessionControl | null;
|
|
1146
|
+
disableResilienceDefaults: boolean | null;
|
|
1147
|
+
persistentBrowser: persistentBrowserSessionControl | null;
|
|
1148
|
+
secureSignInSession: secureSignInSessionControl | null;
|
|
1149
|
+
signInFrequency: signInFrequencySessionControl | null;
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
@complex model conditionalAccessUsers {
|
|
1153
|
+
excludeGroups: string[];
|
|
1154
|
+
excludeGuestsOrExternalUsers: conditionalAccessGuestsOrExternalUsers | null;
|
|
1155
|
+
excludeRoles: string[];
|
|
1156
|
+
excludeUsers: string[];
|
|
1157
|
+
includeGroups: string[];
|
|
1158
|
+
includeGuestsOrExternalUsers: conditionalAccessGuestsOrExternalUsers | null;
|
|
1159
|
+
includeRoles: string[];
|
|
1160
|
+
includeUsers: string[];
|
|
1161
|
+
}
|
|
1162
|
+
|
|
767
1163
|
/**
|
|
768
1164
|
* configuration Manager client enabled features
|
|
769
1165
|
*/
|
|
@@ -804,6 +1200,15 @@ namespace reference.`microsoft.graph` {
|
|
|
804
1200
|
collectionId: string | null;
|
|
805
1201
|
}
|
|
806
1202
|
|
|
1203
|
+
@complex model connectedOrganizationMembers extends subjectSet {
|
|
1204
|
+
connectedOrganizationId: string | null;
|
|
1205
|
+
description: string | null;
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
@complex model connectionInfo {
|
|
1209
|
+
url: string | null;
|
|
1210
|
+
}
|
|
1211
|
+
|
|
807
1212
|
@complex model containerFilter {
|
|
808
1213
|
includedContainers: string[] | null;
|
|
809
1214
|
}
|
|
@@ -843,6 +1248,12 @@ namespace reference.`microsoft.graph` {
|
|
|
843
1248
|
@complex model createAction {
|
|
844
1249
|
}
|
|
845
1250
|
|
|
1251
|
+
@complex model crossCloudAzureActiveDirectoryTenant extends identitySource {
|
|
1252
|
+
cloudInstance: string;
|
|
1253
|
+
displayName: string | null;
|
|
1254
|
+
tenantId: string | null;
|
|
1255
|
+
}
|
|
1256
|
+
|
|
846
1257
|
@complex model crossTenantAccessPolicyB2BSetting {
|
|
847
1258
|
applications: crossTenantAccessPolicyTargetConfiguration | null;
|
|
848
1259
|
usersAndGroups: crossTenantAccessPolicyTargetConfiguration | null;
|
|
@@ -872,7 +1283,51 @@ namespace reference.`microsoft.graph` {
|
|
|
872
1283
|
locale: string | null;
|
|
873
1284
|
}
|
|
874
1285
|
|
|
1286
|
+
@complex model customAppManagementApplicationConfiguration {
|
|
1287
|
+
identifierUris: identifierUriConfiguration | null;
|
|
1288
|
+
}
|
|
1289
|
+
|
|
875
1290
|
@complex model customAppManagementConfiguration extends appManagementConfiguration {
|
|
1291
|
+
applicationRestrictions: customAppManagementApplicationConfiguration | null;
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1294
|
+
@abstract
|
|
1295
|
+
@complex model customExtensionAuthenticationConfiguration {
|
|
1296
|
+
}
|
|
1297
|
+
|
|
1298
|
+
@complex model customExtensionCallbackConfiguration {
|
|
1299
|
+
timeoutDuration: duration | null;
|
|
1300
|
+
}
|
|
1301
|
+
|
|
1302
|
+
@complex model customExtensionCalloutInstance {
|
|
1303
|
+
customExtensionId: string | null;
|
|
1304
|
+
detail: string | null;
|
|
1305
|
+
externalCorrelationId: string | null;
|
|
1306
|
+
id: string | null;
|
|
1307
|
+
status: customExtensionCalloutInstanceStatus | null;
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1310
|
+
@complex model customExtensionClientConfiguration {
|
|
1311
|
+
maximumRetries: int32 | null;
|
|
1312
|
+
timeoutInMilliseconds: int32 | null;
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
@abstract
|
|
1316
|
+
@complex model customExtensionData {
|
|
1317
|
+
}
|
|
1318
|
+
|
|
1319
|
+
@abstract
|
|
1320
|
+
@complex model customExtensionEndpointConfiguration {
|
|
1321
|
+
}
|
|
1322
|
+
|
|
1323
|
+
@abstract
|
|
1324
|
+
@complex model customSecurityAttributeExemption {
|
|
1325
|
+
id: string;
|
|
1326
|
+
operator: customSecurityAttributeComparisonOperator;
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1329
|
+
@complex model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
|
|
1330
|
+
value: string | null;
|
|
876
1331
|
}
|
|
877
1332
|
|
|
878
1333
|
@open
|
|
@@ -1332,6 +1787,38 @@ namespace reference.`microsoft.graph` {
|
|
|
1332
1787
|
windowsPE: string | null;
|
|
1333
1788
|
}
|
|
1334
1789
|
|
|
1790
|
+
@complex model deviceInfo {
|
|
1791
|
+
deviceId: string | null;
|
|
1792
|
+
displayName: string | null;
|
|
1793
|
+
enrollmentProfileName: string | null;
|
|
1794
|
+
extensionAttribute1: string | null;
|
|
1795
|
+
extensionAttribute10: string | null;
|
|
1796
|
+
extensionAttribute11: string | null;
|
|
1797
|
+
extensionAttribute12: string | null;
|
|
1798
|
+
extensionAttribute13: string | null;
|
|
1799
|
+
extensionAttribute14: string | null;
|
|
1800
|
+
extensionAttribute15: string | null;
|
|
1801
|
+
extensionAttribute2: string | null;
|
|
1802
|
+
extensionAttribute3: string | null;
|
|
1803
|
+
extensionAttribute4: string | null;
|
|
1804
|
+
extensionAttribute5: string | null;
|
|
1805
|
+
extensionAttribute6: string | null;
|
|
1806
|
+
extensionAttribute7: string | null;
|
|
1807
|
+
extensionAttribute8: string | null;
|
|
1808
|
+
extensionAttribute9: string | null;
|
|
1809
|
+
isCompliant: boolean | null;
|
|
1810
|
+
manufacturer: string | null;
|
|
1811
|
+
mdmAppId: string | null;
|
|
1812
|
+
`model`: string | null;
|
|
1813
|
+
operatingSystem: string | null;
|
|
1814
|
+
operatingSystemVersion: string | null;
|
|
1815
|
+
ownership: string | null;
|
|
1816
|
+
physicalIds: string[] | null;
|
|
1817
|
+
profileType: string | null;
|
|
1818
|
+
systemLabels: string[] | null;
|
|
1819
|
+
trustType: string | null;
|
|
1820
|
+
}
|
|
1821
|
+
|
|
1335
1822
|
@complex model deviceLocalCredential {
|
|
1336
1823
|
accountName: string;
|
|
1337
1824
|
accountSid: string;
|
|
@@ -1475,6 +1962,9 @@ namespace reference.`microsoft.graph` {
|
|
|
1475
1962
|
@complex model Dictionary {
|
|
1476
1963
|
}
|
|
1477
1964
|
|
|
1965
|
+
@complex model disableAndDeleteUserApplyAction extends accessReviewApplyAction {
|
|
1966
|
+
}
|
|
1967
|
+
|
|
1478
1968
|
@complex model displayNameLocalization {
|
|
1479
1969
|
displayName: string | null;
|
|
1480
1970
|
languageTag: string | null;
|
|
@@ -1502,6 +1992,11 @@ namespace reference.`microsoft.graph` {
|
|
|
1502
1992
|
versionId: string | null;
|
|
1503
1993
|
}
|
|
1504
1994
|
|
|
1995
|
+
@complex model domainIdentitySource extends identitySource {
|
|
1996
|
+
displayName: string | null;
|
|
1997
|
+
domainName: string | null;
|
|
1998
|
+
}
|
|
1999
|
+
|
|
1505
2000
|
@complex model domainState {
|
|
1506
2001
|
@computed lastActionDateTime: offsetDateTime | null;
|
|
1507
2002
|
operation: string | null;
|
|
@@ -1568,15 +2063,30 @@ namespace reference.`microsoft.graph` {
|
|
|
1568
2063
|
division: string | null;
|
|
1569
2064
|
}
|
|
1570
2065
|
|
|
2066
|
+
@complex model entitlementManagementSchedule {
|
|
2067
|
+
expiration: expirationPattern | null;
|
|
2068
|
+
recurrence: patternedRecurrence | null;
|
|
2069
|
+
startDateTime: offsetDateTime | null;
|
|
2070
|
+
}
|
|
2071
|
+
|
|
1571
2072
|
@complex model enumeratedDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
1572
2073
|
groups: string[] | null;
|
|
1573
2074
|
users: string[] | null;
|
|
1574
2075
|
}
|
|
1575
2076
|
|
|
2077
|
+
@complex model enumeratedScopes extends inheritableScopes {
|
|
2078
|
+
scopes: string[];
|
|
2079
|
+
}
|
|
2080
|
+
|
|
1576
2081
|
@abstract
|
|
1577
2082
|
@complex model eventMessageDetail {
|
|
1578
2083
|
}
|
|
1579
2084
|
|
|
2085
|
+
@complex model excludeTarget {
|
|
2086
|
+
id: string;
|
|
2087
|
+
targetType: authenticationMethodTargetType;
|
|
2088
|
+
}
|
|
2089
|
+
|
|
1580
2090
|
/**
|
|
1581
2091
|
* Represents a group that should be excluded from an assignment.
|
|
1582
2092
|
*/
|
|
@@ -1599,10 +2109,30 @@ namespace reference.`microsoft.graph` {
|
|
|
1599
2109
|
type: string | null;
|
|
1600
2110
|
}
|
|
1601
2111
|
|
|
2112
|
+
@complex model externalDomainFederation extends identitySource {
|
|
2113
|
+
displayName: string | null;
|
|
2114
|
+
domainName: string | null;
|
|
2115
|
+
issuerUri: string | null;
|
|
2116
|
+
}
|
|
2117
|
+
|
|
2118
|
+
@complex model externalSponsors extends subjectSet {
|
|
2119
|
+
}
|
|
2120
|
+
|
|
1602
2121
|
@complex model extractSensitivityLabelsResult {
|
|
1603
2122
|
labels: sensitivityLabelAssignment[] | null;
|
|
1604
2123
|
}
|
|
1605
2124
|
|
|
2125
|
+
@complex model featureTarget {
|
|
2126
|
+
id: string | null;
|
|
2127
|
+
targetType: featureTargetType | null;
|
|
2128
|
+
}
|
|
2129
|
+
|
|
2130
|
+
@complex model fido2KeyRestrictions {
|
|
2131
|
+
aaGuids: string[] | null;
|
|
2132
|
+
enforcementType: fido2RestrictionEnforcementType | null;
|
|
2133
|
+
isEnforced: boolean | null;
|
|
2134
|
+
}
|
|
2135
|
+
|
|
1606
2136
|
@complex model file {
|
|
1607
2137
|
hashes: hashes | null;
|
|
1608
2138
|
mimeType: string | null;
|
|
@@ -1768,6 +2298,9 @@ namespace reference.`microsoft.graph` {
|
|
|
1768
2298
|
groupId: string | null;
|
|
1769
2299
|
}
|
|
1770
2300
|
|
|
2301
|
+
@complex model groupPeerOutlierRecommendationInsightSettings extends accessReviewRecommendationInsightSetting {
|
|
2302
|
+
}
|
|
2303
|
+
|
|
1771
2304
|
@complex model hashes {
|
|
1772
2305
|
crc32Hash: string | null;
|
|
1773
2306
|
quickXorHash: string | null;
|
|
@@ -1779,6 +2312,20 @@ namespace reference.`microsoft.graph` {
|
|
|
1779
2312
|
isPicture: boolean | null;
|
|
1780
2313
|
}
|
|
1781
2314
|
|
|
2315
|
+
@complex model identifierUriConfiguration {
|
|
2316
|
+
nonDefaultUriAddition: identifierUriRestriction | null;
|
|
2317
|
+
uriAdditionWithoutUniqueTenantIdentifier: identifierUriRestriction | null;
|
|
2318
|
+
}
|
|
2319
|
+
|
|
2320
|
+
@complex model identifierUriRestriction {
|
|
2321
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
2322
|
+
excludeAppsReceivingV2Tokens: boolean | null;
|
|
2323
|
+
excludeSaml: boolean | null;
|
|
2324
|
+
isStateSetByMicrosoft: boolean;
|
|
2325
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
2326
|
+
state: appManagementRestrictionState;
|
|
2327
|
+
}
|
|
2328
|
+
|
|
1782
2329
|
@open
|
|
1783
2330
|
@complex model identity {
|
|
1784
2331
|
displayName: string | null;
|
|
@@ -1792,6 +2339,10 @@ namespace reference.`microsoft.graph` {
|
|
|
1792
2339
|
user: identity | null;
|
|
1793
2340
|
}
|
|
1794
2341
|
|
|
2342
|
+
@abstract
|
|
2343
|
+
@complex model identitySource {
|
|
2344
|
+
}
|
|
2345
|
+
|
|
1795
2346
|
@complex model idleSessionSignOut {
|
|
1796
2347
|
isEnabled: boolean | null;
|
|
1797
2348
|
signOutAfterInSeconds: int64 | null;
|
|
@@ -1832,6 +2383,11 @@ namespace reference.`microsoft.graph` {
|
|
|
1832
2383
|
outboundAllowed: boolean | null;
|
|
1833
2384
|
}
|
|
1834
2385
|
|
|
2386
|
+
@complex model includeTarget {
|
|
2387
|
+
id: string;
|
|
2388
|
+
targetType: authenticationMethodTargetType;
|
|
2389
|
+
}
|
|
2390
|
+
|
|
1835
2391
|
@open
|
|
1836
2392
|
@complex model incompleteData {
|
|
1837
2393
|
missingDataBeforeDateTime: offsetDateTime | null;
|
|
@@ -1846,6 +2402,11 @@ namespace reference.`microsoft.graph` {
|
|
|
1846
2402
|
termsOfServiceUrl: string | null;
|
|
1847
2403
|
}
|
|
1848
2404
|
|
|
2405
|
+
@abstract
|
|
2406
|
+
@complex model inheritableScopes {
|
|
2407
|
+
kind: scopeCollectionKind;
|
|
2408
|
+
}
|
|
2409
|
+
|
|
1849
2410
|
@open
|
|
1850
2411
|
@complex model initiator extends identity {
|
|
1851
2412
|
initiatorType: initiatorType | null;
|
|
@@ -1876,6 +2437,9 @@ namespace reference.`microsoft.graph` {
|
|
|
1876
2437
|
resourceAppId: string;
|
|
1877
2438
|
}
|
|
1878
2439
|
|
|
2440
|
+
@complex model internalSponsors extends subjectSet {
|
|
2441
|
+
}
|
|
2442
|
+
|
|
1879
2443
|
@complex model internetMessageHeader {
|
|
1880
2444
|
name: string | null;
|
|
1881
2445
|
value: string | null;
|
|
@@ -2318,6 +2882,11 @@ namespace reference.`microsoft.graph` {
|
|
|
2318
2882
|
isEnabled: boolean | null;
|
|
2319
2883
|
}
|
|
2320
2884
|
|
|
2885
|
+
@complex model localAdminSettings {
|
|
2886
|
+
enableGlobalAdmins: boolean | null;
|
|
2887
|
+
registeringUsers: deviceRegistrationMembership | null;
|
|
2888
|
+
}
|
|
2889
|
+
|
|
2321
2890
|
@complex model localeInfo {
|
|
2322
2891
|
displayName: string | null;
|
|
2323
2892
|
locale: string | null;
|
|
@@ -2344,6 +2913,13 @@ namespace reference.`microsoft.graph` {
|
|
|
2344
2913
|
uniqueIdType: locationUniqueIdType | null;
|
|
2345
2914
|
}
|
|
2346
2915
|
|
|
2916
|
+
@complex model logicAppTriggerEndpointConfiguration extends customExtensionEndpointConfiguration {
|
|
2917
|
+
logicAppWorkflowName: string | null;
|
|
2918
|
+
resourceGroupName: string | null;
|
|
2919
|
+
subscriptionId: string | null;
|
|
2920
|
+
url: string | null;
|
|
2921
|
+
}
|
|
2922
|
+
|
|
2347
2923
|
@complex model loginPageLayoutConfiguration {
|
|
2348
2924
|
isFooterShown: boolean | null;
|
|
2349
2925
|
isHeaderShown: boolean | null;
|
|
@@ -2742,6 +3318,11 @@ namespace reference.`microsoft.graph` {
|
|
|
2742
3318
|
value: Json | null;
|
|
2743
3319
|
}
|
|
2744
3320
|
|
|
3321
|
+
@complex model microsoftAuthenticatorFeatureSettings {
|
|
3322
|
+
displayAppInformationRequiredState: authenticationMethodFeatureConfiguration | null;
|
|
3323
|
+
displayLocationInformationRequiredState: authenticationMethodFeatureConfiguration | null;
|
|
3324
|
+
}
|
|
3325
|
+
|
|
2745
3326
|
/**
|
|
2746
3327
|
* Contains properties used to assign an Microsoft Store for Business mobile app to a group.
|
|
2747
3328
|
*/
|
|
@@ -2812,6 +3393,9 @@ namespace reference.`microsoft.graph` {
|
|
|
2812
3393
|
@complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
2813
3394
|
}
|
|
2814
3395
|
|
|
3396
|
+
@complex model noScopes extends inheritableScopes {
|
|
3397
|
+
}
|
|
3398
|
+
|
|
2815
3399
|
@complex model numberColumn {
|
|
2816
3400
|
decimalPlaces: string | null;
|
|
2817
3401
|
displayAs: string | null;
|
|
@@ -3020,6 +3604,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3020
3604
|
value: string | null;
|
|
3021
3605
|
}
|
|
3022
3606
|
|
|
3607
|
+
@complex model openIdConnectSetting {
|
|
3608
|
+
clientId: string;
|
|
3609
|
+
discoveryUrl: string;
|
|
3610
|
+
}
|
|
3611
|
+
|
|
3023
3612
|
@complex model operationError {
|
|
3024
3613
|
code: string | null;
|
|
3025
3614
|
message: string | null;
|
|
@@ -3089,7 +3678,7 @@ namespace reference.`microsoft.graph` {
|
|
|
3089
3678
|
*/
|
|
3090
3679
|
privacySettingsHidden: boolean;
|
|
3091
3680
|
/**
|
|
3092
|
-
* The type of user. Possible values are administrator and standard. Default value is administrator.
|
|
3681
|
+
* The type of user. Possible values are administrator and standard. Default value is administrator. Yes No
|
|
3093
3682
|
|
|
3094
3683
|
*/
|
|
3095
3684
|
userType: windowsUserType;
|
|
@@ -3129,6 +3718,10 @@ namespace reference.`microsoft.graph` {
|
|
|
3129
3718
|
password: string | null;
|
|
3130
3719
|
}
|
|
3131
3720
|
|
|
3721
|
+
@complex model passwordResetResponse {
|
|
3722
|
+
newPassword: string | null;
|
|
3723
|
+
}
|
|
3724
|
+
|
|
3132
3725
|
@complex model patternedRecurrence {
|
|
3133
3726
|
pattern: recurrencePattern | null;
|
|
3134
3727
|
range: recurrenceRange | null;
|
|
@@ -3154,6 +3747,10 @@ namespace reference.`microsoft.graph` {
|
|
|
3154
3747
|
value: string | null;
|
|
3155
3748
|
}
|
|
3156
3749
|
|
|
3750
|
+
@complex model persistentBrowserSessionControl extends conditionalAccessSessionControl {
|
|
3751
|
+
mode: persistentBrowserSessionMode | null;
|
|
3752
|
+
}
|
|
3753
|
+
|
|
3157
3754
|
@complex model personOrGroupColumn {
|
|
3158
3755
|
allowMultipleSelection: boolean | null;
|
|
3159
3756
|
chooseFromType: string | null;
|
|
@@ -3201,6 +3798,86 @@ namespace reference.`microsoft.graph` {
|
|
|
3201
3798
|
street: string | null;
|
|
3202
3799
|
}
|
|
3203
3800
|
|
|
3801
|
+
@open
|
|
3802
|
+
@complex model plannerAppliedCategories {
|
|
3803
|
+
}
|
|
3804
|
+
|
|
3805
|
+
@complex model plannerAssignment {
|
|
3806
|
+
assignedBy: identitySet | null;
|
|
3807
|
+
assignedDateTime: offsetDateTime | null;
|
|
3808
|
+
orderHint: string | null;
|
|
3809
|
+
}
|
|
3810
|
+
|
|
3811
|
+
@open
|
|
3812
|
+
@complex model plannerAssignments {
|
|
3813
|
+
}
|
|
3814
|
+
|
|
3815
|
+
@complex model plannerCategoryDescriptions {
|
|
3816
|
+
category1: string | null;
|
|
3817
|
+
category10: string | null;
|
|
3818
|
+
category11: string | null;
|
|
3819
|
+
category12: string | null;
|
|
3820
|
+
category13: string | null;
|
|
3821
|
+
category14: string | null;
|
|
3822
|
+
category15: string | null;
|
|
3823
|
+
category16: string | null;
|
|
3824
|
+
category17: string | null;
|
|
3825
|
+
category18: string | null;
|
|
3826
|
+
category19: string | null;
|
|
3827
|
+
category2: string | null;
|
|
3828
|
+
category20: string | null;
|
|
3829
|
+
category21: string | null;
|
|
3830
|
+
category22: string | null;
|
|
3831
|
+
category23: string | null;
|
|
3832
|
+
category24: string | null;
|
|
3833
|
+
category25: string | null;
|
|
3834
|
+
category3: string | null;
|
|
3835
|
+
category4: string | null;
|
|
3836
|
+
category5: string | null;
|
|
3837
|
+
category6: string | null;
|
|
3838
|
+
category7: string | null;
|
|
3839
|
+
category8: string | null;
|
|
3840
|
+
category9: string | null;
|
|
3841
|
+
}
|
|
3842
|
+
|
|
3843
|
+
@complex model plannerChecklistItem {
|
|
3844
|
+
isChecked: boolean | null;
|
|
3845
|
+
lastModifiedBy: identitySet | null;
|
|
3846
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
3847
|
+
orderHint: string | null;
|
|
3848
|
+
title: string | null;
|
|
3849
|
+
}
|
|
3850
|
+
|
|
3851
|
+
@open
|
|
3852
|
+
@complex model plannerChecklistItems {
|
|
3853
|
+
}
|
|
3854
|
+
|
|
3855
|
+
@complex model plannerExternalReference {
|
|
3856
|
+
`alias`: string | null;
|
|
3857
|
+
lastModifiedBy: identitySet | null;
|
|
3858
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
3859
|
+
previewPriority: string | null;
|
|
3860
|
+
type: string | null;
|
|
3861
|
+
}
|
|
3862
|
+
|
|
3863
|
+
@open
|
|
3864
|
+
@complex model plannerExternalReferences {
|
|
3865
|
+
}
|
|
3866
|
+
|
|
3867
|
+
@open
|
|
3868
|
+
@complex model plannerOrderHintsByAssignee {
|
|
3869
|
+
}
|
|
3870
|
+
|
|
3871
|
+
@complex model plannerPlanContainer {
|
|
3872
|
+
containerId: string | null;
|
|
3873
|
+
type: plannerContainerType | null;
|
|
3874
|
+
url: string | null;
|
|
3875
|
+
}
|
|
3876
|
+
|
|
3877
|
+
@open
|
|
3878
|
+
@complex model plannerUserIds {
|
|
3879
|
+
}
|
|
3880
|
+
|
|
3204
3881
|
@complex model preAuthorizedApplication {
|
|
3205
3882
|
appId: string | null;
|
|
3206
3883
|
delegatedPermissionIds: string[];
|
|
@@ -3212,6 +3889,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3212
3889
|
publishedDateTime: offsetDateTime | null;
|
|
3213
3890
|
}
|
|
3214
3891
|
|
|
3892
|
+
@complex model principalResourceMembershipsScope extends accessReviewScope {
|
|
3893
|
+
principalScopes: accessReviewScope[] | null;
|
|
3894
|
+
resourceScopes: accessReviewScope[] | null;
|
|
3895
|
+
}
|
|
3896
|
+
|
|
3215
3897
|
@complex model privacyProfile {
|
|
3216
3898
|
contactEmail: string | null;
|
|
3217
3899
|
statementUrl: string | null;
|
|
@@ -3222,6 +3904,12 @@ namespace reference.`microsoft.graph` {
|
|
|
3222
3904
|
localizations: displayNameLocalization[] | null;
|
|
3223
3905
|
}
|
|
3224
3906
|
|
|
3907
|
+
@complex model profileSourceLocalization {
|
|
3908
|
+
displayName: string | null;
|
|
3909
|
+
languageTag: string | null;
|
|
3910
|
+
webUrl: string | null;
|
|
3911
|
+
}
|
|
3912
|
+
|
|
3225
3913
|
@complex model provisionChannelEmailResult {
|
|
3226
3914
|
email: string | null;
|
|
3227
3915
|
}
|
|
@@ -3318,6 +4006,13 @@ namespace reference.`microsoft.graph` {
|
|
|
3318
4006
|
target: string | null;
|
|
3319
4007
|
}
|
|
3320
4008
|
|
|
4009
|
+
@complex model qrCodeImageDetails {
|
|
4010
|
+
binaryValue: binary | null;
|
|
4011
|
+
errorCorrectionLevel: errorCorrectionLevel | null;
|
|
4012
|
+
rawContent: binary | null;
|
|
4013
|
+
version: int32 | null;
|
|
4014
|
+
}
|
|
4015
|
+
|
|
3321
4016
|
@complex model quota {
|
|
3322
4017
|
deleted: int64 | null;
|
|
3323
4018
|
remaining: int64 | null;
|
|
@@ -3369,6 +4064,10 @@ namespace reference.`microsoft.graph` {
|
|
|
3369
4064
|
referencedProperty: string | null;
|
|
3370
4065
|
}
|
|
3371
4066
|
|
|
4067
|
+
@complex model registrationEnforcement {
|
|
4068
|
+
authenticationMethodsRegistrationCampaign: authenticationMethodsRegistrationCampaign | null;
|
|
4069
|
+
}
|
|
4070
|
+
|
|
3372
4071
|
@complex model reminder {
|
|
3373
4072
|
changeKey: string | null;
|
|
3374
4073
|
eventEndTime: dateTimeTimeZone | null;
|
|
@@ -3412,6 +4111,9 @@ namespace reference.`microsoft.graph` {
|
|
|
3412
4111
|
unlockPin: string | null;
|
|
3413
4112
|
}
|
|
3414
4113
|
|
|
4114
|
+
@complex model removeAccessApplyAction extends accessReviewApplyAction {
|
|
4115
|
+
}
|
|
4116
|
+
|
|
3415
4117
|
@complex model renameAction {
|
|
3416
4118
|
newName: string | null;
|
|
3417
4119
|
oldName: string | null;
|
|
@@ -3424,6 +4126,10 @@ namespace reference.`microsoft.graph` {
|
|
|
3424
4126
|
content: stream | null;
|
|
3425
4127
|
}
|
|
3426
4128
|
|
|
4129
|
+
@complex model requestorManager extends subjectSet {
|
|
4130
|
+
managerLevel: int32 | null;
|
|
4131
|
+
}
|
|
4132
|
+
|
|
3427
4133
|
@complex model requestSchedule {
|
|
3428
4134
|
expiration: expirationPattern | null;
|
|
3429
4135
|
recurrence: patternedRecurrence | null;
|
|
@@ -3582,6 +4288,9 @@ namespace reference.`microsoft.graph` {
|
|
|
3582
4288
|
onClickTelemetryUrl: string | null;
|
|
3583
4289
|
}
|
|
3584
4290
|
|
|
4291
|
+
@complex model secureSignInSessionControl extends conditionalAccessSessionControl {
|
|
4292
|
+
}
|
|
4293
|
+
|
|
3585
4294
|
@complex model sensitivityLabelAssignment {
|
|
3586
4295
|
assignmentMethod: sensitivityLabelAssignmentMethod;
|
|
3587
4296
|
sensitivityLabelId: string;
|
|
@@ -3608,6 +4317,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3608
4317
|
servicePlanName: string | null;
|
|
3609
4318
|
}
|
|
3610
4319
|
|
|
4320
|
+
@open
|
|
4321
|
+
@complex model servicePrincipalIdentity extends identity {
|
|
4322
|
+
appId: string | null;
|
|
4323
|
+
}
|
|
4324
|
+
|
|
3611
4325
|
@complex model servicePrincipalLockConfiguration {
|
|
3612
4326
|
allProperties: boolean | null;
|
|
3613
4327
|
credentialsWithUsageSign: boolean | null;
|
|
@@ -3616,6 +4330,10 @@ namespace reference.`microsoft.graph` {
|
|
|
3616
4330
|
tokenEncryptionKeyId: boolean | null;
|
|
3617
4331
|
}
|
|
3618
4332
|
|
|
4333
|
+
@complex model servicePrincipalSignIn extends signInIdentity {
|
|
4334
|
+
servicePrincipalId: string | null;
|
|
4335
|
+
}
|
|
4336
|
+
|
|
3619
4337
|
@complex model serviceUpdateMessageViewpoint {
|
|
3620
4338
|
isArchived: boolean | null;
|
|
3621
4339
|
isFavorited: boolean | null;
|
|
@@ -3726,11 +4444,38 @@ namespace reference.`microsoft.graph` {
|
|
|
3726
4444
|
lastSuccessfulSignInRequestId: string | null;
|
|
3727
4445
|
}
|
|
3728
4446
|
|
|
4447
|
+
@complex model signInConditions {
|
|
4448
|
+
authenticationFlow: authenticationFlow | null;
|
|
4449
|
+
clientAppType: conditionalAccessClientApp | null;
|
|
4450
|
+
country: string | null;
|
|
4451
|
+
deviceInfo: deviceInfo | null;
|
|
4452
|
+
devicePlatform: conditionalAccessDevicePlatform | null;
|
|
4453
|
+
ipAddress: string | null;
|
|
4454
|
+
servicePrincipalRiskLevel: riskLevel | null;
|
|
4455
|
+
signInRiskLevel: riskLevel | null;
|
|
4456
|
+
userRiskLevel: riskLevel | null;
|
|
4457
|
+
}
|
|
4458
|
+
|
|
4459
|
+
@abstract
|
|
4460
|
+
@complex model signInContext {
|
|
4461
|
+
}
|
|
4462
|
+
|
|
4463
|
+
@complex model signInFrequencySessionControl extends conditionalAccessSessionControl {
|
|
4464
|
+
authenticationType: signInFrequencyAuthenticationType | null;
|
|
4465
|
+
frequencyInterval: signInFrequencyInterval | null;
|
|
4466
|
+
type: signinFrequencyType | null;
|
|
4467
|
+
value: int32 | null;
|
|
4468
|
+
}
|
|
4469
|
+
|
|
3729
4470
|
@complex model signingCertificateUpdateStatus {
|
|
3730
4471
|
certificateUpdateResult: string | null;
|
|
3731
4472
|
@computed lastRunDateTime: offsetDateTime | null;
|
|
3732
4473
|
}
|
|
3733
4474
|
|
|
4475
|
+
@abstract
|
|
4476
|
+
@complex model signInIdentity {
|
|
4477
|
+
}
|
|
4478
|
+
|
|
3734
4479
|
@complex model signInLocation {
|
|
3735
4480
|
city: string | null;
|
|
3736
4481
|
countryOrRegion: string | null;
|
|
@@ -3744,6 +4489,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3744
4489
|
failureReason: string | null;
|
|
3745
4490
|
}
|
|
3746
4491
|
|
|
4492
|
+
@complex model singleServicePrincipal extends subjectSet {
|
|
4493
|
+
description: string | null;
|
|
4494
|
+
servicePrincipalId: string | null;
|
|
4495
|
+
}
|
|
4496
|
+
|
|
3747
4497
|
@complex model singleUser extends subjectSet {
|
|
3748
4498
|
description: string | null;
|
|
3749
4499
|
userId: string | null;
|
|
@@ -3765,6 +4515,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3765
4515
|
minimumSize: int32 | null;
|
|
3766
4516
|
}
|
|
3767
4517
|
|
|
4518
|
+
@complex model socialIdentitySource extends identitySource {
|
|
4519
|
+
displayName: string | null;
|
|
4520
|
+
socialIdentitySourceType: socialIdentitySourceType;
|
|
4521
|
+
}
|
|
4522
|
+
|
|
3768
4523
|
@complex model spaApplication {
|
|
3769
4524
|
redirectUris: string[];
|
|
3770
4525
|
}
|
|
@@ -3921,6 +4676,16 @@ namespace reference.`microsoft.graph` {
|
|
|
3921
4676
|
tabId: string | null;
|
|
3922
4677
|
}
|
|
3923
4678
|
|
|
4679
|
+
@complex model targetAgentIdentitySponsorsOrOwners extends subjectSet {
|
|
4680
|
+
}
|
|
4681
|
+
|
|
4682
|
+
@complex model targetApplicationOwners extends subjectSet {
|
|
4683
|
+
}
|
|
4684
|
+
|
|
4685
|
+
@complex model targetManager extends subjectSet {
|
|
4686
|
+
managerLevel: int32 | null;
|
|
4687
|
+
}
|
|
4688
|
+
|
|
3924
4689
|
@complex model targetResource {
|
|
3925
4690
|
displayName: string | null;
|
|
3926
4691
|
groupType: groupType | null;
|
|
@@ -3930,6 +4695,9 @@ namespace reference.`microsoft.graph` {
|
|
|
3930
4695
|
userPrincipalName: string | null;
|
|
3931
4696
|
}
|
|
3932
4697
|
|
|
4698
|
+
@complex model targetUserSponsors extends subjectSet {
|
|
4699
|
+
}
|
|
4700
|
+
|
|
3933
4701
|
@complex model teamArchivedEventMessageDetail extends eventMessageDetail {
|
|
3934
4702
|
initiator: identitySet | null;
|
|
3935
4703
|
teamId: string | null;
|
|
@@ -4186,6 +4954,13 @@ namespace reference.`microsoft.graph` {
|
|
|
4186
4954
|
excludedResourceActions: string[] | null;
|
|
4187
4955
|
}
|
|
4188
4956
|
|
|
4957
|
+
@complex model updateAllowedCombinationsResult {
|
|
4958
|
+
additionalInformation: string | null;
|
|
4959
|
+
conditionalAccessReferences: string[] | null;
|
|
4960
|
+
currentCombinations: authenticationMethodModes[];
|
|
4961
|
+
previousCombinations: authenticationMethodModes[];
|
|
4962
|
+
}
|
|
4963
|
+
|
|
4189
4964
|
@complex model updateWindowsDeviceAccountActionParameter {
|
|
4190
4965
|
calendarSyncEnabled: boolean | null;
|
|
4191
4966
|
deviceAccount: windowsDeviceAccount | null;
|
|
@@ -4201,6 +4976,10 @@ namespace reference.`microsoft.graph` {
|
|
|
4201
4976
|
uploadUrl: string | null;
|
|
4202
4977
|
}
|
|
4203
4978
|
|
|
4979
|
+
@complex model userActionContext extends signInContext {
|
|
4980
|
+
userAction: userAction | null;
|
|
4981
|
+
}
|
|
4982
|
+
|
|
4204
4983
|
/**
|
|
4205
4984
|
* The user experience analytics summary of Devices not windows autopilot ready.
|
|
4206
4985
|
*/
|
|
@@ -4364,6 +5143,11 @@ namespace reference.`microsoft.graph` {
|
|
|
4364
5143
|
userPrincipalName: string | null;
|
|
4365
5144
|
}
|
|
4366
5145
|
|
|
5146
|
+
@complex model userLastSignInRecommendationInsightSetting extends accessReviewRecommendationInsightSetting {
|
|
5147
|
+
recommendationLookBackDuration: duration | null;
|
|
5148
|
+
signInScope: userSignInRecommendationScope | null;
|
|
5149
|
+
}
|
|
5150
|
+
|
|
4367
5151
|
@complex model userRegistrationFeatureCount {
|
|
4368
5152
|
feature: authenticationMethodFeature;
|
|
4369
5153
|
userCount: int64;
|
|
@@ -4388,6 +5172,18 @@ namespace reference.`microsoft.graph` {
|
|
|
4388
5172
|
userTypes: includedUserTypes | null;
|
|
4389
5173
|
}
|
|
4390
5174
|
|
|
5175
|
+
@complex model userSignIn extends signInIdentity {
|
|
5176
|
+
externalTenantId: string | null;
|
|
5177
|
+
externalUserType: conditionalAccessGuestOrExternalUserTypes;
|
|
5178
|
+
userId: string | null;
|
|
5179
|
+
}
|
|
5180
|
+
|
|
5181
|
+
@complex model userWorkLocation {
|
|
5182
|
+
placeId: string | null;
|
|
5183
|
+
source: workLocationSource;
|
|
5184
|
+
workLocationType: workLocationType;
|
|
5185
|
+
}
|
|
5186
|
+
|
|
4391
5187
|
@complex model verifiedDomain {
|
|
4392
5188
|
capabilities: string | null;
|
|
4393
5189
|
isDefault: boolean | null;
|
|
@@ -4440,6 +5236,70 @@ namespace reference.`microsoft.graph` {
|
|
|
4440
5236
|
redirectUriSettings: redirectUriSettings[];
|
|
4441
5237
|
}
|
|
4442
5238
|
|
|
5239
|
+
@open
|
|
5240
|
+
@complex model webauthnAuthenticationExtensionsClientInputs {
|
|
5241
|
+
}
|
|
5242
|
+
|
|
5243
|
+
@open
|
|
5244
|
+
@complex model webauthnAuthenticationExtensionsClientOutputs {
|
|
5245
|
+
}
|
|
5246
|
+
|
|
5247
|
+
@complex model webauthnAuthenticatorAttestationResponse {
|
|
5248
|
+
attestationObject: string | null;
|
|
5249
|
+
clientDataJSON: string | null;
|
|
5250
|
+
}
|
|
5251
|
+
|
|
5252
|
+
@complex model webauthnAuthenticatorSelectionCriteria {
|
|
5253
|
+
authenticatorAttachment: string | null;
|
|
5254
|
+
requireResidentKey: boolean | null;
|
|
5255
|
+
userVerification: string | null;
|
|
5256
|
+
}
|
|
5257
|
+
|
|
5258
|
+
@complex model webauthnCredentialCreationOptions {
|
|
5259
|
+
challengeTimeoutDateTime: offsetDateTime | null;
|
|
5260
|
+
publicKey: webauthnPublicKeyCredentialCreationOptions | null;
|
|
5261
|
+
}
|
|
5262
|
+
|
|
5263
|
+
@complex model webauthnPublicKeyCredential {
|
|
5264
|
+
clientExtensionResults: webauthnAuthenticationExtensionsClientOutputs | null;
|
|
5265
|
+
id: string | null;
|
|
5266
|
+
response: webauthnAuthenticatorAttestationResponse | null;
|
|
5267
|
+
}
|
|
5268
|
+
|
|
5269
|
+
@complex model webauthnPublicKeyCredentialCreationOptions {
|
|
5270
|
+
attestation: string | null;
|
|
5271
|
+
authenticatorSelection: webauthnAuthenticatorSelectionCriteria | null;
|
|
5272
|
+
challenge: string | null;
|
|
5273
|
+
excludeCredentials: webauthnPublicKeyCredentialDescriptor[] | null;
|
|
5274
|
+
extensions: webauthnAuthenticationExtensionsClientInputs | null;
|
|
5275
|
+
pubKeyCredParams: webauthnPublicKeyCredentialParameters[] | null;
|
|
5276
|
+
rp: webauthnPublicKeyCredentialRpEntity | null;
|
|
5277
|
+
timeout: int32 | null;
|
|
5278
|
+
user: webauthnPublicKeyCredentialUserEntity | null;
|
|
5279
|
+
}
|
|
5280
|
+
|
|
5281
|
+
@complex model webauthnPublicKeyCredentialDescriptor {
|
|
5282
|
+
id: string | null;
|
|
5283
|
+
transports: string[] | null;
|
|
5284
|
+
type: string | null;
|
|
5285
|
+
}
|
|
5286
|
+
|
|
5287
|
+
@complex model webauthnPublicKeyCredentialParameters {
|
|
5288
|
+
alg: int32 | null;
|
|
5289
|
+
type: string | null;
|
|
5290
|
+
}
|
|
5291
|
+
|
|
5292
|
+
@complex model webauthnPublicKeyCredentialRpEntity {
|
|
5293
|
+
id: string | null;
|
|
5294
|
+
name: string | null;
|
|
5295
|
+
}
|
|
5296
|
+
|
|
5297
|
+
@complex model webauthnPublicKeyCredentialUserEntity {
|
|
5298
|
+
displayName: string | null;
|
|
5299
|
+
id: string | null;
|
|
5300
|
+
name: string | null;
|
|
5301
|
+
}
|
|
5302
|
+
|
|
4443
5303
|
@complex model webPartData {
|
|
4444
5304
|
dataVersion: string | null;
|
|
4445
5305
|
description: string | null;
|
|
@@ -5119,33 +5979,330 @@ namespace reference.`microsoft.graph` {
|
|
|
5119
5979
|
activeHoursStart: offsetDateTime;
|
|
5120
5980
|
}
|
|
5121
5981
|
|
|
5122
|
-
@abstract
|
|
5123
|
-
@complex model windowsUpdateInstallScheduleType {
|
|
5982
|
+
@abstract
|
|
5983
|
+
@complex model windowsUpdateInstallScheduleType {
|
|
5984
|
+
}
|
|
5985
|
+
|
|
5986
|
+
@complex model windowsUpdateScheduledInstall extends windowsUpdateInstallScheduleType {
|
|
5987
|
+
/**
|
|
5988
|
+
* Scheduled Install Day in week
|
|
5989
|
+
*/
|
|
5990
|
+
scheduledInstallDay: weeklySchedule;
|
|
5991
|
+
/**
|
|
5992
|
+
* Scheduled Install Time during day
|
|
5993
|
+
*/
|
|
5994
|
+
scheduledInstallTime: offsetDateTime;
|
|
5995
|
+
}
|
|
5996
|
+
|
|
5997
|
+
@complex model workingHours {
|
|
5998
|
+
daysOfWeek: dayOfWeek[] | null;
|
|
5999
|
+
endTime: offsetDateTime | null;
|
|
6000
|
+
startTime: offsetDateTime | null;
|
|
6001
|
+
timeZone: timeZoneBase | null;
|
|
6002
|
+
}
|
|
6003
|
+
|
|
6004
|
+
@complex model x509CertificateAuthenticationModeConfiguration {
|
|
6005
|
+
rules: x509CertificateRule[] | null;
|
|
6006
|
+
x509CertificateAuthenticationDefaultMode: x509CertificateAuthenticationMode | null;
|
|
6007
|
+
x509CertificateDefaultRequiredAffinityLevel: x509CertificateAffinityLevel | null;
|
|
6008
|
+
}
|
|
6009
|
+
|
|
6010
|
+
@complex model x509CertificateAuthorityScope {
|
|
6011
|
+
includeTargets: includeTarget[] | null;
|
|
6012
|
+
publicKeyInfrastructureIdentifier: string | null;
|
|
6013
|
+
subjectKeyIdentifier: string | null;
|
|
6014
|
+
}
|
|
6015
|
+
|
|
6016
|
+
@complex model x509CertificateIssuerHintsConfiguration {
|
|
6017
|
+
state: x509CertificateIssuerHintsState | null;
|
|
6018
|
+
}
|
|
6019
|
+
|
|
6020
|
+
@complex model x509CertificateRule {
|
|
6021
|
+
identifier: string | null;
|
|
6022
|
+
issuerSubjectIdentifier: string | null;
|
|
6023
|
+
policyOidIdentifier: string | null;
|
|
6024
|
+
x509CertificateAuthenticationMode: x509CertificateAuthenticationMode | null;
|
|
6025
|
+
x509CertificateRequiredAffinityLevel: x509CertificateAffinityLevel | null;
|
|
6026
|
+
x509CertificateRuleType: x509CertificateRuleType | null;
|
|
6027
|
+
}
|
|
6028
|
+
|
|
6029
|
+
@complex model x509CertificateUserBinding {
|
|
6030
|
+
priority: int32;
|
|
6031
|
+
trustAffinityLevel: x509CertificateAffinityLevel | null;
|
|
6032
|
+
userProperty: string | null;
|
|
6033
|
+
x509CertificateField: string | null;
|
|
6034
|
+
}
|
|
6035
|
+
|
|
6036
|
+
@entity model aadUserConversationMember extends conversationMember {
|
|
6037
|
+
email: string | null;
|
|
6038
|
+
tenantId: string | null;
|
|
6039
|
+
userId: string | null;
|
|
6040
|
+
@references user: user | null;
|
|
6041
|
+
}
|
|
6042
|
+
|
|
6043
|
+
@entity model accessPackage extends entity {
|
|
6044
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6045
|
+
description: string | null;
|
|
6046
|
+
displayName: string | null;
|
|
6047
|
+
isHidden: boolean | null;
|
|
6048
|
+
modifiedDateTime: offsetDateTime | null;
|
|
6049
|
+
@references accessPackagesIncompatibleWith: accessPackage[];
|
|
6050
|
+
@contains assignmentPolicies: accessPackageAssignmentPolicy[];
|
|
6051
|
+
@references catalog: accessPackageCatalog | null;
|
|
6052
|
+
@references incompatibleAccessPackages: accessPackage[];
|
|
6053
|
+
@contains incompatibleGroups: group[];
|
|
6054
|
+
@contains resourceRoleScopes: accessPackageResourceRoleScope[];
|
|
6055
|
+
}
|
|
6056
|
+
|
|
6057
|
+
@entity model accessPackageAssignment extends entity {
|
|
6058
|
+
customExtensionCalloutInstances: customExtensionCalloutInstance[] | null;
|
|
6059
|
+
expiredDateTime: offsetDateTime | null;
|
|
6060
|
+
schedule: entitlementManagementSchedule | null;
|
|
6061
|
+
state: accessPackageAssignmentState | null;
|
|
6062
|
+
status: string | null;
|
|
6063
|
+
@references accessPackage: accessPackage | null;
|
|
6064
|
+
@references assignmentPolicy: accessPackageAssignmentPolicy | null;
|
|
6065
|
+
@references target: accessPackageSubject | null;
|
|
6066
|
+
}
|
|
6067
|
+
|
|
6068
|
+
@entity model accessPackageAssignmentPolicy extends entity {
|
|
6069
|
+
allowedTargetScope: allowedTargetScope | null;
|
|
6070
|
+
automaticRequestSettings: accessPackageAutomaticRequestSettings | null;
|
|
6071
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6072
|
+
description: string | null;
|
|
6073
|
+
displayName: string | null;
|
|
6074
|
+
expiration: expirationPattern | null;
|
|
6075
|
+
modifiedDateTime: offsetDateTime | null;
|
|
6076
|
+
notificationSettings: accessPackageNotificationSettings | null;
|
|
6077
|
+
requestApprovalSettings: accessPackageAssignmentApprovalSettings | null;
|
|
6078
|
+
requestorSettings: accessPackageAssignmentRequestorSettings | null;
|
|
6079
|
+
reviewSettings: accessPackageAssignmentReviewSettings | null;
|
|
6080
|
+
specificAllowedTargets: subjectSet[] | null;
|
|
6081
|
+
@references accessPackage: accessPackage | null;
|
|
6082
|
+
@references catalog: accessPackageCatalog | null;
|
|
6083
|
+
@references customExtensionStageSettings: customExtensionStageSetting[];
|
|
6084
|
+
@contains questions: accessPackageQuestion[];
|
|
6085
|
+
}
|
|
6086
|
+
|
|
6087
|
+
@entity model accessPackageAssignmentRequest extends entity {
|
|
6088
|
+
answers: accessPackageAnswer[] | null;
|
|
6089
|
+
completedDateTime: offsetDateTime | null;
|
|
6090
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6091
|
+
customExtensionCalloutInstances: customExtensionCalloutInstance[] | null;
|
|
6092
|
+
justification: string | null;
|
|
6093
|
+
requestType: accessPackageRequestType | null;
|
|
6094
|
+
schedule: entitlementManagementSchedule | null;
|
|
6095
|
+
state: accessPackageRequestState | null;
|
|
6096
|
+
status: string | null;
|
|
6097
|
+
@references accessPackage: accessPackage | null;
|
|
6098
|
+
@references assignment: accessPackageAssignment | null;
|
|
6099
|
+
@references requestor: accessPackageSubject | null;
|
|
6100
|
+
}
|
|
6101
|
+
|
|
6102
|
+
@entity model accessPackageAssignmentRequestWorkflowExtension extends customCalloutExtension {
|
|
6103
|
+
callbackConfiguration: customExtensionCallbackConfiguration | null;
|
|
6104
|
+
createdBy: string | null;
|
|
6105
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6106
|
+
lastModifiedBy: string | null;
|
|
6107
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
6108
|
+
}
|
|
6109
|
+
|
|
6110
|
+
@entity model accessPackageAssignmentWorkflowExtension extends customCalloutExtension {
|
|
6111
|
+
callbackConfiguration: customExtensionCallbackConfiguration | null;
|
|
6112
|
+
createdBy: string | null;
|
|
6113
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6114
|
+
lastModifiedBy: string | null;
|
|
6115
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
6116
|
+
}
|
|
6117
|
+
|
|
6118
|
+
@entity model accessPackageCatalog extends entity {
|
|
6119
|
+
catalogType: accessPackageCatalogType | null;
|
|
6120
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6121
|
+
description: string | null;
|
|
6122
|
+
displayName: string | null;
|
|
6123
|
+
isExternallyVisible: boolean | null;
|
|
6124
|
+
modifiedDateTime: offsetDateTime | null;
|
|
6125
|
+
state: accessPackageCatalogState | null;
|
|
6126
|
+
@contains accessPackages: accessPackage[];
|
|
6127
|
+
@contains customWorkflowExtensions: customCalloutExtension[];
|
|
6128
|
+
@contains resourceRoles: accessPackageResourceRole[];
|
|
6129
|
+
@contains resources: accessPackageResource[];
|
|
6130
|
+
@contains resourceScopes: accessPackageResourceScope[];
|
|
6131
|
+
}
|
|
6132
|
+
|
|
6133
|
+
@entity model accessPackageMultipleChoiceQuestion extends accessPackageQuestion {
|
|
6134
|
+
choices: accessPackageAnswerChoice[] | null;
|
|
6135
|
+
isMultipleSelectionAllowed: boolean | null;
|
|
6136
|
+
}
|
|
6137
|
+
|
|
6138
|
+
@abstract
|
|
6139
|
+
@entity model accessPackageQuestion extends entity {
|
|
6140
|
+
isAnswerEditable: boolean | null;
|
|
6141
|
+
isRequired: boolean | null;
|
|
6142
|
+
localizations: accessPackageLocalizedText[] | null;
|
|
6143
|
+
sequence: int32 | null;
|
|
6144
|
+
text: string | null;
|
|
6145
|
+
}
|
|
6146
|
+
|
|
6147
|
+
@entity model accessPackageResource extends entity {
|
|
6148
|
+
attributes: accessPackageResourceAttribute[] | null;
|
|
6149
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6150
|
+
description: string | null;
|
|
6151
|
+
displayName: string | null;
|
|
6152
|
+
modifiedDateTime: offsetDateTime | null;
|
|
6153
|
+
originId: string | null;
|
|
6154
|
+
originSystem: string | null;
|
|
6155
|
+
@references environment: accessPackageResourceEnvironment | null;
|
|
6156
|
+
@contains roles: accessPackageResourceRole[];
|
|
6157
|
+
@contains scopes: accessPackageResourceScope[];
|
|
6158
|
+
}
|
|
6159
|
+
|
|
6160
|
+
@entity model accessPackageResourceEnvironment extends entity {
|
|
6161
|
+
connectionInfo: connectionInfo | null;
|
|
6162
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6163
|
+
description: string | null;
|
|
6164
|
+
displayName: string | null;
|
|
6165
|
+
isDefaultEnvironment: boolean | null;
|
|
6166
|
+
modifiedDateTime: offsetDateTime | null;
|
|
6167
|
+
originId: string | null;
|
|
6168
|
+
originSystem: string | null;
|
|
6169
|
+
@contains resources: accessPackageResource[];
|
|
6170
|
+
}
|
|
6171
|
+
|
|
6172
|
+
@entity model accessPackageResourceRequest extends entity {
|
|
6173
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6174
|
+
requestType: accessPackageRequestType | null;
|
|
6175
|
+
state: accessPackageRequestState | null;
|
|
6176
|
+
@contains catalog: accessPackageCatalog | null;
|
|
6177
|
+
@contains resource: accessPackageResource | null;
|
|
6178
|
+
}
|
|
6179
|
+
|
|
6180
|
+
@entity model accessPackageResourceRole extends entity {
|
|
6181
|
+
description: string | null;
|
|
6182
|
+
displayName: string | null;
|
|
6183
|
+
originId: string | null;
|
|
6184
|
+
originSystem: string | null;
|
|
6185
|
+
@contains resource: accessPackageResource | null;
|
|
6186
|
+
}
|
|
6187
|
+
|
|
6188
|
+
@entity model accessPackageResourceRoleScope extends entity {
|
|
6189
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6190
|
+
@contains role: accessPackageResourceRole | null;
|
|
6191
|
+
@contains scope: accessPackageResourceScope | null;
|
|
6192
|
+
}
|
|
6193
|
+
|
|
6194
|
+
@entity model accessPackageResourceScope extends entity {
|
|
6195
|
+
description: string | null;
|
|
6196
|
+
displayName: string | null;
|
|
6197
|
+
isRootScope: boolean | null;
|
|
6198
|
+
originId: string | null;
|
|
6199
|
+
originSystem: string | null;
|
|
6200
|
+
@contains resource: accessPackageResource | null;
|
|
6201
|
+
}
|
|
6202
|
+
|
|
6203
|
+
@entity model accessPackageSubject extends entity {
|
|
6204
|
+
displayName: string | null;
|
|
6205
|
+
email: string | null;
|
|
6206
|
+
objectId: string | null;
|
|
6207
|
+
onPremisesSecurityIdentifier: string | null;
|
|
6208
|
+
principalName: string | null;
|
|
6209
|
+
subjectType: accessPackageSubjectType | null;
|
|
6210
|
+
@references connectedOrganization: connectedOrganization | null;
|
|
6211
|
+
}
|
|
6212
|
+
|
|
6213
|
+
@entity model accessPackageTextInputQuestion extends accessPackageQuestion {
|
|
6214
|
+
isSingleLineQuestion: boolean | null;
|
|
6215
|
+
regexPattern: string | null;
|
|
6216
|
+
}
|
|
6217
|
+
|
|
6218
|
+
@entity model accessReviewHistoryDefinition extends entity {
|
|
6219
|
+
createdBy: userIdentity;
|
|
6220
|
+
@computed createdDateTime: offsetDateTime;
|
|
6221
|
+
decisions: accessReviewHistoryDecisionFilter[] | null;
|
|
6222
|
+
displayName: string;
|
|
6223
|
+
reviewHistoryPeriodEndDateTime: offsetDateTime;
|
|
6224
|
+
reviewHistoryPeriodStartDateTime: offsetDateTime;
|
|
6225
|
+
scheduleSettings: accessReviewHistoryScheduleSettings | null;
|
|
6226
|
+
scopes: accessReviewScope[];
|
|
6227
|
+
status: accessReviewHistoryStatus | null;
|
|
6228
|
+
@contains instances: accessReviewHistoryInstance[];
|
|
6229
|
+
}
|
|
6230
|
+
|
|
6231
|
+
@entity model accessReviewHistoryInstance extends entity {
|
|
6232
|
+
downloadUri: string | null;
|
|
6233
|
+
expirationDateTime: offsetDateTime;
|
|
6234
|
+
fulfilledDateTime: offsetDateTime | null;
|
|
6235
|
+
reviewHistoryPeriodEndDateTime: offsetDateTime | null;
|
|
6236
|
+
reviewHistoryPeriodStartDateTime: offsetDateTime | null;
|
|
6237
|
+
runDateTime: offsetDateTime;
|
|
6238
|
+
status: accessReviewHistoryStatus | null;
|
|
6239
|
+
}
|
|
6240
|
+
|
|
6241
|
+
@entity model accessReviewInstance extends entity {
|
|
6242
|
+
endDateTime: offsetDateTime | null;
|
|
6243
|
+
fallbackReviewers: accessReviewReviewerScope[] | null;
|
|
6244
|
+
reviewers: accessReviewReviewerScope[] | null;
|
|
6245
|
+
scope: accessReviewScope | null;
|
|
6246
|
+
startDateTime: offsetDateTime | null;
|
|
6247
|
+
status: string | null;
|
|
6248
|
+
@contains contactedReviewers: accessReviewReviewer[];
|
|
6249
|
+
@contains decisions: accessReviewInstanceDecisionItem[];
|
|
6250
|
+
@contains stages: accessReviewStage[];
|
|
6251
|
+
}
|
|
6252
|
+
|
|
6253
|
+
@entity model accessReviewInstanceDecisionItem extends entity {
|
|
6254
|
+
accessReviewId: string;
|
|
6255
|
+
appliedBy: userIdentity | null;
|
|
6256
|
+
appliedDateTime: offsetDateTime | null;
|
|
6257
|
+
applyResult: string | null;
|
|
6258
|
+
decision: string | null;
|
|
6259
|
+
justification: string | null;
|
|
6260
|
+
principal: identity | null;
|
|
6261
|
+
principalLink: string | null;
|
|
6262
|
+
recommendation: string | null;
|
|
6263
|
+
resource: accessReviewInstanceDecisionItemResource | null;
|
|
6264
|
+
resourceLink: string | null;
|
|
6265
|
+
reviewedBy: userIdentity | null;
|
|
6266
|
+
reviewedDateTime: offsetDateTime | null;
|
|
6267
|
+
@contains insights: governanceInsight[];
|
|
5124
6268
|
}
|
|
5125
6269
|
|
|
5126
|
-
@
|
|
5127
|
-
|
|
5128
|
-
|
|
5129
|
-
|
|
5130
|
-
scheduledInstallDay: weeklySchedule;
|
|
5131
|
-
/**
|
|
5132
|
-
* Scheduled Install Time during day
|
|
5133
|
-
*/
|
|
5134
|
-
scheduledInstallTime: offsetDateTime;
|
|
6270
|
+
@entity model accessReviewReviewer extends entity {
|
|
6271
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6272
|
+
displayName: string | null;
|
|
6273
|
+
userPrincipalName: string | null;
|
|
5135
6274
|
}
|
|
5136
6275
|
|
|
5137
|
-
@
|
|
5138
|
-
|
|
5139
|
-
|
|
5140
|
-
|
|
5141
|
-
|
|
6276
|
+
@entity model accessReviewScheduleDefinition extends entity {
|
|
6277
|
+
additionalNotificationRecipients: accessReviewNotificationRecipientItem[] | null;
|
|
6278
|
+
createdBy: userIdentity | null;
|
|
6279
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6280
|
+
descriptionForAdmins: string | null;
|
|
6281
|
+
descriptionForReviewers: string | null;
|
|
6282
|
+
displayName: string | null;
|
|
6283
|
+
fallbackReviewers: accessReviewReviewerScope[] | null;
|
|
6284
|
+
instanceEnumerationScope: accessReviewScope | null;
|
|
6285
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
6286
|
+
reviewers: accessReviewReviewerScope[] | null;
|
|
6287
|
+
scope: accessReviewScope | null;
|
|
6288
|
+
settings: accessReviewScheduleSettings | null;
|
|
6289
|
+
stageSettings: accessReviewStageSettings[] | null;
|
|
6290
|
+
status: string | null;
|
|
6291
|
+
@contains instances: accessReviewInstance[];
|
|
5142
6292
|
}
|
|
5143
6293
|
|
|
5144
|
-
@entity model
|
|
5145
|
-
|
|
5146
|
-
|
|
5147
|
-
|
|
5148
|
-
|
|
6294
|
+
@entity model accessReviewSet extends entity {
|
|
6295
|
+
@contains definitions: accessReviewScheduleDefinition[];
|
|
6296
|
+
@contains historyDefinitions: accessReviewHistoryDefinition[];
|
|
6297
|
+
}
|
|
6298
|
+
|
|
6299
|
+
@entity model accessReviewStage extends entity {
|
|
6300
|
+
endDateTime: offsetDateTime | null;
|
|
6301
|
+
fallbackReviewers: accessReviewReviewerScope[] | null;
|
|
6302
|
+
reviewers: accessReviewReviewerScope[] | null;
|
|
6303
|
+
startDateTime: offsetDateTime | null;
|
|
6304
|
+
status: string | null;
|
|
6305
|
+
@contains decisions: accessReviewInstanceDecisionItem[];
|
|
5149
6306
|
}
|
|
5150
6307
|
|
|
5151
6308
|
@entity model activityBasedTimeoutPolicy extends stsPolicy {
|
|
@@ -5162,6 +6319,15 @@ namespace reference.`microsoft.graph` {
|
|
|
5162
6319
|
@contains sharepoint: sharepoint | null;
|
|
5163
6320
|
}
|
|
5164
6321
|
|
|
6322
|
+
@entity model adminConsentRequestPolicy extends entity {
|
|
6323
|
+
isEnabled: boolean;
|
|
6324
|
+
notifyReviewers: boolean;
|
|
6325
|
+
remindersEnabled: boolean;
|
|
6326
|
+
requestDurationInDays: int32;
|
|
6327
|
+
reviewers: accessReviewReviewerScope[] | null;
|
|
6328
|
+
version: int32;
|
|
6329
|
+
}
|
|
6330
|
+
|
|
5165
6331
|
@open
|
|
5166
6332
|
@entity model administrativeUnit extends directoryObject {
|
|
5167
6333
|
description: string | null;
|
|
@@ -5175,6 +6341,28 @@ namespace reference.`microsoft.graph` {
|
|
|
5175
6341
|
@contains scopedRoleMembers: scopedRoleMembership[];
|
|
5176
6342
|
}
|
|
5177
6343
|
|
|
6344
|
+
@open
|
|
6345
|
+
@entity model agentIdentity extends servicePrincipal {
|
|
6346
|
+
agentIdentityBlueprintId: string;
|
|
6347
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
6348
|
+
@references sponsors: directoryObject[];
|
|
6349
|
+
}
|
|
6350
|
+
|
|
6351
|
+
@open
|
|
6352
|
+
@entity model agentIdentityBlueprint extends application {
|
|
6353
|
+
@contains inheritablePermissions: inheritablePermission[];
|
|
6354
|
+
@references sponsors: directoryObject[];
|
|
6355
|
+
}
|
|
6356
|
+
|
|
6357
|
+
@open
|
|
6358
|
+
@entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
|
|
6359
|
+
@references sponsors: directoryObject[];
|
|
6360
|
+
}
|
|
6361
|
+
|
|
6362
|
+
@open
|
|
6363
|
+
@entity model agentUser extends user {
|
|
6364
|
+
}
|
|
6365
|
+
|
|
5178
6366
|
@entity model agreement extends entity {
|
|
5179
6367
|
displayName: string | null;
|
|
5180
6368
|
isPerDeviceAcceptanceRequired: boolean | null;
|
|
@@ -5867,6 +7055,17 @@ namespace reference.`microsoft.graph` {
|
|
|
5867
7055
|
@contains teamsApps: teamsApp[];
|
|
5868
7056
|
}
|
|
5869
7057
|
|
|
7058
|
+
@entity model appConsentApprovalRoute extends entity {
|
|
7059
|
+
@contains appConsentRequests: appConsentRequest[];
|
|
7060
|
+
}
|
|
7061
|
+
|
|
7062
|
+
@entity model appConsentRequest extends entity {
|
|
7063
|
+
appDisplayName: string | null;
|
|
7064
|
+
appId: string;
|
|
7065
|
+
pendingScopes: appConsentRequestScope[] | null;
|
|
7066
|
+
@contains userConsentRequests: userConsentRequest[];
|
|
7067
|
+
}
|
|
7068
|
+
|
|
5870
7069
|
/**
|
|
5871
7070
|
* Apple device features configuration profile.
|
|
5872
7071
|
*/
|
|
@@ -5916,6 +7115,7 @@ namespace reference.`microsoft.graph` {
|
|
|
5916
7115
|
appId: string | null;
|
|
5917
7116
|
applicationTemplateId: string | null;
|
|
5918
7117
|
appRoles: appRole[];
|
|
7118
|
+
createdByAppId: string | null;
|
|
5919
7119
|
@computed createdDateTime: offsetDateTime | null;
|
|
5920
7120
|
defaultRedirectUri: string | null;
|
|
5921
7121
|
description: string | null;
|
|
@@ -5925,9 +7125,11 @@ namespace reference.`microsoft.graph` {
|
|
|
5925
7125
|
identifierUris: string[];
|
|
5926
7126
|
info: informationalUrl | null;
|
|
5927
7127
|
isDeviceOnlyAuthSupported: boolean | null;
|
|
7128
|
+
isDisabled: boolean | null;
|
|
5928
7129
|
isFallbackPublicClient: boolean | null;
|
|
5929
7130
|
keyCredentials: keyCredential[];
|
|
5930
7131
|
logo: stream;
|
|
7132
|
+
managerApplications: guid;
|
|
5931
7133
|
notes: string | null;
|
|
5932
7134
|
oauth2RequirePostResponse: boolean;
|
|
5933
7135
|
optionalClaims: optionalClaims | null;
|
|
@@ -6004,6 +7206,24 @@ namespace reference.`microsoft.graph` {
|
|
|
6004
7206
|
resourceId: guid | null;
|
|
6005
7207
|
}
|
|
6006
7208
|
|
|
7209
|
+
@entity model approval extends entity {
|
|
7210
|
+
@contains stages: approvalStage[];
|
|
7211
|
+
}
|
|
7212
|
+
|
|
7213
|
+
@entity model approvalStage extends entity {
|
|
7214
|
+
assignedToMe: boolean | null;
|
|
7215
|
+
displayName: string | null;
|
|
7216
|
+
justification: string | null;
|
|
7217
|
+
reviewedBy: identity | null;
|
|
7218
|
+
reviewedDateTime: offsetDateTime | null;
|
|
7219
|
+
reviewResult: string | null;
|
|
7220
|
+
status: string | null;
|
|
7221
|
+
}
|
|
7222
|
+
|
|
7223
|
+
@entity model approvedClientApp extends entity {
|
|
7224
|
+
displayName: string | null;
|
|
7225
|
+
}
|
|
7226
|
+
|
|
6007
7227
|
@entity model appScope extends entity {
|
|
6008
7228
|
displayName: string | null;
|
|
6009
7229
|
type: string | null;
|
|
@@ -6094,10 +7314,42 @@ namespace reference.`microsoft.graph` {
|
|
|
6094
7314
|
@contains signIns: signIn[];
|
|
6095
7315
|
}
|
|
6096
7316
|
|
|
7317
|
+
@abstract
|
|
7318
|
+
@entity model authenticationCombinationConfiguration extends entity {
|
|
7319
|
+
appliesToCombinations: authenticationMethodModes[];
|
|
7320
|
+
}
|
|
7321
|
+
|
|
7322
|
+
@entity model authenticationContextClassReference extends entity {
|
|
7323
|
+
description: string | null;
|
|
7324
|
+
displayName: string | null;
|
|
7325
|
+
isAvailable: boolean | null;
|
|
7326
|
+
}
|
|
7327
|
+
|
|
7328
|
+
@entity model authenticationMethodModeDetail extends entity {
|
|
7329
|
+
authenticationMethod: baseAuthenticationMethod;
|
|
7330
|
+
displayName: string;
|
|
7331
|
+
}
|
|
7332
|
+
|
|
6097
7333
|
@entity model authenticationMethodsRoot extends entity {
|
|
6098
7334
|
@contains userRegistrationDetails: userRegistrationDetails[];
|
|
6099
7335
|
}
|
|
6100
7336
|
|
|
7337
|
+
@entity model authenticationMethodTarget extends entity {
|
|
7338
|
+
isRegistrationRequired: boolean;
|
|
7339
|
+
targetType: authenticationMethodTargetType;
|
|
7340
|
+
}
|
|
7341
|
+
|
|
7342
|
+
@entity model authenticationStrengthPolicy extends entity {
|
|
7343
|
+
allowedCombinations: authenticationMethodModes[];
|
|
7344
|
+
@computed createdDateTime: offsetDateTime;
|
|
7345
|
+
description: string | null;
|
|
7346
|
+
displayName: string;
|
|
7347
|
+
modifiedDateTime: offsetDateTime;
|
|
7348
|
+
policyType: authenticationStrengthPolicyType;
|
|
7349
|
+
requirementsSatisfied: authenticationStrengthRequirements;
|
|
7350
|
+
@contains combinationConfigurations: authenticationCombinationConfiguration[];
|
|
7351
|
+
}
|
|
7352
|
+
|
|
6101
7353
|
@entity model authorizationPolicy extends policyBase {
|
|
6102
7354
|
allowedToSignUpEmailBasedSubscriptions: boolean;
|
|
6103
7355
|
allowedToUseSSPR: boolean;
|
|
@@ -6412,6 +7664,44 @@ namespace reference.`microsoft.graph` {
|
|
|
6412
7664
|
partnerState: deviceManagementPartnerTenantState;
|
|
6413
7665
|
}
|
|
6414
7666
|
|
|
7667
|
+
@entity model conditionalAccessPolicy extends policyDeletableItem {
|
|
7668
|
+
conditions: conditionalAccessConditionSet;
|
|
7669
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
7670
|
+
description: string | null;
|
|
7671
|
+
displayName: string;
|
|
7672
|
+
grantControls: conditionalAccessGrantControls | null;
|
|
7673
|
+
@computed @key id: string;
|
|
7674
|
+
modifiedDateTime: offsetDateTime | null;
|
|
7675
|
+
sessionControls: conditionalAccessSessionControls | null;
|
|
7676
|
+
state: conditionalAccessPolicyState;
|
|
7677
|
+
templateId: string | null;
|
|
7678
|
+
}
|
|
7679
|
+
|
|
7680
|
+
@entity model conditionalAccessRoot extends entity {
|
|
7681
|
+
@contains authenticationContextClassReferences: authenticationContextClassReference[];
|
|
7682
|
+
@contains namedLocations: namedLocation[];
|
|
7683
|
+
@contains policies: conditionalAccessPolicy[];
|
|
7684
|
+
@contains templates: conditionalAccessTemplate[];
|
|
7685
|
+
}
|
|
7686
|
+
|
|
7687
|
+
@entity model conditionalAccessTemplate extends entity {
|
|
7688
|
+
description: string;
|
|
7689
|
+
details: conditionalAccessPolicyDetail;
|
|
7690
|
+
name: string;
|
|
7691
|
+
scenarios: templateScenarios;
|
|
7692
|
+
}
|
|
7693
|
+
|
|
7694
|
+
@entity model connectedOrganization extends entity {
|
|
7695
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
7696
|
+
description: string | null;
|
|
7697
|
+
displayName: string | null;
|
|
7698
|
+
identitySources: identitySource[] | null;
|
|
7699
|
+
modifiedDateTime: offsetDateTime | null;
|
|
7700
|
+
state: connectedOrganizationState | null;
|
|
7701
|
+
@contains externalSponsors: directoryObject[];
|
|
7702
|
+
@contains internalSponsors: directoryObject[];
|
|
7703
|
+
}
|
|
7704
|
+
|
|
6415
7705
|
@open
|
|
6416
7706
|
@entity model contact extends outlookItem {
|
|
6417
7707
|
assistantName: string | null;
|
|
@@ -6520,6 +7810,12 @@ namespace reference.`microsoft.graph` {
|
|
|
6520
7810
|
@contains posts: post[];
|
|
6521
7811
|
}
|
|
6522
7812
|
|
|
7813
|
+
@entity model countryNamedLocation extends namedLocation {
|
|
7814
|
+
countriesAndRegions: string[];
|
|
7815
|
+
countryLookupMethod: countryLookupMethodType | null;
|
|
7816
|
+
includeUnknownCountriesAndRegions: boolean;
|
|
7817
|
+
}
|
|
7818
|
+
|
|
6523
7819
|
@entity model crossTenantAccessPolicy extends policyBase {
|
|
6524
7820
|
@contains default: crossTenantAccessPolicyConfigurationDefault | null;
|
|
6525
7821
|
@contains partners: crossTenantAccessPolicyConfigurationPartner[];
|
|
@@ -6554,6 +7850,20 @@ namespace reference.`microsoft.graph` {
|
|
|
6554
7850
|
userSyncInbound: crossTenantUserSyncInbound | null;
|
|
6555
7851
|
}
|
|
6556
7852
|
|
|
7853
|
+
@abstract
|
|
7854
|
+
@entity model customCalloutExtension extends entity {
|
|
7855
|
+
authenticationConfiguration: customExtensionAuthenticationConfiguration | null;
|
|
7856
|
+
clientConfiguration: customExtensionClientConfiguration | null;
|
|
7857
|
+
description: string | null;
|
|
7858
|
+
displayName: string | null;
|
|
7859
|
+
endpointConfiguration: customExtensionEndpointConfiguration | null;
|
|
7860
|
+
}
|
|
7861
|
+
|
|
7862
|
+
@entity model customExtensionStageSetting extends entity {
|
|
7863
|
+
stage: accessPackageCustomExtensionStage;
|
|
7864
|
+
@references customExtension: customCalloutExtension | null;
|
|
7865
|
+
}
|
|
7866
|
+
|
|
6557
7867
|
@entity model customSecurityAttributeDefinition extends entity {
|
|
6558
7868
|
attributeSet: string;
|
|
6559
7869
|
description: string | null;
|
|
@@ -8385,6 +9695,26 @@ namespace reference.`microsoft.graph` {
|
|
|
8385
9695
|
uploadDateTime: offsetDateTime;
|
|
8386
9696
|
}
|
|
8387
9697
|
|
|
9698
|
+
@entity model entitlementManagement extends entity {
|
|
9699
|
+
@contains accessPackageAssignmentApprovals: approval[];
|
|
9700
|
+
@contains accessPackages: accessPackage[];
|
|
9701
|
+
@contains assignmentPolicies: accessPackageAssignmentPolicy[];
|
|
9702
|
+
@contains assignmentRequests: accessPackageAssignmentRequest[];
|
|
9703
|
+
@contains assignments: accessPackageAssignment[];
|
|
9704
|
+
@contains catalogs: accessPackageCatalog[];
|
|
9705
|
+
@contains connectedOrganizations: connectedOrganization[];
|
|
9706
|
+
@contains resourceEnvironments: accessPackageResourceEnvironment[];
|
|
9707
|
+
@contains resourceRequests: accessPackageResourceRequest[];
|
|
9708
|
+
@contains resourceRoleScopes: accessPackageResourceRoleScope[];
|
|
9709
|
+
@contains resources: accessPackageResource[];
|
|
9710
|
+
@contains settings: entitlementManagementSettings | null;
|
|
9711
|
+
}
|
|
9712
|
+
|
|
9713
|
+
@entity model entitlementManagementSettings extends entity {
|
|
9714
|
+
durationUntilExternalUserDeletedAfterBlocked: duration | null;
|
|
9715
|
+
externalUserLifecycleAction: accessPackageExternalUserLifecycleAction | null;
|
|
9716
|
+
}
|
|
9717
|
+
|
|
8388
9718
|
@abstract
|
|
8389
9719
|
@entity model entity {
|
|
8390
9720
|
@computed @key id: string;
|
|
@@ -8481,6 +9811,15 @@ namespace reference.`microsoft.graph` {
|
|
|
8481
9811
|
@entity model externalDomainName extends entity {
|
|
8482
9812
|
}
|
|
8483
9813
|
|
|
9814
|
+
@entity model featureRolloutPolicy extends entity {
|
|
9815
|
+
description: string | null;
|
|
9816
|
+
displayName: string;
|
|
9817
|
+
feature: stagedFeatureName;
|
|
9818
|
+
isAppliedToOrganization: boolean;
|
|
9819
|
+
isEnabled: boolean;
|
|
9820
|
+
@contains appliesTo: directoryObject[];
|
|
9821
|
+
}
|
|
9822
|
+
|
|
8484
9823
|
@entity model federatedIdentityCredential extends entity {
|
|
8485
9824
|
audiences: string[];
|
|
8486
9825
|
description: string | null;
|
|
@@ -8489,6 +9828,10 @@ namespace reference.`microsoft.graph` {
|
|
|
8489
9828
|
subject: string;
|
|
8490
9829
|
}
|
|
8491
9830
|
|
|
9831
|
+
@entity model fido2CombinationConfiguration extends authenticationCombinationConfiguration {
|
|
9832
|
+
allowedAAGUIDs: string[];
|
|
9833
|
+
}
|
|
9834
|
+
|
|
8492
9835
|
@open
|
|
8493
9836
|
@entity model fieldValueSet extends entity {
|
|
8494
9837
|
}
|
|
@@ -8559,6 +9902,11 @@ namespace reference.`microsoft.graph` {
|
|
|
8559
9902
|
supportedAttributeTypes: attributeType[];
|
|
8560
9903
|
}
|
|
8561
9904
|
|
|
9905
|
+
@abstract
|
|
9906
|
+
@entity model governanceInsight extends entity {
|
|
9907
|
+
insightCreatedDateTime: offsetDateTime | null;
|
|
9908
|
+
}
|
|
9909
|
+
|
|
8562
9910
|
@open
|
|
8563
9911
|
@entity model group extends directoryObject {
|
|
8564
9912
|
allowExternalSenders: boolean | null;
|
|
@@ -8574,6 +9922,7 @@ namespace reference.`microsoft.graph` {
|
|
|
8574
9922
|
hasMembersWithLicenseErrors: boolean | null;
|
|
8575
9923
|
hideFromAddressLists: boolean | null;
|
|
8576
9924
|
hideFromOutlookClients: boolean | null;
|
|
9925
|
+
infoCatalogs: string[];
|
|
8577
9926
|
isArchived: boolean | null;
|
|
8578
9927
|
isAssignableToRole: boolean | null;
|
|
8579
9928
|
isManagementRestricted: boolean | null;
|
|
@@ -8603,6 +9952,7 @@ namespace reference.`microsoft.graph` {
|
|
|
8603
9952
|
uniqueName: string | null;
|
|
8604
9953
|
unseenCount: int32 | null;
|
|
8605
9954
|
visibility: string | null;
|
|
9955
|
+
welcomeMessageEnabled: boolean | null;
|
|
8606
9956
|
@contains acceptedSenders: directoryObject[];
|
|
8607
9957
|
@contains appRoleAssignments: appRoleAssignment[];
|
|
8608
9958
|
@contains calendar: calendar | null;
|
|
@@ -8622,6 +9972,7 @@ namespace reference.`microsoft.graph` {
|
|
|
8622
9972
|
@contains permissionGrants: resourceSpecificPermissionGrant[];
|
|
8623
9973
|
@contains photo: profilePhoto | null;
|
|
8624
9974
|
@contains photos: profilePhoto[];
|
|
9975
|
+
@contains planner: plannerGroup | null;
|
|
8625
9976
|
@contains rejectedSenders: directoryObject[];
|
|
8626
9977
|
@contains settings: groupSetting[];
|
|
8627
9978
|
@contains sites: site[];
|
|
@@ -8666,9 +10017,13 @@ namespace reference.`microsoft.graph` {
|
|
|
8666
10017
|
}
|
|
8667
10018
|
|
|
8668
10019
|
@entity model identityContainer extends MsGraph.SharedModels.entity {
|
|
10020
|
+
@contains conditionalAccess: conditionalAccessRoot | null;
|
|
8669
10021
|
}
|
|
8670
10022
|
|
|
8671
10023
|
@entity model identityGovernance extends MsGraph.SharedModels.entity {
|
|
10024
|
+
@contains accessReviews: accessReviewSet | null;
|
|
10025
|
+
@contains appConsent: appConsentApprovalRoute | null;
|
|
10026
|
+
@contains entitlementManagement: entitlementManagement | null;
|
|
8672
10027
|
@contains privilegedAccess: privilegedAccessRoot | null;
|
|
8673
10028
|
@contains termsOfUse: termsOfUseContainer | null;
|
|
8674
10029
|
}
|
|
@@ -8685,6 +10040,10 @@ namespace reference.`microsoft.graph` {
|
|
|
8685
10040
|
displayName: string | null;
|
|
8686
10041
|
}
|
|
8687
10042
|
|
|
10043
|
+
@entity model identitySecurityDefaultsEnforcementPolicy extends policyBase {
|
|
10044
|
+
isEnabled: boolean;
|
|
10045
|
+
}
|
|
10046
|
+
|
|
8688
10047
|
/**
|
|
8689
10048
|
* Imported windows autopilot devices.
|
|
8690
10049
|
*/
|
|
@@ -8750,6 +10109,11 @@ namespace reference.`microsoft.graph` {
|
|
|
8750
10109
|
@contains bitlocker: bitlocker | null;
|
|
8751
10110
|
}
|
|
8752
10111
|
|
|
10112
|
+
@entity model inheritablePermission extends MsGraph.SharedModels.entity {
|
|
10113
|
+
inheritableScopes: inheritableScopes | null;
|
|
10114
|
+
@computed @key resourceAppId: string;
|
|
10115
|
+
}
|
|
10116
|
+
|
|
8753
10117
|
@entity model insightsSettings extends entity {
|
|
8754
10118
|
disabledForGroup: string | null;
|
|
8755
10119
|
isEnabledInOrganization: boolean | null;
|
|
@@ -8815,7 +10179,7 @@ namespace reference.`microsoft.graph` {
|
|
|
8815
10179
|
*/
|
|
8816
10180
|
passcodeBlockSimple: boolean;
|
|
8817
10181
|
/**
|
|
8818
|
-
* Number of days before the passcode expires. Valid values 1 to 65535
|
|
10182
|
+
* 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
10183
|
*/
|
|
8820
10184
|
passcodeExpirationDays: int32 | null;
|
|
8821
10185
|
/**
|
|
@@ -9711,6 +11075,11 @@ namespace reference.`microsoft.graph` {
|
|
|
9711
11075
|
@entity model iosVppEBookAssignment extends managedEBookAssignment {
|
|
9712
11076
|
}
|
|
9713
11077
|
|
|
11078
|
+
@entity model ipNamedLocation extends namedLocation {
|
|
11079
|
+
ipRanges: ipRange[];
|
|
11080
|
+
isTrusted: boolean;
|
|
11081
|
+
}
|
|
11082
|
+
|
|
9714
11083
|
@open
|
|
9715
11084
|
@entity model itemActivity extends entity {
|
|
9716
11085
|
access: accessAction | null;
|
|
@@ -9825,71 +11194,71 @@ namespace reference.`microsoft.graph` {
|
|
|
9825
11194
|
*/
|
|
9826
11195
|
@entity model macOSCompliancePolicy extends deviceCompliancePolicy {
|
|
9827
11196
|
/**
|
|
9828
|
-
*
|
|
11197
|
+
* 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
11198
|
*/
|
|
9830
11199
|
deviceThreatProtectionEnabled: boolean;
|
|
9831
11200
|
/**
|
|
9832
|
-
*
|
|
11201
|
+
* 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
11202
|
*/
|
|
9834
11203
|
deviceThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
|
|
9835
11204
|
/**
|
|
9836
|
-
*
|
|
11205
|
+
* 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
11206
|
*/
|
|
9838
11207
|
firewallBlockAllIncoming: boolean;
|
|
9839
11208
|
/**
|
|
9840
|
-
*
|
|
11209
|
+
* 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
11210
|
*/
|
|
9842
11211
|
firewallEnabled: boolean;
|
|
9843
11212
|
/**
|
|
9844
|
-
*
|
|
11213
|
+
* 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
11214
|
*/
|
|
9846
11215
|
firewallEnableStealthMode: boolean;
|
|
9847
11216
|
/**
|
|
9848
|
-
*
|
|
11217
|
+
* 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
11218
|
*/
|
|
9850
11219
|
osMaximumVersion: string | null;
|
|
9851
11220
|
/**
|
|
9852
|
-
*
|
|
11221
|
+
* 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
11222
|
*/
|
|
9854
11223
|
osMinimumVersion: string | null;
|
|
9855
11224
|
/**
|
|
9856
|
-
*
|
|
11225
|
+
* 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
11226
|
*/
|
|
9858
11227
|
passwordBlockSimple: boolean;
|
|
9859
11228
|
/**
|
|
9860
|
-
*
|
|
11229
|
+
* 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
11230
|
*/
|
|
9862
11231
|
passwordExpirationDays: int32 | null;
|
|
9863
11232
|
/**
|
|
9864
|
-
*
|
|
11233
|
+
* 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
11234
|
*/
|
|
9866
11235
|
passwordMinimumCharacterSetCount: int32 | null;
|
|
9867
11236
|
/**
|
|
9868
|
-
*
|
|
11237
|
+
* 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
11238
|
*/
|
|
9870
11239
|
passwordMinimumLength: int32 | null;
|
|
9871
11240
|
/**
|
|
9872
|
-
*
|
|
11241
|
+
* 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
11242
|
*/
|
|
9874
11243
|
passwordMinutesOfInactivityBeforeLock: int32 | null;
|
|
9875
11244
|
/**
|
|
9876
|
-
*
|
|
11245
|
+
* 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
11246
|
*/
|
|
9878
11247
|
passwordPreviousPasswordBlockCount: int32 | null;
|
|
9879
11248
|
/**
|
|
9880
|
-
*
|
|
11249
|
+
* 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
11250
|
*/
|
|
9882
11251
|
passwordRequired: boolean;
|
|
9883
11252
|
/**
|
|
9884
|
-
*
|
|
11253
|
+
* 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
11254
|
*/
|
|
9886
11255
|
passwordRequiredType: requiredPasswordType;
|
|
9887
11256
|
/**
|
|
9888
|
-
*
|
|
11257
|
+
* 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
11258
|
*/
|
|
9890
11259
|
storageRequireEncryption: boolean;
|
|
9891
11260
|
/**
|
|
9892
|
-
*
|
|
11261
|
+
* 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
11262
|
*/
|
|
9894
11263
|
systemIntegrityProtectionEnabled: boolean;
|
|
9895
11264
|
}
|
|
@@ -11468,6 +12837,13 @@ namespace reference.`microsoft.graph` {
|
|
|
11468
12837
|
value: string[] | null;
|
|
11469
12838
|
}
|
|
11470
12839
|
|
|
12840
|
+
@entity model namedLocation extends policyDeletableItem {
|
|
12841
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
12842
|
+
displayName: string;
|
|
12843
|
+
@computed @key id: string;
|
|
12844
|
+
modifiedDateTime: offsetDateTime | null;
|
|
12845
|
+
}
|
|
12846
|
+
|
|
11471
12847
|
/**
|
|
11472
12848
|
* 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
12849
|
*/
|
|
@@ -11690,9 +13066,15 @@ namespace reference.`microsoft.graph` {
|
|
|
11690
13066
|
@contains masterCategories: outlookCategory[];
|
|
11691
13067
|
}
|
|
11692
13068
|
|
|
13069
|
+
@entity model passkeyAuthenticationMethodTarget extends authenticationMethodTarget {
|
|
13070
|
+
allowedPasskeyProfiles: guid | null;
|
|
13071
|
+
}
|
|
13072
|
+
|
|
11693
13073
|
@entity model peopleAdminSettings extends entity {
|
|
11694
13074
|
@contains itemInsights: insightsSettings | null;
|
|
11695
13075
|
@contains profileCardProperties: profileCardProperty[];
|
|
13076
|
+
@contains profilePropertySettings: profilePropertySetting[];
|
|
13077
|
+
@contains profileSources: profileSource[];
|
|
11696
13078
|
@contains pronouns: pronounsSettings | null;
|
|
11697
13079
|
}
|
|
11698
13080
|
|
|
@@ -11760,21 +13142,118 @@ namespace reference.`microsoft.graph` {
|
|
|
11760
13142
|
@references message: chatMessage | null;
|
|
11761
13143
|
}
|
|
11762
13144
|
|
|
13145
|
+
@entity model planner extends entity {
|
|
13146
|
+
@contains buckets: plannerBucket[];
|
|
13147
|
+
@contains plans: plannerPlan[];
|
|
13148
|
+
@contains tasks: plannerTask[];
|
|
13149
|
+
}
|
|
13150
|
+
|
|
13151
|
+
@entity model plannerAssignedToTaskBoardTaskFormat extends entity {
|
|
13152
|
+
orderHintsByAssignee: plannerOrderHintsByAssignee | null;
|
|
13153
|
+
unassignedOrderHint: string | null;
|
|
13154
|
+
}
|
|
13155
|
+
|
|
13156
|
+
@entity model plannerBucket extends entity {
|
|
13157
|
+
name: string;
|
|
13158
|
+
orderHint: string | null;
|
|
13159
|
+
planId: string | null;
|
|
13160
|
+
@references tasks: plannerTask[];
|
|
13161
|
+
}
|
|
13162
|
+
|
|
13163
|
+
@entity model plannerBucketTaskBoardTaskFormat extends entity {
|
|
13164
|
+
orderHint: string | null;
|
|
13165
|
+
}
|
|
13166
|
+
|
|
13167
|
+
@entity model plannerGroup extends entity {
|
|
13168
|
+
@references plans: plannerPlan[];
|
|
13169
|
+
}
|
|
13170
|
+
|
|
13171
|
+
@entity model plannerPlan extends entity {
|
|
13172
|
+
container: plannerPlanContainer | null;
|
|
13173
|
+
createdBy: identitySet | null;
|
|
13174
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
13175
|
+
|
|
13176
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
13177
|
+
owner: string | null;
|
|
13178
|
+
title: string;
|
|
13179
|
+
@references buckets: plannerBucket[];
|
|
13180
|
+
@contains details: plannerPlanDetails | null;
|
|
13181
|
+
@references tasks: plannerTask[];
|
|
13182
|
+
}
|
|
13183
|
+
|
|
13184
|
+
@entity model plannerPlanDetails extends entity {
|
|
13185
|
+
categoryDescriptions: plannerCategoryDescriptions | null;
|
|
13186
|
+
sharedWith: plannerUserIds | null;
|
|
13187
|
+
}
|
|
13188
|
+
|
|
13189
|
+
@entity model plannerProgressTaskBoardTaskFormat extends entity {
|
|
13190
|
+
orderHint: string | null;
|
|
13191
|
+
}
|
|
13192
|
+
|
|
13193
|
+
@entity model plannerTask extends entity {
|
|
13194
|
+
activeChecklistItemCount: int32 | null;
|
|
13195
|
+
appliedCategories: plannerAppliedCategories | null;
|
|
13196
|
+
assigneePriority: string | null;
|
|
13197
|
+
assignments: plannerAssignments | null;
|
|
13198
|
+
bucketId: string | null;
|
|
13199
|
+
checklistItemCount: int32 | null;
|
|
13200
|
+
completedBy: identitySet | null;
|
|
13201
|
+
completedDateTime: offsetDateTime | null;
|
|
13202
|
+
conversationThreadId: string | null;
|
|
13203
|
+
createdBy: identitySet | null;
|
|
13204
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
13205
|
+
dueDateTime: offsetDateTime | null;
|
|
13206
|
+
hasDescription: boolean | null;
|
|
13207
|
+
orderHint: string | null;
|
|
13208
|
+
percentComplete: int32 | null;
|
|
13209
|
+
planId: string | null;
|
|
13210
|
+
previewType: plannerPreviewType | null;
|
|
13211
|
+
priority: int32 | null;
|
|
13212
|
+
referenceCount: int32 | null;
|
|
13213
|
+
startDateTime: offsetDateTime | null;
|
|
13214
|
+
title: string;
|
|
13215
|
+
@contains assignedToTaskBoardFormat: plannerAssignedToTaskBoardTaskFormat | null;
|
|
13216
|
+
@contains bucketTaskBoardFormat: plannerBucketTaskBoardTaskFormat | null;
|
|
13217
|
+
@contains details: plannerTaskDetails | null;
|
|
13218
|
+
@contains progressTaskBoardFormat: plannerProgressTaskBoardTaskFormat | null;
|
|
13219
|
+
}
|
|
13220
|
+
|
|
13221
|
+
@entity model plannerTaskDetails extends entity {
|
|
13222
|
+
checklist: plannerChecklistItems | null;
|
|
13223
|
+
description: string | null;
|
|
13224
|
+
previewType: plannerPreviewType | null;
|
|
13225
|
+
references: plannerExternalReferences | null;
|
|
13226
|
+
}
|
|
13227
|
+
|
|
13228
|
+
@entity model plannerUser extends entity {
|
|
13229
|
+
@references plans: plannerPlan[];
|
|
13230
|
+
@references tasks: plannerTask[];
|
|
13231
|
+
}
|
|
13232
|
+
|
|
11763
13233
|
@abstract
|
|
11764
13234
|
@entity model policyBase extends directoryObject {
|
|
11765
13235
|
description: string | null;
|
|
11766
13236
|
displayName: string | null;
|
|
11767
13237
|
}
|
|
11768
13238
|
|
|
11769
|
-
@
|
|
13239
|
+
@abstract
|
|
13240
|
+
@entity model policyDeletableItem extends MsGraph.SharedModels.entity {
|
|
13241
|
+
deletedDateTime: offsetDateTime | null;
|
|
13242
|
+
}
|
|
13243
|
+
|
|
13244
|
+
@entity model policyRoot extends entity {
|
|
11770
13245
|
@contains activityBasedTimeoutPolicies: activityBasedTimeoutPolicy[];
|
|
13246
|
+
@contains adminConsentRequestPolicy: adminConsentRequestPolicy | null;
|
|
11771
13247
|
@contains appManagementPolicies: appManagementPolicy[];
|
|
11772
13248
|
@contains authorizationPolicy: authorizationPolicy | null;
|
|
11773
13249
|
@contains claimsMappingPolicies: claimsMappingPolicy[];
|
|
13250
|
+
@contains conditionalAccessPolicies: conditionalAccessPolicy[];
|
|
11774
13251
|
@contains crossTenantAccessPolicy: crossTenantAccessPolicy | null;
|
|
11775
13252
|
@contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
|
|
11776
13253
|
@contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
|
|
13254
|
+
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
11777
13255
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
13256
|
+
@contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
|
|
11778
13257
|
@contains permissionGrantPolicies: permissionGrantPolicy[];
|
|
11779
13258
|
@contains roleManagementPolicies: unifiedRoleManagementPolicy[];
|
|
11780
13259
|
@contains roleManagementPolicyAssignments: unifiedRoleManagementPolicyAssignment[];
|
|
@@ -11803,9 +13282,11 @@ namespace reference.`microsoft.graph` {
|
|
|
11803
13282
|
activity: string | null;
|
|
11804
13283
|
availability: string | null;
|
|
11805
13284
|
statusMessage: presenceStatusMessage | null;
|
|
13285
|
+
workLocation: userWorkLocation | null;
|
|
11806
13286
|
}
|
|
11807
13287
|
|
|
11808
13288
|
@entity model privilegedAccessGroup extends entity {
|
|
13289
|
+
@contains assignmentApprovals: approval[];
|
|
11809
13290
|
@contains assignmentScheduleInstances: privilegedAccessGroupAssignmentScheduleInstance[];
|
|
11810
13291
|
@contains assignmentScheduleRequests: privilegedAccessGroupAssignmentScheduleRequest[];
|
|
11811
13292
|
@contains assignmentSchedules: privilegedAccessGroupAssignmentSchedule[];
|
|
@@ -11915,6 +13396,20 @@ namespace reference.`microsoft.graph` {
|
|
|
11915
13396
|
width: int32 | null;
|
|
11916
13397
|
}
|
|
11917
13398
|
|
|
13399
|
+
@entity model profilePropertySetting extends entity {
|
|
13400
|
+
displayName: string | null;
|
|
13401
|
+
name: string | null;
|
|
13402
|
+
prioritizedSourceUrls: string[];
|
|
13403
|
+
}
|
|
13404
|
+
|
|
13405
|
+
@entity model profileSource extends entity {
|
|
13406
|
+
displayName: string | null;
|
|
13407
|
+
kind: string | null;
|
|
13408
|
+
localizations: profileSourceLocalization[];
|
|
13409
|
+
sourceId: string | null;
|
|
13410
|
+
webUrl: string | null;
|
|
13411
|
+
}
|
|
13412
|
+
|
|
11918
13413
|
@entity model pronounsSettings extends entity {
|
|
11919
13414
|
isEnabledInOrganization: boolean;
|
|
11920
13415
|
}
|
|
@@ -11938,6 +13433,13 @@ namespace reference.`microsoft.graph` {
|
|
|
11938
13433
|
tenantId: string | null;
|
|
11939
13434
|
}
|
|
11940
13435
|
|
|
13436
|
+
@entity model qrPin extends entity {
|
|
13437
|
+
code: string;
|
|
13438
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
13439
|
+
forceChangePinNextSignIn: boolean | null;
|
|
13440
|
+
updatedDateTime: offsetDateTime | null;
|
|
13441
|
+
}
|
|
13442
|
+
|
|
11941
13443
|
@entity model rbacApplication extends entity {
|
|
11942
13444
|
@contains resourceNamespaces: unifiedRbacResourceNamespace[];
|
|
11943
13445
|
@contains roleAssignments: unifiedRoleAssignment[];
|
|
@@ -11990,6 +13492,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11990
13492
|
|
|
11991
13493
|
@entity model remoteDesktopSecurityConfiguration extends entity {
|
|
11992
13494
|
isRemoteDesktopProtocolEnabled: boolean;
|
|
13495
|
+
@contains approvedClientApps: approvedClientApp[];
|
|
11993
13496
|
@contains targetDeviceGroups: targetDeviceGroup[];
|
|
11994
13497
|
}
|
|
11995
13498
|
|
|
@@ -11997,8 +13500,13 @@ namespace reference.`microsoft.graph` {
|
|
|
11997
13500
|
@contains authenticationMethods: authenticationMethodsRoot | null;
|
|
11998
13501
|
}
|
|
11999
13502
|
|
|
12000
|
-
@abstract
|
|
12001
13503
|
@entity model request extends entity {
|
|
13504
|
+
approvalId: string | null;
|
|
13505
|
+
completedDateTime: offsetDateTime | null;
|
|
13506
|
+
createdBy: identitySet | null;
|
|
13507
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
13508
|
+
customData: string | null;
|
|
13509
|
+
status: string;
|
|
12002
13510
|
}
|
|
12003
13511
|
|
|
12004
13512
|
/**
|
|
@@ -12142,6 +13650,10 @@ namespace reference.`microsoft.graph` {
|
|
|
12142
13650
|
|
|
12143
13651
|
@entity model roleManagement extends MsGraph.SharedModels.entity {
|
|
12144
13652
|
@contains directory: rbacApplication | null;
|
|
13653
|
+
/**
|
|
13654
|
+
* The RbacApplication for Entitlement Management
|
|
13655
|
+
*/
|
|
13656
|
+
@contains entitlementManagement: rbacApplication | null;
|
|
12145
13657
|
}
|
|
12146
13658
|
|
|
12147
13659
|
@entity model samlOrWsFedExternalDomainFederation extends samlOrWsFedProvider {
|
|
@@ -12224,12 +13736,14 @@ namespace reference.`microsoft.graph` {
|
|
|
12224
13736
|
appOwnerOrganizationId: guid | null;
|
|
12225
13737
|
appRoleAssignmentRequired: boolean;
|
|
12226
13738
|
appRoles: appRole[];
|
|
13739
|
+
createdByAppId: string | null;
|
|
12227
13740
|
customSecurityAttributes: customSecurityAttributeValue | null;
|
|
12228
13741
|
description: string | null;
|
|
12229
13742
|
disabledByMicrosoftStatus: string | null;
|
|
12230
13743
|
displayName: string | null;
|
|
12231
13744
|
homepage: string | null;
|
|
12232
13745
|
info: informationalUrl | null;
|
|
13746
|
+
isDisabled: boolean | null;
|
|
12233
13747
|
keyCredentials: keyCredential[];
|
|
12234
13748
|
loginUrl: string | null;
|
|
12235
13749
|
logoutUrl: string | null;
|
|
@@ -13205,11 +14719,13 @@ namespace reference.`microsoft.graph` {
|
|
|
13205
14719
|
|
|
13206
14720
|
@open
|
|
13207
14721
|
@entity model user extends directoryObject {
|
|
14722
|
+
aboutMe: string | null;
|
|
13208
14723
|
accountEnabled: boolean | null;
|
|
13209
14724
|
ageGroup: string | null;
|
|
13210
14725
|
assignedLicenses: assignedLicense[];
|
|
13211
14726
|
assignedPlans: assignedPlan[];
|
|
13212
14727
|
authorizationInfo: authorizationInfo | null;
|
|
14728
|
+
birthday: offsetDateTime;
|
|
13213
14729
|
businessPhones: string[];
|
|
13214
14730
|
city: string | null;
|
|
13215
14731
|
companyName: string | null;
|
|
@@ -13233,8 +14749,11 @@ namespace reference.`microsoft.graph` {
|
|
|
13233
14749
|
externalUserStateChangeDateTime: offsetDateTime | null;
|
|
13234
14750
|
faxNumber: string | null;
|
|
13235
14751
|
givenName: string | null;
|
|
14752
|
+
hireDate: offsetDateTime;
|
|
13236
14753
|
identities: objectIdentity[] | null;
|
|
14754
|
+
identityParentId: string | null;
|
|
13237
14755
|
imAddresses: string[] | null;
|
|
14756
|
+
interests: string[] | null;
|
|
13238
14757
|
isManagementRestricted: boolean | null;
|
|
13239
14758
|
isResourceAccount: boolean | null;
|
|
13240
14759
|
jobTitle: string | null;
|
|
@@ -13245,6 +14764,7 @@ namespace reference.`microsoft.graph` {
|
|
|
13245
14764
|
mailboxSettings: mailboxSettings | null;
|
|
13246
14765
|
mailNickname: string | null;
|
|
13247
14766
|
mobilePhone: string | null;
|
|
14767
|
+
mySite: string | null;
|
|
13248
14768
|
officeLocation: string | null;
|
|
13249
14769
|
onPremisesDistinguishedName: string | null;
|
|
13250
14770
|
onPremisesDomainName: string | null;
|
|
@@ -13259,15 +14779,20 @@ namespace reference.`microsoft.graph` {
|
|
|
13259
14779
|
otherMails: string[];
|
|
13260
14780
|
passwordPolicies: string | null;
|
|
13261
14781
|
passwordProfile: passwordProfile | null;
|
|
14782
|
+
pastProjects: string[] | null;
|
|
13262
14783
|
postalCode: string | null;
|
|
13263
14784
|
preferredDataLocation: string | null;
|
|
13264
14785
|
preferredLanguage: string | null;
|
|
14786
|
+
preferredName: string | null;
|
|
13265
14787
|
provisionedPlans: provisionedPlan[];
|
|
13266
14788
|
proxyAddresses: string[];
|
|
14789
|
+
responsibilities: string[] | null;
|
|
14790
|
+
schools: string[] | null;
|
|
13267
14791
|
securityIdentifier: string | null;
|
|
13268
14792
|
showInAddressList: boolean | null;
|
|
13269
14793
|
signInActivity: signInActivity | null;
|
|
13270
14794
|
signInSessionsValidFromDateTime: offsetDateTime | null;
|
|
14795
|
+
skills: string[] | null;
|
|
13271
14796
|
state: string | null;
|
|
13272
14797
|
streetAddress: string | null;
|
|
13273
14798
|
surname: string | null;
|
|
@@ -13320,6 +14845,7 @@ namespace reference.`microsoft.graph` {
|
|
|
13320
14845
|
@contains permissionGrants: resourceSpecificPermissionGrant[];
|
|
13321
14846
|
@contains photo: profilePhoto | null;
|
|
13322
14847
|
@contains photos: profilePhoto[];
|
|
14848
|
+
@contains planner: plannerUser | null;
|
|
13323
14849
|
@contains presence: presence | null;
|
|
13324
14850
|
@references registeredDevices: directoryObject[];
|
|
13325
14851
|
@contains scopedRoleMemberOf: scopedRoleMembership[];
|
|
@@ -13328,6 +14854,11 @@ namespace reference.`microsoft.graph` {
|
|
|
13328
14854
|
@references transitiveMemberOf: directoryObject[];
|
|
13329
14855
|
}
|
|
13330
14856
|
|
|
14857
|
+
@entity model userConsentRequest extends request {
|
|
14858
|
+
reason: string | null;
|
|
14859
|
+
@contains approval: approval | null;
|
|
14860
|
+
}
|
|
14861
|
+
|
|
13331
14862
|
/**
|
|
13332
14863
|
* The user experience analytics application performance entity contains application performance details.
|
|
13333
14864
|
*/
|
|
@@ -14336,6 +15867,10 @@ namespace reference.`microsoft.graph` {
|
|
|
14336
15867
|
@contains itemInsights: userInsightsSettings | null;
|
|
14337
15868
|
}
|
|
14338
15869
|
|
|
15870
|
+
@entity model userSignInInsight extends governanceInsight {
|
|
15871
|
+
@computed lastSignInDateTime: offsetDateTime | null;
|
|
15872
|
+
}
|
|
15873
|
+
|
|
14339
15874
|
@entity model userTeamwork extends entity {
|
|
14340
15875
|
locale: string | null;
|
|
14341
15876
|
region: string | null;
|
|
@@ -14416,6 +15951,11 @@ namespace reference.`microsoft.graph` {
|
|
|
14416
15951
|
@entity model webPart extends entity {
|
|
14417
15952
|
}
|
|
14418
15953
|
|
|
15954
|
+
@entity model whatIfAnalysisResult extends conditionalAccessPolicy {
|
|
15955
|
+
analysisReasons: whatIfAnalysisReasons;
|
|
15956
|
+
policyApplies: boolean;
|
|
15957
|
+
}
|
|
15958
|
+
|
|
14419
15959
|
/**
|
|
14420
15960
|
* Contains properties and inherited properties for Win32 apps.
|
|
14421
15961
|
*/
|
|
@@ -16004,7 +17544,7 @@ namespace reference.`microsoft.graph` {
|
|
|
16004
17544
|
*/
|
|
16005
17545
|
preprovisioningAllowed: boolean | null;
|
|
16006
17546
|
/**
|
|
16007
|
-
* List of role scope tags for the deployment profile.
|
|
17547
|
+
* List of role scope tags for the deployment profile.
|
|
16008
17548
|
*/
|
|
16009
17549
|
roleScopeTagIds: string[] | null;
|
|
16010
17550
|
/**
|
|
@@ -16620,6 +18160,10 @@ namespace reference.`microsoft.graph` {
|
|
|
16620
18160
|
* Current anti malware version
|
|
16621
18161
|
*/
|
|
16622
18162
|
antiMalwareVersion: string | null;
|
|
18163
|
+
/**
|
|
18164
|
+
* 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.
|
|
18165
|
+
*/
|
|
18166
|
+
controlledConfigurationEnabled: boolean | null;
|
|
16623
18167
|
/**
|
|
16624
18168
|
* Indicates device's health state. Possible values are: clean, fullScanPending, rebootPending, manualStepsPending, offlineScanPending, critical.
|
|
16625
18169
|
*/
|
|
@@ -16904,14 +18448,162 @@ namespace reference.`microsoft.graph` {
|
|
|
16904
18448
|
userWindowsUpdateScanAccess: enablement;
|
|
16905
18449
|
}
|
|
16906
18450
|
|
|
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;
|
|
18451
|
+
/**
|
|
18452
|
+
* Contains properties and inherited properties for Windows web apps.
|
|
18453
|
+
*/
|
|
18454
|
+
@entity model windowsWebApp extends mobileApp {
|
|
18455
|
+
/**
|
|
18456
|
+
* Indicates the Windows web app URL. Example: "https://www.contoso.com"
|
|
18457
|
+
*/
|
|
18458
|
+
appUrl: string | null;
|
|
18459
|
+
}
|
|
18460
|
+
|
|
18461
|
+
@entity model x509CertificateCombinationConfiguration extends authenticationCombinationConfiguration {
|
|
18462
|
+
allowedIssuerSkis: string[];
|
|
18463
|
+
allowedPolicyOIDs: string[];
|
|
18464
|
+
}
|
|
18465
|
+
|
|
18466
|
+
enum accessPackageAssignmentFilterByCurrentUserOptions {
|
|
18467
|
+
target: 1,
|
|
18468
|
+
createdBy: 2,
|
|
18469
|
+
unknownFutureValue: 99,
|
|
18470
|
+
targetManager: 100,
|
|
18471
|
+
targetAgentIdentitySponsorOrOwner: 101,
|
|
18472
|
+
}
|
|
18473
|
+
|
|
18474
|
+
enum accessPackageAssignmentRequestFilterByCurrentUserOptions {
|
|
18475
|
+
target: 1,
|
|
18476
|
+
createdBy: 2,
|
|
18477
|
+
approver: 3,
|
|
18478
|
+
unknownFutureValue: 99,
|
|
18479
|
+
targetOrRequestor: 100,
|
|
18480
|
+
targetManager: 101,
|
|
18481
|
+
requestForOthers: 102,
|
|
18482
|
+
targetAgentIdentitySponsorOrOwner: 103,
|
|
18483
|
+
}
|
|
18484
|
+
|
|
18485
|
+
enum accessPackageAssignmentState {
|
|
18486
|
+
delivering: 0,
|
|
18487
|
+
partiallyDelivered: 1,
|
|
18488
|
+
delivered: 2,
|
|
18489
|
+
expired: 3,
|
|
18490
|
+
deliveryFailed: 4,
|
|
18491
|
+
unknownFutureValue: 5,
|
|
18492
|
+
}
|
|
18493
|
+
|
|
18494
|
+
enum accessPackageCatalogState {
|
|
18495
|
+
unpublished: 1,
|
|
18496
|
+
published: 2,
|
|
18497
|
+
unknownFutureValue: 3,
|
|
18498
|
+
}
|
|
18499
|
+
|
|
18500
|
+
enum accessPackageCatalogType {
|
|
18501
|
+
userManaged: 1,
|
|
18502
|
+
serviceDefault: 2,
|
|
18503
|
+
serviceManaged: 3,
|
|
18504
|
+
unknownFutureValue: 4,
|
|
18505
|
+
}
|
|
18506
|
+
|
|
18507
|
+
enum accessPackageCustomExtensionStage {
|
|
18508
|
+
assignmentRequestCreated: 1,
|
|
18509
|
+
assignmentRequestApproved: 2,
|
|
18510
|
+
assignmentRequestGranted: 3,
|
|
18511
|
+
assignmentRequestRemoved: 4,
|
|
18512
|
+
assignmentFourteenDaysBeforeExpiration: 5,
|
|
18513
|
+
assignmentOneDayBeforeExpiration: 6,
|
|
18514
|
+
unknownFutureValue: 7,
|
|
18515
|
+
}
|
|
18516
|
+
|
|
18517
|
+
enum accessPackageExternalUserLifecycleAction {
|
|
18518
|
+
none: 0,
|
|
18519
|
+
blockSignIn: 1,
|
|
18520
|
+
blockSignInAndDelete: 2,
|
|
18521
|
+
unknownFutureValue: 3,
|
|
18522
|
+
}
|
|
18523
|
+
|
|
18524
|
+
enum accessPackageFilterByCurrentUserOptions {
|
|
18525
|
+
allowedRequestor: 1,
|
|
18526
|
+
unknownFutureValue: 99,
|
|
18527
|
+
}
|
|
18528
|
+
|
|
18529
|
+
enum accessPackageRequestState {
|
|
18530
|
+
submitted: 0,
|
|
18531
|
+
pendingApproval: 1,
|
|
18532
|
+
delivering: 2,
|
|
18533
|
+
delivered: 3,
|
|
18534
|
+
deliveryFailed: 4,
|
|
18535
|
+
denied: 5,
|
|
18536
|
+
scheduled: 6,
|
|
18537
|
+
canceled: 7,
|
|
18538
|
+
partiallyDelivered: 8,
|
|
18539
|
+
unknownFutureValue: 9,
|
|
18540
|
+
}
|
|
18541
|
+
|
|
18542
|
+
enum accessPackageRequestType {
|
|
18543
|
+
notSpecified: 0,
|
|
18544
|
+
userAdd: 1,
|
|
18545
|
+
userUpdate: 2,
|
|
18546
|
+
userRemove: 3,
|
|
18547
|
+
adminAdd: 4,
|
|
18548
|
+
adminUpdate: 5,
|
|
18549
|
+
adminRemove: 6,
|
|
18550
|
+
systemAdd: 7,
|
|
18551
|
+
systemUpdate: 8,
|
|
18552
|
+
systemRemove: 9,
|
|
18553
|
+
onBehalfAdd: 10,
|
|
18554
|
+
unknownFutureValue: 11,
|
|
18555
|
+
approverRemove: 12,
|
|
18556
|
+
}
|
|
18557
|
+
|
|
18558
|
+
enum accessPackageSubjectType {
|
|
18559
|
+
notSpecified: 0,
|
|
18560
|
+
user: 1,
|
|
18561
|
+
servicePrincipal: 2,
|
|
18562
|
+
unknownFutureValue: 3,
|
|
18563
|
+
}
|
|
18564
|
+
|
|
18565
|
+
enum accessReviewExpirationBehavior {
|
|
18566
|
+
keepAccess: 0,
|
|
18567
|
+
removeAccess: 1,
|
|
18568
|
+
acceptAccessRecommendation: 2,
|
|
18569
|
+
unknownFutureValue: 99,
|
|
18570
|
+
}
|
|
18571
|
+
|
|
18572
|
+
enum accessReviewHistoryDecisionFilter {
|
|
18573
|
+
approve: 0,
|
|
18574
|
+
deny: 1,
|
|
18575
|
+
notReviewed: 2,
|
|
18576
|
+
dontKnow: 3,
|
|
18577
|
+
notNotified: 4,
|
|
18578
|
+
unknownFutureValue: 5,
|
|
18579
|
+
}
|
|
18580
|
+
|
|
18581
|
+
enum accessReviewHistoryStatus {
|
|
18582
|
+
done: 0,
|
|
18583
|
+
inprogress: 1,
|
|
18584
|
+
error: 2,
|
|
18585
|
+
requested: 3,
|
|
18586
|
+
unknownFutureValue: 4,
|
|
18587
|
+
}
|
|
18588
|
+
|
|
18589
|
+
enum accessReviewInstanceDecisionItemFilterByCurrentUserOptions {
|
|
18590
|
+
reviewer: 1,
|
|
18591
|
+
unknownFutureValue: 2,
|
|
18592
|
+
}
|
|
18593
|
+
|
|
18594
|
+
enum accessReviewInstanceFilterByCurrentUserOptions {
|
|
18595
|
+
reviewer: 1,
|
|
18596
|
+
unknownFutureValue: 2,
|
|
18597
|
+
}
|
|
18598
|
+
|
|
18599
|
+
enum accessReviewScheduleDefinitionFilterByCurrentUserOptions {
|
|
18600
|
+
reviewer: 1,
|
|
18601
|
+
unknownFutureValue: 2,
|
|
18602
|
+
}
|
|
18603
|
+
|
|
18604
|
+
enum accessReviewStageFilterByCurrentUserOptions {
|
|
18605
|
+
reviewer: 1,
|
|
18606
|
+
unknownFutureValue: 2,
|
|
16915
18607
|
}
|
|
16916
18608
|
|
|
16917
18609
|
/**
|
|
@@ -16956,12 +18648,33 @@ namespace reference.`microsoft.graph` {
|
|
|
16956
18648
|
servicePrincipal: 3,
|
|
16957
18649
|
}
|
|
16958
18650
|
|
|
18651
|
+
enum advancedConfigState {
|
|
18652
|
+
default: 0,
|
|
18653
|
+
enabled: 1,
|
|
18654
|
+
disabled: 2,
|
|
18655
|
+
unknownFutureValue: 3,
|
|
18656
|
+
}
|
|
18657
|
+
|
|
16959
18658
|
enum agreementAcceptanceState {
|
|
16960
18659
|
accepted: 2,
|
|
16961
18660
|
declined: 3,
|
|
16962
18661
|
unknownFutureValue: 5,
|
|
16963
18662
|
}
|
|
16964
18663
|
|
|
18664
|
+
enum allowedTargetScope {
|
|
18665
|
+
notSpecified: 0,
|
|
18666
|
+
specificDirectoryUsers: 1,
|
|
18667
|
+
specificConnectedOrganizationUsers: 2,
|
|
18668
|
+
specificDirectoryServicePrincipals: 3,
|
|
18669
|
+
allMemberUsers: 4,
|
|
18670
|
+
allDirectoryUsers: 5,
|
|
18671
|
+
allDirectoryServicePrincipals: 6,
|
|
18672
|
+
allConfiguredConnectedOrganizationUsers: 7,
|
|
18673
|
+
allExternalUsers: 8,
|
|
18674
|
+
allDirectoryAgentIdentities: 9,
|
|
18675
|
+
unknownFutureValue: 10,
|
|
18676
|
+
}
|
|
18677
|
+
|
|
16965
18678
|
enum allowInvitesFrom {
|
|
16966
18679
|
none: 0,
|
|
16967
18680
|
adminsAndGuestInviters: 1,
|
|
@@ -17263,6 +18976,19 @@ namespace reference.`microsoft.graph` {
|
|
|
17263
18976
|
unknownFutureValue: 3,
|
|
17264
18977
|
}
|
|
17265
18978
|
|
|
18979
|
+
enum appManagementRestrictionState {
|
|
18980
|
+
enabled: 1,
|
|
18981
|
+
disabled: 2,
|
|
18982
|
+
unknownFutureValue: 3,
|
|
18983
|
+
}
|
|
18984
|
+
|
|
18985
|
+
enum approvalFilterByCurrentUserOptions {
|
|
18986
|
+
target: 0,
|
|
18987
|
+
createdBy: 1,
|
|
18988
|
+
approver: 2,
|
|
18989
|
+
unknownFutureValue: 3,
|
|
18990
|
+
}
|
|
18991
|
+
|
|
17266
18992
|
enum assignmentScheduleFilterByCurrentUserOptions {
|
|
17267
18993
|
principal: 1,
|
|
17268
18994
|
unknownFutureValue: 2,
|
|
@@ -17294,6 +19020,18 @@ namespace reference.`microsoft.graph` {
|
|
|
17294
19020
|
resource: 2,
|
|
17295
19021
|
}
|
|
17296
19022
|
|
|
19023
|
+
enum attestationEnforcement {
|
|
19024
|
+
disabled: 0,
|
|
19025
|
+
registrationOnly: 1,
|
|
19026
|
+
unknownFutureValue: 2,
|
|
19027
|
+
}
|
|
19028
|
+
|
|
19029
|
+
enum attestationLevel {
|
|
19030
|
+
attested: 0,
|
|
19031
|
+
notAttested: 1,
|
|
19032
|
+
unknownFutureValue: 2,
|
|
19033
|
+
}
|
|
19034
|
+
|
|
17297
19035
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
17298
19036
|
enum attributeDefinitionMetadata {
|
|
17299
19037
|
BaseAttributeName: 0,
|
|
@@ -17348,12 +19086,100 @@ namespace reference.`microsoft.graph` {
|
|
|
17348
19086
|
unknownFutureValue: 5,
|
|
17349
19087
|
}
|
|
17350
19088
|
|
|
19089
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
19090
|
+
enum authenticationMethodKeyStrength {
|
|
19091
|
+
normal: 0,
|
|
19092
|
+
weak: 1,
|
|
19093
|
+
`unknown`: 2,
|
|
19094
|
+
}
|
|
19095
|
+
|
|
19096
|
+
@graphFlags
|
|
19097
|
+
enum authenticationMethodModes {
|
|
19098
|
+
password: 1,
|
|
19099
|
+
voice: 2,
|
|
19100
|
+
hardwareOath: 4,
|
|
19101
|
+
softwareOath: 8,
|
|
19102
|
+
sms: 16,
|
|
19103
|
+
fido2: 32,
|
|
19104
|
+
windowsHelloForBusiness: 64,
|
|
19105
|
+
microsoftAuthenticatorPush: 128,
|
|
19106
|
+
deviceBasedPush: 256,
|
|
19107
|
+
temporaryAccessPassOneTime: 512,
|
|
19108
|
+
temporaryAccessPassMultiUse: 1024,
|
|
19109
|
+
email: 2048,
|
|
19110
|
+
x509CertificateSingleFactor: 4096,
|
|
19111
|
+
x509CertificateMultiFactor: 8192,
|
|
19112
|
+
federatedSingleFactor: 16384,
|
|
19113
|
+
federatedMultiFactor: 32768,
|
|
19114
|
+
unknownFutureValue: 65536,
|
|
19115
|
+
qrCodePin: 131072,
|
|
19116
|
+
}
|
|
19117
|
+
|
|
19118
|
+
enum authenticationMethodPlatform {
|
|
19119
|
+
`unknown`: 0,
|
|
19120
|
+
windows: 1,
|
|
19121
|
+
macOS: 2,
|
|
19122
|
+
iOS: 3,
|
|
19123
|
+
android: 4,
|
|
19124
|
+
linux: 5,
|
|
19125
|
+
unknownFutureValue: 6,
|
|
19126
|
+
}
|
|
19127
|
+
|
|
19128
|
+
enum authenticationMethodSignInState {
|
|
19129
|
+
notSupported: 0,
|
|
19130
|
+
notAllowedByPolicy: 1,
|
|
19131
|
+
notEnabled: 2,
|
|
19132
|
+
phoneNumberNotUnique: 3,
|
|
19133
|
+
ready: 4,
|
|
19134
|
+
notConfigured: 5,
|
|
19135
|
+
unknownFutureValue: 6,
|
|
19136
|
+
}
|
|
19137
|
+
|
|
19138
|
+
enum authenticationMethodsPolicyMigrationState {
|
|
19139
|
+
preMigration: 0,
|
|
19140
|
+
migrationInProgress: 1,
|
|
19141
|
+
migrationComplete: 2,
|
|
19142
|
+
unknownFutureValue: 3,
|
|
19143
|
+
}
|
|
19144
|
+
|
|
19145
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
19146
|
+
enum authenticationMethodState {
|
|
19147
|
+
enabled: 0,
|
|
19148
|
+
disabled: 1,
|
|
19149
|
+
}
|
|
19150
|
+
|
|
19151
|
+
enum authenticationMethodTargetType {
|
|
19152
|
+
user: 0,
|
|
19153
|
+
group: 1,
|
|
19154
|
+
unknownFutureValue: 2,
|
|
19155
|
+
}
|
|
19156
|
+
|
|
19157
|
+
enum authenticationPhoneType {
|
|
19158
|
+
mobile: 0,
|
|
19159
|
+
alternateMobile: 1,
|
|
19160
|
+
office: 2,
|
|
19161
|
+
unknownFutureValue: 3,
|
|
19162
|
+
}
|
|
19163
|
+
|
|
17351
19164
|
enum authenticationProtocol {
|
|
17352
19165
|
wsFed: 0,
|
|
17353
19166
|
saml: 1,
|
|
17354
19167
|
unknownFutureValue: 2,
|
|
17355
19168
|
}
|
|
17356
19169
|
|
|
19170
|
+
enum authenticationStrengthPolicyType {
|
|
19171
|
+
builtIn: 0,
|
|
19172
|
+
custom: 1,
|
|
19173
|
+
unknownFutureValue: 2,
|
|
19174
|
+
}
|
|
19175
|
+
|
|
19176
|
+
@graphFlags
|
|
19177
|
+
enum authenticationStrengthRequirements {
|
|
19178
|
+
none: 0,
|
|
19179
|
+
mfa: 1,
|
|
19180
|
+
unknownFutureValue: 2,
|
|
19181
|
+
}
|
|
19182
|
+
|
|
17357
19183
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
17358
19184
|
enum automaticRepliesStatus {
|
|
17359
19185
|
disabled: 0,
|
|
@@ -17421,6 +19247,23 @@ namespace reference.`microsoft.graph` {
|
|
|
17421
19247
|
unknownFutureValue: 7,
|
|
17422
19248
|
}
|
|
17423
19249
|
|
|
19250
|
+
enum baseAuthenticationMethod {
|
|
19251
|
+
password: 1,
|
|
19252
|
+
voice: 2,
|
|
19253
|
+
hardwareOath: 3,
|
|
19254
|
+
softwareOath: 4,
|
|
19255
|
+
sms: 5,
|
|
19256
|
+
fido2: 6,
|
|
19257
|
+
windowsHelloForBusiness: 7,
|
|
19258
|
+
microsoftAuthenticator: 8,
|
|
19259
|
+
temporaryAccessPass: 9,
|
|
19260
|
+
email: 10,
|
|
19261
|
+
x509Certificate: 11,
|
|
19262
|
+
federation: 12,
|
|
19263
|
+
unknownFutureValue: 13,
|
|
19264
|
+
qrCodePin: 14,
|
|
19265
|
+
}
|
|
19266
|
+
|
|
17424
19267
|
/**
|
|
17425
19268
|
* BitLockerEncryptionMethod types
|
|
17426
19269
|
*/
|
|
@@ -17627,6 +19470,13 @@ namespace reference.`microsoft.graph` {
|
|
|
17627
19470
|
members: 16,
|
|
17628
19471
|
}
|
|
17629
19472
|
|
|
19473
|
+
enum cloudAppSecuritySessionControlType {
|
|
19474
|
+
mcasConfigured: 0,
|
|
19475
|
+
monitorOnly: 1,
|
|
19476
|
+
blockDownloads: 2,
|
|
19477
|
+
unknownFutureValue: 3,
|
|
19478
|
+
}
|
|
19479
|
+
|
|
17630
19480
|
enum columnTypes {
|
|
17631
19481
|
note: 0,
|
|
17632
19482
|
text: 1,
|
|
@@ -17696,6 +19546,64 @@ namespace reference.`microsoft.graph` {
|
|
|
17696
19546
|
notAssigned: 7,
|
|
17697
19547
|
}
|
|
17698
19548
|
|
|
19549
|
+
enum conditionalAccessClientApp {
|
|
19550
|
+
all: 0,
|
|
19551
|
+
browser: 1,
|
|
19552
|
+
mobileAppsAndDesktopClients: 2,
|
|
19553
|
+
exchangeActiveSync: 3,
|
|
19554
|
+
easSupported: 4,
|
|
19555
|
+
other: 5,
|
|
19556
|
+
unknownFutureValue: 6,
|
|
19557
|
+
}
|
|
19558
|
+
|
|
19559
|
+
enum conditionalAccessDevicePlatform {
|
|
19560
|
+
android: 0,
|
|
19561
|
+
iOS: 1,
|
|
19562
|
+
windows: 2,
|
|
19563
|
+
windowsPhone: 3,
|
|
19564
|
+
macOS: 4,
|
|
19565
|
+
all: 5,
|
|
19566
|
+
unknownFutureValue: 6,
|
|
19567
|
+
linux: 7,
|
|
19568
|
+
}
|
|
19569
|
+
|
|
19570
|
+
enum conditionalAccessExternalTenantsMembershipKind {
|
|
19571
|
+
all: 0,
|
|
19572
|
+
enumerated: 1,
|
|
19573
|
+
unknownFutureValue: 2,
|
|
19574
|
+
}
|
|
19575
|
+
|
|
19576
|
+
enum conditionalAccessGrantControl {
|
|
19577
|
+
block: 0,
|
|
19578
|
+
mfa: 1,
|
|
19579
|
+
compliantDevice: 2,
|
|
19580
|
+
domainJoinedDevice: 3,
|
|
19581
|
+
approvedApplication: 4,
|
|
19582
|
+
compliantApplication: 5,
|
|
19583
|
+
passwordChange: 6,
|
|
19584
|
+
unknownFutureValue: 7,
|
|
19585
|
+
riskRemediation: 8,
|
|
19586
|
+
}
|
|
19587
|
+
|
|
19588
|
+
@graphFlags
|
|
19589
|
+
enum conditionalAccessGuestOrExternalUserTypes {
|
|
19590
|
+
none: 0,
|
|
19591
|
+
internalGuest: 1,
|
|
19592
|
+
b2bCollaborationGuest: 2,
|
|
19593
|
+
b2bCollaborationMember: 4,
|
|
19594
|
+
b2bDirectConnectUser: 8,
|
|
19595
|
+
otherExternalUser: 16,
|
|
19596
|
+
serviceProvider: 32,
|
|
19597
|
+
unknownFutureValue: 64,
|
|
19598
|
+
}
|
|
19599
|
+
|
|
19600
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
19601
|
+
enum conditionalAccessPolicyState {
|
|
19602
|
+
enabled: 0,
|
|
19603
|
+
disabled: 1,
|
|
19604
|
+
enabledForReportingButNotEnforced: 2,
|
|
19605
|
+
}
|
|
19606
|
+
|
|
17699
19607
|
enum conditionalAccessStatus {
|
|
17700
19608
|
success: 0,
|
|
17701
19609
|
failure: 1,
|
|
@@ -17703,6 +19611,31 @@ namespace reference.`microsoft.graph` {
|
|
|
17703
19611
|
unknownFutureValue: 3,
|
|
17704
19612
|
}
|
|
17705
19613
|
|
|
19614
|
+
@graphFlags
|
|
19615
|
+
enum conditionalAccessTransferMethods {
|
|
19616
|
+
none: 0,
|
|
19617
|
+
deviceCodeFlow: 1,
|
|
19618
|
+
authenticationTransfer: 2,
|
|
19619
|
+
unknownFutureValue: 4,
|
|
19620
|
+
}
|
|
19621
|
+
|
|
19622
|
+
enum connectedOrganizationState {
|
|
19623
|
+
configured: 0,
|
|
19624
|
+
proposed: 1,
|
|
19625
|
+
unknownFutureValue: 2,
|
|
19626
|
+
}
|
|
19627
|
+
|
|
19628
|
+
enum consentRequestFilterByCurrentUserOptions {
|
|
19629
|
+
reviewer: 0,
|
|
19630
|
+
unknownFutureValue: 1,
|
|
19631
|
+
}
|
|
19632
|
+
|
|
19633
|
+
enum countryLookupMethodType {
|
|
19634
|
+
clientIpAddress: 0,
|
|
19635
|
+
authenticatorAppGps: 1,
|
|
19636
|
+
unknownFutureValue: 2,
|
|
19637
|
+
}
|
|
19638
|
+
|
|
17706
19639
|
enum crossTenantAccessPolicyTargetConfigurationAccessType {
|
|
17707
19640
|
allowed: 1,
|
|
17708
19641
|
blocked: 2,
|
|
@@ -17716,6 +19649,20 @@ namespace reference.`microsoft.graph` {
|
|
|
17716
19649
|
unknownFutureValue: 4,
|
|
17717
19650
|
}
|
|
17718
19651
|
|
|
19652
|
+
enum customExtensionCalloutInstanceStatus {
|
|
19653
|
+
calloutSent: 1,
|
|
19654
|
+
callbackReceived: 2,
|
|
19655
|
+
calloutFailed: 3,
|
|
19656
|
+
callbackTimedOut: 4,
|
|
19657
|
+
waitingForCallback: 5,
|
|
19658
|
+
unknownFutureValue: 6,
|
|
19659
|
+
}
|
|
19660
|
+
|
|
19661
|
+
enum customSecurityAttributeComparisonOperator {
|
|
19662
|
+
equals: 1,
|
|
19663
|
+
unknownFutureValue: 2,
|
|
19664
|
+
}
|
|
19665
|
+
|
|
17719
19666
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
17720
19667
|
enum dayOfWeek {
|
|
17721
19668
|
sunday: 0,
|
|
@@ -18652,6 +20599,14 @@ namespace reference.`microsoft.graph` {
|
|
|
18652
20599
|
Update: 3,
|
|
18653
20600
|
}
|
|
18654
20601
|
|
|
20602
|
+
enum errorCorrectionLevel {
|
|
20603
|
+
l: 1,
|
|
20604
|
+
m: 2,
|
|
20605
|
+
q: 3,
|
|
20606
|
+
h: 4,
|
|
20607
|
+
unknownFutureValue: 5,
|
|
20608
|
+
}
|
|
20609
|
+
|
|
18655
20610
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
18656
20611
|
enum escrowBehavior {
|
|
18657
20612
|
Default: 1,
|
|
@@ -18690,6 +20645,20 @@ namespace reference.`microsoft.graph` {
|
|
|
18690
20645
|
all: 2,
|
|
18691
20646
|
}
|
|
18692
20647
|
|
|
20648
|
+
enum externalEmailOtpState {
|
|
20649
|
+
default: 0,
|
|
20650
|
+
enabled: 1,
|
|
20651
|
+
disabled: 2,
|
|
20652
|
+
unknownFutureValue: 3,
|
|
20653
|
+
}
|
|
20654
|
+
|
|
20655
|
+
enum featureTargetType {
|
|
20656
|
+
group: 0,
|
|
20657
|
+
administrativeUnit: 1,
|
|
20658
|
+
role: 2,
|
|
20659
|
+
unknownFutureValue: 3,
|
|
20660
|
+
}
|
|
20661
|
+
|
|
18693
20662
|
enum federatedIdpMfaBehavior {
|
|
18694
20663
|
acceptIfMfaDoneByFederatedIdp: 0,
|
|
18695
20664
|
enforceMfaByFederatedIdp: 1,
|
|
@@ -18697,6 +20666,12 @@ namespace reference.`microsoft.graph` {
|
|
|
18697
20666
|
unknownFutureValue: 3,
|
|
18698
20667
|
}
|
|
18699
20668
|
|
|
20669
|
+
enum fido2RestrictionEnforcementType {
|
|
20670
|
+
allow: 0,
|
|
20671
|
+
block: 1,
|
|
20672
|
+
unknownFutureValue: 2,
|
|
20673
|
+
}
|
|
20674
|
+
|
|
18700
20675
|
enum fileStorageContainerBillingClassification {
|
|
18701
20676
|
standard: 0,
|
|
18702
20677
|
trial: 1,
|
|
@@ -18746,6 +20721,12 @@ namespace reference.`microsoft.graph` {
|
|
|
18746
20721
|
unknownFutureValue: 6,
|
|
18747
20722
|
}
|
|
18748
20723
|
|
|
20724
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
20725
|
+
enum filterMode {
|
|
20726
|
+
include: 0,
|
|
20727
|
+
exclude: 1,
|
|
20728
|
+
}
|
|
20729
|
+
|
|
18749
20730
|
/**
|
|
18750
20731
|
* Possible values for firewallCertificateRevocationListCheckMethod
|
|
18751
20732
|
*/
|
|
@@ -19552,6 +21533,13 @@ namespace reference.`microsoft.graph` {
|
|
|
19552
21533
|
review: 10,
|
|
19553
21534
|
}
|
|
19554
21535
|
|
|
21536
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
21537
|
+
enum microsoftAuthenticatorAuthenticationMode {
|
|
21538
|
+
deviceBasedPush: 0,
|
|
21539
|
+
push: 1,
|
|
21540
|
+
any: 2,
|
|
21541
|
+
}
|
|
21542
|
+
|
|
19555
21543
|
/**
|
|
19556
21544
|
* The enum to specify the channels for Microsoft Edge apps.
|
|
19557
21545
|
*/
|
|
@@ -19930,6 +21918,19 @@ namespace reference.`microsoft.graph` {
|
|
|
19930
21918
|
unknownFutureValue: 7,
|
|
19931
21919
|
}
|
|
19932
21920
|
|
|
21921
|
+
enum passkeyType {
|
|
21922
|
+
deviceBound: 0,
|
|
21923
|
+
synced: 1,
|
|
21924
|
+
unknownFutureValue: 2,
|
|
21925
|
+
}
|
|
21926
|
+
|
|
21927
|
+
@graphFlags
|
|
21928
|
+
enum passkeyTypes {
|
|
21929
|
+
deviceBound: 1,
|
|
21930
|
+
synced: 2,
|
|
21931
|
+
unknownFutureValue: 4,
|
|
21932
|
+
}
|
|
21933
|
+
|
|
19933
21934
|
enum permissionClassificationType {
|
|
19934
21935
|
low: 1,
|
|
19935
21936
|
medium: 2,
|
|
@@ -19944,6 +21945,12 @@ namespace reference.`microsoft.graph` {
|
|
|
19944
21945
|
application: 3,
|
|
19945
21946
|
}
|
|
19946
21947
|
|
|
21948
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
21949
|
+
enum persistentBrowserSessionMode {
|
|
21950
|
+
always: 0,
|
|
21951
|
+
`never`: 1,
|
|
21952
|
+
}
|
|
21953
|
+
|
|
19947
21954
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
19948
21955
|
enum phoneType {
|
|
19949
21956
|
home: 0,
|
|
@@ -19958,6 +21965,21 @@ namespace reference.`microsoft.graph` {
|
|
|
19958
21965
|
radio: 9,
|
|
19959
21966
|
}
|
|
19960
21967
|
|
|
21968
|
+
enum plannerContainerType {
|
|
21969
|
+
group: 1,
|
|
21970
|
+
unknownFutureValue: 2,
|
|
21971
|
+
roster: 3,
|
|
21972
|
+
}
|
|
21973
|
+
|
|
21974
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
21975
|
+
enum plannerPreviewType {
|
|
21976
|
+
automatic: 0,
|
|
21977
|
+
noPreview: 1,
|
|
21978
|
+
checklist: 2,
|
|
21979
|
+
description: 3,
|
|
21980
|
+
reference: 4,
|
|
21981
|
+
}
|
|
21982
|
+
|
|
19961
21983
|
/**
|
|
19962
21984
|
* Supported platform types for policies.
|
|
19963
21985
|
*/
|
|
@@ -20974,6 +22996,14 @@ namespace reference.`microsoft.graph` {
|
|
|
20974
22996
|
unknownFutureValue: 10,
|
|
20975
22997
|
}
|
|
20976
22998
|
|
|
22999
|
+
enum scopeCollectionKind {
|
|
23000
|
+
allAllowed: 0,
|
|
23001
|
+
enumerated: 1,
|
|
23002
|
+
none: 2,
|
|
23003
|
+
scopeKindNotSet: 3,
|
|
23004
|
+
unknownFutureValue: 4,
|
|
23005
|
+
}
|
|
23006
|
+
|
|
20977
23007
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
20978
23008
|
enum scopeOperatorMultiValuedComparisonType {
|
|
20979
23009
|
All: 0,
|
|
@@ -21140,6 +23170,24 @@ namespace reference.`microsoft.graph` {
|
|
|
21140
23170
|
unknownFutureValue: 3,
|
|
21141
23171
|
}
|
|
21142
23172
|
|
|
23173
|
+
enum signInFrequencyAuthenticationType {
|
|
23174
|
+
primaryAndSecondaryAuthentication: 0,
|
|
23175
|
+
secondaryAuthentication: 1,
|
|
23176
|
+
unknownFutureValue: 2,
|
|
23177
|
+
}
|
|
23178
|
+
|
|
23179
|
+
enum signInFrequencyInterval {
|
|
23180
|
+
timeBased: 0,
|
|
23181
|
+
everyTime: 1,
|
|
23182
|
+
unknownFutureValue: 2,
|
|
23183
|
+
}
|
|
23184
|
+
|
|
23185
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
23186
|
+
enum signinFrequencyType {
|
|
23187
|
+
days: 0,
|
|
23188
|
+
hours: 1,
|
|
23189
|
+
}
|
|
23190
|
+
|
|
21143
23191
|
enum signInUserType {
|
|
21144
23192
|
member: 0,
|
|
21145
23193
|
guest: 1,
|
|
@@ -21192,6 +23240,21 @@ namespace reference.`microsoft.graph` {
|
|
|
21192
23240
|
high: 5,
|
|
21193
23241
|
}
|
|
21194
23242
|
|
|
23243
|
+
enum socialIdentitySourceType {
|
|
23244
|
+
facebook: 1,
|
|
23245
|
+
unknownFutureValue: 2,
|
|
23246
|
+
}
|
|
23247
|
+
|
|
23248
|
+
enum stagedFeatureName {
|
|
23249
|
+
passthroughAuthentication: 0,
|
|
23250
|
+
seamlessSso: 1,
|
|
23251
|
+
passwordHashSync: 2,
|
|
23252
|
+
emailAsAlternateId: 3,
|
|
23253
|
+
unknownFutureValue: 4,
|
|
23254
|
+
certificateBasedAuthentication: 5,
|
|
23255
|
+
multiFactorAuthentication: 6,
|
|
23256
|
+
}
|
|
23257
|
+
|
|
21195
23258
|
/**
|
|
21196
23259
|
* State Management Setting.
|
|
21197
23260
|
*/
|
|
@@ -21444,6 +23507,17 @@ namespace reference.`microsoft.graph` {
|
|
|
21444
23507
|
emailUser: 8,
|
|
21445
23508
|
}
|
|
21446
23509
|
|
|
23510
|
+
@graphFlags
|
|
23511
|
+
enum templateScenarios {
|
|
23512
|
+
new: 0,
|
|
23513
|
+
secureFoundation: 1,
|
|
23514
|
+
zeroTrust: 2,
|
|
23515
|
+
remoteWork: 4,
|
|
23516
|
+
protectAdmins: 8,
|
|
23517
|
+
emergingThreats: 16,
|
|
23518
|
+
unknownFutureValue: 32,
|
|
23519
|
+
}
|
|
23520
|
+
|
|
21447
23521
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
21448
23522
|
enum timeZoneStandard {
|
|
21449
23523
|
windows: 0,
|
|
@@ -21498,6 +23572,12 @@ namespace reference.`microsoft.graph` {
|
|
|
21498
23572
|
unknownFutureValue: 10,
|
|
21499
23573
|
}
|
|
21500
23574
|
|
|
23575
|
+
enum userAction {
|
|
23576
|
+
registerSecurityInformation: 0,
|
|
23577
|
+
registerOrJoinDevices: 1,
|
|
23578
|
+
unknownFutureValue: 2,
|
|
23579
|
+
}
|
|
23580
|
+
|
|
21501
23581
|
enum userDefaultAuthenticationMethod {
|
|
21502
23582
|
push: 0,
|
|
21503
23583
|
oath: 1,
|
|
@@ -21626,6 +23706,12 @@ namespace reference.`microsoft.graph` {
|
|
|
21626
23706
|
unknownFutureValue: 7,
|
|
21627
23707
|
}
|
|
21628
23708
|
|
|
23709
|
+
enum userSignInRecommendationScope {
|
|
23710
|
+
tenant: 0,
|
|
23711
|
+
application: 1,
|
|
23712
|
+
unknownFutureValue: 2,
|
|
23713
|
+
}
|
|
23714
|
+
|
|
21629
23715
|
/**
|
|
21630
23716
|
* Generic visibility state.
|
|
21631
23717
|
*/
|
|
@@ -21830,6 +23916,31 @@ namespace reference.`microsoft.graph` {
|
|
|
21830
23916
|
showOrganizerAndTimeAndSubject: 2,
|
|
21831
23917
|
}
|
|
21832
23918
|
|
|
23919
|
+
@graphFlags
|
|
23920
|
+
enum whatIfAnalysisReasons {
|
|
23921
|
+
notSet: 0,
|
|
23922
|
+
notEnoughInformation: 1,
|
|
23923
|
+
invalidCondition: 2,
|
|
23924
|
+
users: 4,
|
|
23925
|
+
workloadIdentities: 8,
|
|
23926
|
+
application: 16,
|
|
23927
|
+
userActions: 32,
|
|
23928
|
+
authenticationContext: 64,
|
|
23929
|
+
devicePlatform: 128,
|
|
23930
|
+
devices: 256,
|
|
23931
|
+
clientApps: 512,
|
|
23932
|
+
location: 1024,
|
|
23933
|
+
signInRisk: 2048,
|
|
23934
|
+
emptyPolicy: 4096,
|
|
23935
|
+
invalidPolicy: 8192,
|
|
23936
|
+
policyNotEnabled: 16384,
|
|
23937
|
+
userRisk: 32768,
|
|
23938
|
+
time: 65536,
|
|
23939
|
+
insiderRisk: 131072,
|
|
23940
|
+
authenticationFlow: 262144,
|
|
23941
|
+
unknownFutureValue: 524288,
|
|
23942
|
+
}
|
|
23943
|
+
|
|
21833
23944
|
/**
|
|
21834
23945
|
* Contains value for delivery optimization priority.
|
|
21835
23946
|
*/
|
|
@@ -23028,6 +25139,47 @@ namespace reference.`microsoft.graph` {
|
|
|
23028
25139
|
unknownFutureValue: 2,
|
|
23029
25140
|
}
|
|
23030
25141
|
|
|
25142
|
+
enum workLocationSource {
|
|
25143
|
+
none: 0,
|
|
25144
|
+
manual: 1,
|
|
25145
|
+
scheduled: 2,
|
|
25146
|
+
automatic: 3,
|
|
25147
|
+
unknownFutureValue: 4,
|
|
25148
|
+
}
|
|
25149
|
+
|
|
25150
|
+
enum workLocationType {
|
|
25151
|
+
unspecified: 0,
|
|
25152
|
+
office: 1,
|
|
25153
|
+
remote: 2,
|
|
25154
|
+
timeOff: 3,
|
|
25155
|
+
unknownFutureValue: 4,
|
|
25156
|
+
}
|
|
25157
|
+
|
|
25158
|
+
enum x509CertificateAffinityLevel {
|
|
25159
|
+
low: 0,
|
|
25160
|
+
high: 1,
|
|
25161
|
+
unknownFutureValue: 2,
|
|
25162
|
+
}
|
|
25163
|
+
|
|
25164
|
+
enum x509CertificateAuthenticationMode {
|
|
25165
|
+
x509CertificateSingleFactor: 0,
|
|
25166
|
+
x509CertificateMultiFactor: 1,
|
|
25167
|
+
unknownFutureValue: 2,
|
|
25168
|
+
}
|
|
25169
|
+
|
|
25170
|
+
enum x509CertificateIssuerHintsState {
|
|
25171
|
+
disabled: 0,
|
|
25172
|
+
enabled: 1,
|
|
25173
|
+
unknownFutureValue: 2,
|
|
25174
|
+
}
|
|
25175
|
+
|
|
25176
|
+
enum x509CertificateRuleType {
|
|
25177
|
+
issuerSubject: 0,
|
|
25178
|
+
policyOID: 1,
|
|
25179
|
+
unknownFutureValue: 2,
|
|
25180
|
+
issuerSubjectAndPolicyOID: 3,
|
|
25181
|
+
}
|
|
25182
|
+
|
|
23031
25183
|
}
|
|
23032
25184
|
@publicNamespace("microsoft.graph.security")
|
|
23033
25185
|
namespace reference.`microsoft.graph.security` {
|