@microsoft/typespec-msgraph-reference 1.0.3 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.rush/temp/package-deps_build.json +18 -18
- package/CHANGELOG.md +18 -0
- package/lib/Bleu/Beta/main.tsp +2411 -55
- package/lib/Bleu/V1.0/main.tsp +2245 -40
- package/lib/Delos/Beta/main.tsp +2674 -52
- package/lib/Delos/V1.0/main.tsp +401 -20
- package/lib/Fairfax/Beta/main.tsp +1261 -74
- package/lib/Fairfax/V1.0/main.tsp +307 -20
- package/lib/GovSG/Beta/main.tsp +113 -13
- package/lib/GovSG/V1.0/main.tsp +196 -0
- package/lib/Mooncake/Beta/main.tsp +858 -54
- package/lib/Mooncake/V1.0/main.tsp +173 -20
- package/lib/Prod/Beta/main.tsp +4453 -269
- package/lib/Prod/V1.0/main.tsp +1457 -26
- package/lib/USNat/Beta/main.tsp +609 -37
- package/lib/USNat/V1.0/main.tsp +609 -3
- package/lib/USSec/Beta/main.tsp +1012 -69
- package/lib/USSec/V1.0/main.tsp +912 -3
- package/package.json +2 -2
package/lib/Bleu/Beta/main.tsp
CHANGED
|
@@ -7,13 +7,20 @@ using MsGraph;
|
|
|
7
7
|
scalar binary; //TODO: Enables support for Edm.Binary
|
|
8
8
|
|
|
9
9
|
|
|
10
|
+
@privatePreviewDefinition("MicrosofEntitlementManagementCustomextensions", "2023-03-01", "2023-12-31", "<theOwner>")
|
|
10
11
|
@deprecatedDefinition("Tasks_And_Plans", "<ChangeLogCategory>", "2021-01-18", "2023-01-18", "Owner property is deprecated and will be removed in January 2023. Please use the container property instead.")
|
|
11
12
|
// Metadata item DeprecatedDefinition_Tasks_And_Plans was already defined with a different value.
|
|
13
|
+
@deprecatedDefinition("PasskeyGlobalProperties", "<ChangeLogCategory>", "2025-10-15", "2027-10-15", "This property is deprecated and will stop returning data on October 15, 2027. Please use passkeyProfiles property.")
|
|
12
14
|
@privatePreviewDefinition("photoEditPolicy", "2024-02-16", "2025-02-16", "<theOwner>")
|
|
13
15
|
@deprecatedDefinition("Reporting", "<ChangeLogCategory>", "2021-04-11", "2021-12-31", "The action property is deprecated. The provisioningAction holds the same information as this. This only exists in the beta api.")
|
|
14
16
|
// Metadata item DeprecatedDefinition_Reporting was already defined with a different value.
|
|
15
17
|
@deprecatedDefinition("SynchronizationSecret_Deprecation", "<ChangeLogCategory>", "2026-02-06", "2027-07-06", "Use connectivityParameters for oauth flows and scim endpoint connectivity. Use SynchronizationJobSettings for job-specific settings This property will be removed.")
|
|
16
18
|
// Metadata item DeprecatedDefinition_SynchronizationSecret_Deprecation was already defined with a different value.
|
|
19
|
+
@deprecatedDefinition("AccessReviewReportBreakingChanges", "<ChangeLogCategory>", "2021-07-30", "2022-01-30", "This property is being deprecated. Use the fulfilledDateTime value in the individual report instance instead")
|
|
20
|
+
// Metadata item DeprecatedDefinition_AccessReviewReportBreakingChanges was already defined with a different value.
|
|
21
|
+
@privatePreviewDefinition("ControlConfigurations", "2024-09-27", "2025-09-27", "<theOwner>")
|
|
22
|
+
// Metadata item PrivatePreviewDefinition_ControlConfigurations was already defined with a different value.
|
|
23
|
+
@deprecatedDefinition("DirectoryFeatureRolloutPolicies", "<ChangeLogCategory>", "2021-03-05", "2021-06-30", "Feature Rollout Policies have been grouped with other policies under /policies. The existing /directory/featureRolloutPolicies is deprecated and will stop returning data on 06/30/2021. Please use /policies/featureRolloutPolicies.")
|
|
17
24
|
@deprecatedDefinition("Removal", "<ChangeLogCategory>", "2023-12-05", "2025-12-05", "The users enum value is deprecated. Use specificPeople instead.")
|
|
18
25
|
// Metadata item DeprecatedDefinition_Removal was already defined with a different value.
|
|
19
26
|
@deprecatedDefinition("Beta:ItemInsightsOranizationSettings", "<ChangeLogCategory>", "2023-10-17", "2024-01-01", "The Organization ItemInsights endpoint will stop returning data on January 1st, 2024. Please use the new Admin People ItemInsights endpoint.")
|
|
@@ -35,6 +42,302 @@ namespace reference.`microsoft.graph` {
|
|
|
35
42
|
@complex model accessAction {
|
|
36
43
|
}
|
|
37
44
|
|
|
45
|
+
@abstract
|
|
46
|
+
@complex model accessPackageAnswer {
|
|
47
|
+
answeredQuestion: accessPackageQuestion | null;
|
|
48
|
+
displayValue: string | null;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
@complex model accessPackageAnswerChoice {
|
|
52
|
+
actualValue: string | null;
|
|
53
|
+
displayValue: accessPackageLocalizedContent | null;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
@complex model accessPackageAnswerString extends accessPackageAnswer {
|
|
57
|
+
value: string | null;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
@complex model accessPackageApprovalStage {
|
|
61
|
+
approverInformationVisibility: approverInformationVisibility;
|
|
62
|
+
durationBeforeAutomaticDenial: duration | null;
|
|
63
|
+
durationBeforeEscalation: duration | null;
|
|
64
|
+
escalationApprovers: subjectSet[] | null;
|
|
65
|
+
fallbackEscalationApprovers: subjectSet[] | null;
|
|
66
|
+
fallbackPrimaryApprovers: subjectSet[] | null;
|
|
67
|
+
isApproverJustificationRequired: boolean | null;
|
|
68
|
+
isEscalationEnabled: boolean | null;
|
|
69
|
+
primaryApprovers: subjectSet[] | null;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
@complex model accessPackageAssignmentRequestCallbackData extends customExtensionData {
|
|
73
|
+
customExtensionStageInstanceDetail: string | null;
|
|
74
|
+
customExtensionStageInstanceId: string | null;
|
|
75
|
+
stage: accessPackageCustomExtensionStage | null;
|
|
76
|
+
state: string | null;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
@complex model accessPackageAssignmentRequestRequirements {
|
|
80
|
+
existingAnswers: accessPackageAnswer[] | null;
|
|
81
|
+
isApprovalRequired: boolean | null;
|
|
82
|
+
isApprovalRequiredForExtension: boolean | null;
|
|
83
|
+
isCustomAssignmentScheduleAllowed: boolean | null;
|
|
84
|
+
isRequestorJustificationRequired: boolean | null;
|
|
85
|
+
policyDescription: string | null;
|
|
86
|
+
policyDisplayName: string | null;
|
|
87
|
+
policyId: string | null;
|
|
88
|
+
questions: accessPackageQuestion[] | null;
|
|
89
|
+
schedule: requestSchedule | null;
|
|
90
|
+
verifiableCredentialRequirementStatus: verifiableCredentialRequirementStatus | null;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
@complex model accessPackageDynamicApprovalStage extends approvalStage {
|
|
94
|
+
@references customExtension: customCalloutExtension | null;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
@complex model accessPackageLocalizedContent {
|
|
98
|
+
defaultText: string | null;
|
|
99
|
+
localizedTexts: accessPackageLocalizedText[] | null;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
@complex model accessPackageLocalizedText {
|
|
103
|
+
languageCode: string | null;
|
|
104
|
+
text: string | null;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
@complex model accessPackageMultipleChoiceQuestion extends accessPackageQuestion {
|
|
108
|
+
allowsMultipleSelection: boolean | null;
|
|
109
|
+
choices: accessPackageAnswerChoice[] | null;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
@complex model accessPackageNotificationSettings {
|
|
113
|
+
isAssignmentNotificationDisabled: boolean;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
@abstract
|
|
117
|
+
@complex model accessPackageQuestion {
|
|
118
|
+
id: string | null;
|
|
119
|
+
isAnswerEditable: boolean | null;
|
|
120
|
+
isRequired: boolean | null;
|
|
121
|
+
sequence: int32 | null;
|
|
122
|
+
text: accessPackageLocalizedContent | null;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
@complex model accessPackageRequestApprovalStageCallbackConfiguration extends customExtensionCallbackConfiguration {
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
@complex model accessPackageResourceAttribute {
|
|
129
|
+
attributeDestination: accessPackageResourceAttributeDestination | null;
|
|
130
|
+
attributeName: string | null;
|
|
131
|
+
attributeSource: accessPackageResourceAttributeSource | null;
|
|
132
|
+
id: string | null;
|
|
133
|
+
isEditable: boolean | null;
|
|
134
|
+
isPersistedOnAssignmentRemoval: boolean | null;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
@abstract
|
|
138
|
+
@complex model accessPackageResourceAttributeDestination {
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
@complex model accessPackageResourceAttributeQuestion extends accessPackageResourceAttributeSource {
|
|
142
|
+
question: accessPackageQuestion | null;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
@abstract
|
|
146
|
+
@complex model accessPackageResourceAttributeSource {
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
@abstract
|
|
150
|
+
@complex model accessPackageSuggestionReason {
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
@complex model accessPackageSuggestionRelatedPeopleBased extends accessPackageSuggestionReason {
|
|
154
|
+
relatedPeople: identity[];
|
|
155
|
+
relatedPeopleAssignmentCount: int32;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
@complex model accessPackageSuggestionSelfAssignmentHistoryBased extends accessPackageSuggestionReason {
|
|
159
|
+
@computed lastAssignmentDateTime: offsetDateTime;
|
|
160
|
+
pastAssignmentCount: int32;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
@complex model accessPackageTextInputQuestion extends accessPackageQuestion {
|
|
164
|
+
isSingleLineQuestion: boolean | null;
|
|
165
|
+
regexPattern: string | null;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
@complex model accessPackageUserDirectoryAttributeStore extends accessPackageResourceAttributeDestination {
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
@complex model accessReviewAccessPackageAssignmentPolicyScope extends accessReviewResourceScope {
|
|
172
|
+
accessPackageDisplayName: string | null;
|
|
173
|
+
accessPackageId: string | null;
|
|
174
|
+
catalogDisplayName: string | null;
|
|
175
|
+
catalogId: string | null;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
@abstract
|
|
179
|
+
@complex model accessReviewApplyAction {
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
@complex model accessReviewError extends genericError {
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
@complex model accessReviewHistoryScheduleSettings {
|
|
186
|
+
recurrence: patternedRecurrence;
|
|
187
|
+
reportRange: string;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
@complex model accessReviewInactiveUsersQueryScope extends accessReviewQueryScope {
|
|
191
|
+
inactiveDuration: duration | null;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
@open
|
|
195
|
+
@complex model accessReviewInstanceDecisionItemAccessPackageAssignmentPolicyResource extends accessReviewInstanceDecisionItemResource {
|
|
196
|
+
accessPackageDisplayName: string | null;
|
|
197
|
+
accessPackageId: string | null;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
@open
|
|
201
|
+
@complex model accessReviewInstanceDecisionItemAzureRoleResource extends accessReviewInstanceDecisionItemResource {
|
|
202
|
+
scope: accessReviewInstanceDecisionItemResource | null;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
@open
|
|
206
|
+
@complex model accessReviewInstanceDecisionItemCustomDataProvidedResource extends accessReviewInstanceDecisionItemResource {
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
@complex model accessReviewInstanceDecisionItemPermission {
|
|
210
|
+
description: string | null;
|
|
211
|
+
displayName: string | null;
|
|
212
|
+
id: string | null;
|
|
213
|
+
type: string | null;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
@open
|
|
217
|
+
@complex model accessReviewInstanceDecisionItemResource {
|
|
218
|
+
description: string | null;
|
|
219
|
+
displayName: string | null;
|
|
220
|
+
id: string | null;
|
|
221
|
+
type: string | null;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
@open
|
|
225
|
+
@complex model accessReviewInstanceDecisionItemServicePrincipalResource extends accessReviewInstanceDecisionItemResource {
|
|
226
|
+
appId: string | null;
|
|
227
|
+
appRoleDisplayName: string | null;
|
|
228
|
+
appRoleId: string | null;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
@complex model accessReviewInstanceDecisionItemServicePrincipalTarget extends accessReviewInstanceDecisionItemTarget {
|
|
232
|
+
appId: string | null;
|
|
233
|
+
servicePrincipalDisplayName: string | null;
|
|
234
|
+
servicePrincipalId: string | null;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
@abstract
|
|
238
|
+
@complex model accessReviewInstanceDecisionItemTarget {
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
@complex model accessReviewInstanceDecisionItemUserTarget extends accessReviewInstanceDecisionItemTarget {
|
|
242
|
+
userDisplayName: string | null;
|
|
243
|
+
userId: string | null;
|
|
244
|
+
userPrincipalName: string | null;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
@complex model accessReviewNotificationRecipientItem {
|
|
248
|
+
notificationRecipientScope: accessReviewNotificationRecipientScope | null;
|
|
249
|
+
notificationTemplateType: string | null;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
@complex model accessReviewNotificationRecipientQueryScope extends accessReviewNotificationRecipientScope {
|
|
253
|
+
query: string | null;
|
|
254
|
+
queryRoot: string | null;
|
|
255
|
+
queryType: string | null;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
@abstract
|
|
259
|
+
@complex model accessReviewNotificationRecipientScope {
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
@complex model accessReviewPrincipalScope extends accessReviewScope {
|
|
263
|
+
scopeType: accessReviewPrincipalScopeType;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
@complex model accessReviewQueryScope extends accessReviewScope {
|
|
267
|
+
query: string | null;
|
|
268
|
+
queryRoot: string | null;
|
|
269
|
+
queryType: string | null;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
@abstract
|
|
273
|
+
@complex model accessReviewRecommendationInsightSetting {
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
@complex model accessReviewRecurrenceSettings {
|
|
277
|
+
durationInDays: int32;
|
|
278
|
+
recurrenceCount: int32;
|
|
279
|
+
recurrenceEndType: string | null;
|
|
280
|
+
recurrenceType: string | null;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
@complex model accessReviewResourceScope extends accessReviewScope {
|
|
284
|
+
displayName: string | null;
|
|
285
|
+
resourceId: string | null;
|
|
286
|
+
scopeType: accessReviewResourceScopeType;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
@complex model accessReviewReviewerScope extends accessReviewScope {
|
|
290
|
+
query: string | null;
|
|
291
|
+
queryRoot: string | null;
|
|
292
|
+
queryType: string | null;
|
|
293
|
+
reviewerId: string | null;
|
|
294
|
+
scopeType: accessReviewReviewerScopeType;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
@complex model accessReviewScheduleSettings {
|
|
298
|
+
applyActions: accessReviewApplyAction[] | null;
|
|
299
|
+
autoApplyDecisionsEnabled: boolean;
|
|
300
|
+
decisionHistoriesForReviewersEnabled: boolean | null;
|
|
301
|
+
defaultDecision: string | null;
|
|
302
|
+
defaultDecisionEnabled: boolean;
|
|
303
|
+
instanceDurationInDays: int32;
|
|
304
|
+
isAgenticExperienceEnabled: boolean | null;
|
|
305
|
+
justificationRequiredOnApproval: boolean;
|
|
306
|
+
mailNotificationsEnabled: boolean;
|
|
307
|
+
recommendationInsightSettings: accessReviewRecommendationInsightSetting[] | null;
|
|
308
|
+
recommendationLookBackDuration: duration | null;
|
|
309
|
+
recommendationsEnabled: boolean;
|
|
310
|
+
recurrence: patternedRecurrence | null;
|
|
311
|
+
reminderNotificationsEnabled: boolean;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
@complex model accessReviewScope {
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
@complex model accessReviewSettings {
|
|
318
|
+
accessRecommendationsEnabled: boolean;
|
|
319
|
+
activityDurationInDays: int32;
|
|
320
|
+
autoApplyReviewResultsEnabled: boolean;
|
|
321
|
+
autoReviewEnabled: boolean;
|
|
322
|
+
autoReviewSettings: autoReviewSettings | null;
|
|
323
|
+
justificationRequiredOnApproval: boolean;
|
|
324
|
+
mailNotificationsEnabled: boolean;
|
|
325
|
+
recurrenceSettings: accessReviewRecurrenceSettings | null;
|
|
326
|
+
remindersEnabled: boolean;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
@complex model accessReviewStageSettings {
|
|
330
|
+
decisionsThatWillMoveToNextStage: string[] | null;
|
|
331
|
+
dependsOn: string[];
|
|
332
|
+
durationInDays: int32;
|
|
333
|
+
fallbackReviewers: accessReviewReviewerScope[] | null;
|
|
334
|
+
recommendationInsightSettings: accessReviewRecommendationInsightSetting[] | null;
|
|
335
|
+
recommendationLookBackDuration: duration | null;
|
|
336
|
+
recommendationsEnabled: boolean;
|
|
337
|
+
reviewers: accessReviewReviewerScope[] | null;
|
|
338
|
+
stageId: string;
|
|
339
|
+
}
|
|
340
|
+
|
|
38
341
|
@abstract
|
|
39
342
|
@complex model actionResultPart {
|
|
40
343
|
error: publicError | null;
|
|
@@ -409,6 +712,16 @@ namespace reference.`microsoft.graph` {
|
|
|
409
712
|
selections: keyValuePair[] | null;
|
|
410
713
|
}
|
|
411
714
|
|
|
715
|
+
/**
|
|
716
|
+
* The request parameter for requesting Android LOB app configuration schema.
|
|
717
|
+
*/
|
|
718
|
+
@complex model androidLobAppConfigurationSchemaRequestDetail extends appConfigurationSchemaRequestDetail {
|
|
719
|
+
/**
|
|
720
|
+
* The application policy ID of the Android LOB app
|
|
721
|
+
*/
|
|
722
|
+
appId: string | null;
|
|
723
|
+
}
|
|
724
|
+
|
|
412
725
|
/**
|
|
413
726
|
* Contains properties used to assign an Android Managed Store mobile app to a group.
|
|
414
727
|
*/
|
|
@@ -609,6 +922,120 @@ namespace reference.`microsoft.graph` {
|
|
|
609
922
|
resourceSpecificApplicationPermissions: resourceSpecificPermission[];
|
|
610
923
|
}
|
|
611
924
|
|
|
925
|
+
/**
|
|
926
|
+
* Boolean configuration item inside an Android application's custom configuration schema.
|
|
927
|
+
*/
|
|
928
|
+
@complex model appConfigurationSchemaItemBooleanType extends appConfigurationSchemaItemType {
|
|
929
|
+
/**
|
|
930
|
+
* Default value, if specified by the app developer
|
|
931
|
+
*/
|
|
932
|
+
defaultValue: boolean | null;
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
/**
|
|
936
|
+
* Bundle array configuration item inside an Android application's custom configuration schema.
|
|
937
|
+
*/
|
|
938
|
+
@complex model appConfigurationSchemaItemBundleArray extends appConfigurationSchemaItemType {
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
/**
|
|
942
|
+
* Bundle configuration item inside an Android application's custom configuration schema.
|
|
943
|
+
*/
|
|
944
|
+
@complex model appConfigurationSchemaItemBundleType extends appConfigurationSchemaItemType {
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
/**
|
|
948
|
+
* Choice configuration item inside an Android application's custom configuration schema.
|
|
949
|
+
*/
|
|
950
|
+
@complex model appConfigurationSchemaItemChoiceType extends appConfigurationSchemaItemType {
|
|
951
|
+
/**
|
|
952
|
+
* Default value, if specified by the app developer
|
|
953
|
+
*/
|
|
954
|
+
defaultValue: string | null;
|
|
955
|
+
/**
|
|
956
|
+
* List of human readable name/value pairs for the valid values that can be set for this item
|
|
957
|
+
*/
|
|
958
|
+
selections: keyValuePair[] | null;
|
|
959
|
+
}
|
|
960
|
+
|
|
961
|
+
/**
|
|
962
|
+
* Hidden configuration item inside an Android application's custom configuration schema.
|
|
963
|
+
*/
|
|
964
|
+
@complex model appConfigurationSchemaItemHiddenType extends appConfigurationSchemaItemType {
|
|
965
|
+
/**
|
|
966
|
+
* Default value, if specified by the app developer
|
|
967
|
+
*/
|
|
968
|
+
defaultValue: string | null;
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
/**
|
|
972
|
+
* Integer configuration item inside an Android application's custom configuration schema.
|
|
973
|
+
*/
|
|
974
|
+
@complex model appConfigurationSchemaItemIntegerType extends appConfigurationSchemaItemType {
|
|
975
|
+
/**
|
|
976
|
+
* Default value, if specified by the app developer. Valid values 0 to 2147483647
|
|
977
|
+
*/
|
|
978
|
+
defaultValue: int32 | null;
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
/**
|
|
982
|
+
* Multiselect configuration item inside an Android application's custom configuration schema.
|
|
983
|
+
*/
|
|
984
|
+
@complex model appConfigurationSchemaItemMultiselectType extends appConfigurationSchemaItemType {
|
|
985
|
+
/**
|
|
986
|
+
* Default value, if specified by the app developer
|
|
987
|
+
*/
|
|
988
|
+
defaultValue: string[] | null;
|
|
989
|
+
/**
|
|
990
|
+
* List of human readable name/value pairs for the valid values that can be set for this item
|
|
991
|
+
*/
|
|
992
|
+
selections: keyValuePair[] | null;
|
|
993
|
+
}
|
|
994
|
+
|
|
995
|
+
/**
|
|
996
|
+
* String configuration item inside an Android application's custom configuration schema.
|
|
997
|
+
*/
|
|
998
|
+
@complex model appConfigurationSchemaItemStringType extends appConfigurationSchemaItemType {
|
|
999
|
+
/**
|
|
1000
|
+
* Default value, if specified by the app developer
|
|
1001
|
+
*/
|
|
1002
|
+
defaultValue: string | null;
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
/**
|
|
1006
|
+
* Single configuration item inside an Android application's configuration schema.
|
|
1007
|
+
*/
|
|
1008
|
+
@abstract
|
|
1009
|
+
@complex model appConfigurationSchemaItemType {
|
|
1010
|
+
/**
|
|
1011
|
+
* Description of what the item controls within the application
|
|
1012
|
+
*/
|
|
1013
|
+
description: string | null;
|
|
1014
|
+
/**
|
|
1015
|
+
* Human readable name
|
|
1016
|
+
*/
|
|
1017
|
+
displayName: string | null;
|
|
1018
|
+
/**
|
|
1019
|
+
* Unique index the application uses to maintain nested schema items. Valid values 0 to 2147483647
|
|
1020
|
+
*/
|
|
1021
|
+
index: int32;
|
|
1022
|
+
/**
|
|
1023
|
+
* Index of parent schema item to track nested schema items. Valid values 0 to 2147483647
|
|
1024
|
+
*/
|
|
1025
|
+
parentIndex: int32 | null;
|
|
1026
|
+
/**
|
|
1027
|
+
* Unique key the application uses to identify the item
|
|
1028
|
+
*/
|
|
1029
|
+
schemaItemKey: string | null;
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
/**
|
|
1033
|
+
* Base type for the request parameters that identifies the requested app configuration schema.
|
|
1034
|
+
*/
|
|
1035
|
+
@abstract
|
|
1036
|
+
@complex model appConfigurationSchemaRequestDetail {
|
|
1037
|
+
}
|
|
1038
|
+
|
|
612
1039
|
/**
|
|
613
1040
|
* Contains properties for App configuration setting item.
|
|
614
1041
|
*/
|
|
@@ -627,6 +1054,10 @@ namespace reference.`microsoft.graph` {
|
|
|
627
1054
|
appConfigKeyValue: string;
|
|
628
1055
|
}
|
|
629
1056
|
|
|
1057
|
+
@complex model appConsentRequestScope {
|
|
1058
|
+
displayName: string | null;
|
|
1059
|
+
}
|
|
1060
|
+
|
|
630
1061
|
@complex model appIdentity {
|
|
631
1062
|
appId: string | null;
|
|
632
1063
|
displayName: string | null;
|
|
@@ -777,7 +1208,7 @@ namespace reference.`microsoft.graph` {
|
|
|
777
1208
|
}
|
|
778
1209
|
|
|
779
1210
|
@complex model appManagementPolicyActorExemptions {
|
|
780
|
-
|
|
1211
|
+
customSecurityAttributes: customSecurityAttributeExemption[] | null;
|
|
781
1212
|
}
|
|
782
1213
|
|
|
783
1214
|
@complex model appManagementServicePrincipalConfiguration extends appManagementConfiguration {
|
|
@@ -820,6 +1251,11 @@ namespace reference.`microsoft.graph` {
|
|
|
820
1251
|
primaryApprovers: userSet[] | null;
|
|
821
1252
|
}
|
|
822
1253
|
|
|
1254
|
+
@complex model approverDelegate {
|
|
1255
|
+
delegate: userSet | null;
|
|
1256
|
+
schedule: requestSchedule | null;
|
|
1257
|
+
}
|
|
1258
|
+
|
|
823
1259
|
@complex model assignedLabel {
|
|
824
1260
|
displayName: string | null;
|
|
825
1261
|
labelId: string | null;
|
|
@@ -995,6 +1431,23 @@ namespace reference.`microsoft.graph` {
|
|
|
995
1431
|
isValidRule: boolean;
|
|
996
1432
|
}
|
|
997
1433
|
|
|
1434
|
+
@complex model assignmentRequestApprovalStageCallbackData extends accessPackageAssignmentRequestCallbackData {
|
|
1435
|
+
approvalStage: accessPackageApprovalStage | null;
|
|
1436
|
+
}
|
|
1437
|
+
|
|
1438
|
+
@complex model assignmentReviewSettings {
|
|
1439
|
+
accessReviewTimeoutBehavior: accessReviewTimeoutBehavior | null;
|
|
1440
|
+
durationInDays: int32 | null;
|
|
1441
|
+
isAccessRecommendationEnabled: boolean | null;
|
|
1442
|
+
isAgenticExperienceEnabled: boolean | null;
|
|
1443
|
+
isApprovalJustificationRequired: boolean | null;
|
|
1444
|
+
isEnabled: boolean | null;
|
|
1445
|
+
recurrenceType: string | null;
|
|
1446
|
+
reviewers: userSet[] | null;
|
|
1447
|
+
reviewerType: string | null;
|
|
1448
|
+
startDateTime: offsetDateTime | null;
|
|
1449
|
+
}
|
|
1450
|
+
|
|
998
1451
|
@complex model attachmentItem {
|
|
999
1452
|
attachmentType: attachmentType | null;
|
|
1000
1453
|
contentType: string | null;
|
|
@@ -1008,6 +1461,11 @@ namespace reference.`microsoft.graph` {
|
|
|
1008
1461
|
status: responseStatus | null;
|
|
1009
1462
|
}
|
|
1010
1463
|
|
|
1464
|
+
@complex model attendeeAvailability {
|
|
1465
|
+
attendee: attendeeBase | null;
|
|
1466
|
+
availability: freeBusyStatus | null;
|
|
1467
|
+
}
|
|
1468
|
+
|
|
1011
1469
|
@complex model attendeeBase extends recipient {
|
|
1012
1470
|
type: attendeeType | null;
|
|
1013
1471
|
}
|
|
@@ -1056,6 +1514,11 @@ namespace reference.`microsoft.graph` {
|
|
|
1056
1514
|
type: attributeMappingSourceType;
|
|
1057
1515
|
}
|
|
1058
1516
|
|
|
1517
|
+
@complex model attributeRuleMembers extends userSet {
|
|
1518
|
+
description: string | null;
|
|
1519
|
+
membershipRule: string | null;
|
|
1520
|
+
}
|
|
1521
|
+
|
|
1059
1522
|
@complex model audio {
|
|
1060
1523
|
album: string | null;
|
|
1061
1524
|
albumArtist: string | null;
|
|
@@ -1261,6 +1724,11 @@ namespace reference.`microsoft.graph` {
|
|
|
1261
1724
|
displayName: string | null;
|
|
1262
1725
|
}
|
|
1263
1726
|
|
|
1727
|
+
@complex model authenticationStrengthUsage {
|
|
1728
|
+
@references mfa: conditionalAccessPolicy[];
|
|
1729
|
+
@references none: conditionalAccessPolicy[];
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1264
1732
|
@complex model authorizationInfo {
|
|
1265
1733
|
certificateUserIds: string[] | null;
|
|
1266
1734
|
}
|
|
@@ -1281,17 +1749,33 @@ namespace reference.`microsoft.graph` {
|
|
|
1281
1749
|
status: automaticRepliesStatus | null;
|
|
1282
1750
|
}
|
|
1283
1751
|
|
|
1752
|
+
@complex model autoReviewSettings {
|
|
1753
|
+
notReviewedResult: string | null;
|
|
1754
|
+
}
|
|
1755
|
+
|
|
1756
|
+
@complex model azureActiveDirectoryTenant extends identitySource {
|
|
1757
|
+
displayName: string | null;
|
|
1758
|
+
tenantId: string | null;
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1284
1761
|
@complex model azureADJoinPolicy {
|
|
1285
1762
|
allowedToJoin: deviceRegistrationMembership | null;
|
|
1286
1763
|
isAdminConfigurable: boolean | null;
|
|
1287
1764
|
localAdmins: localAdminSettings | null;
|
|
1288
1765
|
}
|
|
1289
1766
|
|
|
1767
|
+
@complex model azureAdPopTokenAuthentication extends customExtensionAuthenticationConfiguration {
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1290
1770
|
@complex model azureADRegistrationPolicy {
|
|
1291
1771
|
allowedToRegister: deviceRegistrationMembership | null;
|
|
1292
1772
|
isAdminConfigurable: boolean | null;
|
|
1293
1773
|
}
|
|
1294
1774
|
|
|
1775
|
+
@complex model azureAdTokenAuthentication extends customExtensionAuthenticationConfiguration {
|
|
1776
|
+
resourceId: string | null;
|
|
1777
|
+
}
|
|
1778
|
+
|
|
1295
1779
|
/**
|
|
1296
1780
|
* BitLocker Fixed Drive Policies.
|
|
1297
1781
|
*/
|
|
@@ -1475,6 +1959,10 @@ namespace reference.`microsoft.graph` {
|
|
|
1475
1959
|
childCount: int32 | null;
|
|
1476
1960
|
}
|
|
1477
1961
|
|
|
1962
|
+
@complex model businessFlowSettings extends accessReviewSettings {
|
|
1963
|
+
durationInDays: int32;
|
|
1964
|
+
}
|
|
1965
|
+
|
|
1478
1966
|
@complex model calculatedColumn {
|
|
1479
1967
|
format: string | null;
|
|
1480
1968
|
formula: string | null;
|
|
@@ -1784,6 +2272,16 @@ namespace reference.`microsoft.graph` {
|
|
|
1784
2272
|
cloudAppSecurityType: cloudAppSecuritySessionControlType | null;
|
|
1785
2273
|
}
|
|
1786
2274
|
|
|
2275
|
+
/**
|
|
2276
|
+
* Complex type that represents usage details associated with a certification authority version. This type provides reporting data such as the number of leaf certificates issued during specific lifecycle phases.
|
|
2277
|
+
*/
|
|
2278
|
+
@complex model cloudCertificationAuthorityVersionUsage {
|
|
2279
|
+
/**
|
|
2280
|
+
* The number of leaf certificates issued by the certification authority version when it was in the staged status. Only applicable for staged certification authority versions. Nullable. Read-only.
|
|
2281
|
+
*/
|
|
2282
|
+
issuedStagedLeafCertificateCount: int32 | null;
|
|
2283
|
+
}
|
|
2284
|
+
|
|
1787
2285
|
@complex model cloudRealtimeCommunicationInfo {
|
|
1788
2286
|
isSipEnabled: boolean | null;
|
|
1789
2287
|
}
|
|
@@ -1944,6 +2442,9 @@ namespace reference.`microsoft.graph` {
|
|
|
1944
2442
|
deviceStates: conditionalAccessDeviceStates | null;
|
|
1945
2443
|
locations: conditionalAccessLocations | null;
|
|
1946
2444
|
platforms: conditionalAccessPlatforms | null;
|
|
2445
|
+
servicePrincipalRiskLevels: riskLevel[];
|
|
2446
|
+
signInRiskLevels: riskLevel[];
|
|
2447
|
+
userRiskLevels: riskLevel[];
|
|
1947
2448
|
users: conditionalAccessUsers | null;
|
|
1948
2449
|
}
|
|
1949
2450
|
|
|
@@ -1979,6 +2480,7 @@ namespace reference.`microsoft.graph` {
|
|
|
1979
2480
|
customAuthenticationFactors: string[];
|
|
1980
2481
|
operator: string | null;
|
|
1981
2482
|
termsOfUse: string[];
|
|
2483
|
+
@contains authenticationStrength: authenticationStrengthPolicy | null;
|
|
1982
2484
|
}
|
|
1983
2485
|
|
|
1984
2486
|
@complex model conditionalAccessGuestsOrExternalUsers {
|
|
@@ -2179,6 +2681,15 @@ namespace reference.`microsoft.graph` {
|
|
|
2179
2681
|
values: string[] | null;
|
|
2180
2682
|
}
|
|
2181
2683
|
|
|
2684
|
+
@complex model connectedOrganizationMembers extends userSet {
|
|
2685
|
+
description: string | null;
|
|
2686
|
+
id: string | null;
|
|
2687
|
+
}
|
|
2688
|
+
|
|
2689
|
+
@complex model connectionInfo {
|
|
2690
|
+
url: string | null;
|
|
2691
|
+
}
|
|
2692
|
+
|
|
2182
2693
|
@complex model connectivityParameterEntry {
|
|
2183
2694
|
value: string | null;
|
|
2184
2695
|
}
|
|
@@ -2322,6 +2833,12 @@ namespace reference.`microsoft.graph` {
|
|
|
2322
2833
|
teamIdentifier: string | null;
|
|
2323
2834
|
}
|
|
2324
2835
|
|
|
2836
|
+
@complex model crossCloudAzureActiveDirectoryTenant extends identitySource {
|
|
2837
|
+
cloudInstance: string;
|
|
2838
|
+
displayName: string | null;
|
|
2839
|
+
tenantId: string | null;
|
|
2840
|
+
}
|
|
2841
|
+
|
|
2325
2842
|
@complex model crossTenantAccessPolicyB2BSetting {
|
|
2326
2843
|
applications: crossTenantAccessPolicyTargetConfiguration | null;
|
|
2327
2844
|
usersAndGroups: crossTenantAccessPolicyTargetConfiguration | null;
|
|
@@ -2389,6 +2906,22 @@ namespace reference.`microsoft.graph` {
|
|
|
2389
2906
|
applicationRestrictions: customAppManagementApplicationConfiguration | null;
|
|
2390
2907
|
}
|
|
2391
2908
|
|
|
2909
|
+
@abstract
|
|
2910
|
+
@complex model customExtensionAuthenticationConfiguration {
|
|
2911
|
+
}
|
|
2912
|
+
|
|
2913
|
+
@complex model customExtensionCallbackConfiguration {
|
|
2914
|
+
timeoutDuration: duration | null;
|
|
2915
|
+
}
|
|
2916
|
+
|
|
2917
|
+
@complex model customExtensionCalloutInstance {
|
|
2918
|
+
customExtensionId: string | null;
|
|
2919
|
+
detail: string | null;
|
|
2920
|
+
externalCorrelationId: string | null;
|
|
2921
|
+
id: string | null;
|
|
2922
|
+
status: customExtensionCalloutInstanceStatus | null;
|
|
2923
|
+
}
|
|
2924
|
+
|
|
2392
2925
|
@complex model customExtensionCalloutResult extends authenticationEventHandlerResult {
|
|
2393
2926
|
calloutDateTime: offsetDateTime | null;
|
|
2394
2927
|
customExtensionId: string | null;
|
|
@@ -2397,6 +2930,37 @@ namespace reference.`microsoft.graph` {
|
|
|
2397
2930
|
numberOfAttempts: int32 | null;
|
|
2398
2931
|
}
|
|
2399
2932
|
|
|
2933
|
+
@complex model customExtensionClientConfiguration {
|
|
2934
|
+
maximumRetries: int32 | null;
|
|
2935
|
+
timeoutInMilliseconds: int32 | null;
|
|
2936
|
+
}
|
|
2937
|
+
|
|
2938
|
+
@abstract
|
|
2939
|
+
@complex model customExtensionData {
|
|
2940
|
+
}
|
|
2941
|
+
|
|
2942
|
+
@abstract
|
|
2943
|
+
@complex model customExtensionEndpointConfiguration {
|
|
2944
|
+
}
|
|
2945
|
+
|
|
2946
|
+
@privatePreview("MicrosofEntitlementManagementCustomextensions")
|
|
2947
|
+
@complex model customExtensionHandlerInstance {
|
|
2948
|
+
customExtensionId: string | null;
|
|
2949
|
+
externalCorrelationId: string | null;
|
|
2950
|
+
stage: accessPackageCustomExtensionStage | null;
|
|
2951
|
+
status: accessPackageCustomExtensionHandlerStatus | null;
|
|
2952
|
+
}
|
|
2953
|
+
|
|
2954
|
+
@abstract
|
|
2955
|
+
@complex model customSecurityAttributeExemption {
|
|
2956
|
+
id: string;
|
|
2957
|
+
operator: customSecurityAttributeComparisonOperator;
|
|
2958
|
+
}
|
|
2959
|
+
|
|
2960
|
+
@complex model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
|
|
2961
|
+
value: string | null;
|
|
2962
|
+
}
|
|
2963
|
+
|
|
2400
2964
|
@open
|
|
2401
2965
|
@complex model customSecurityAttributeValue {
|
|
2402
2966
|
}
|
|
@@ -2471,6 +3035,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2471
3035
|
daylightBias: int32 | null;
|
|
2472
3036
|
}
|
|
2473
3037
|
|
|
3038
|
+
@complex model decisionItemPrincipalResourceMembership {
|
|
3039
|
+
membershipType: decisionItemPrincipalResourceMembershipType;
|
|
3040
|
+
}
|
|
3041
|
+
|
|
2474
3042
|
@complex model defaultColumnValue {
|
|
2475
3043
|
formula: string | null;
|
|
2476
3044
|
value: string | null;
|
|
@@ -2825,11 +3393,11 @@ namespace reference.`microsoft.graph` {
|
|
|
2825
3393
|
|
|
2826
3394
|
@complex model deviceCompliancePolicyScript {
|
|
2827
3395
|
/**
|
|
2828
|
-
*
|
|
3396
|
+
* Identifier of the device compliance script used to evaluate custom compliance. When deviceCompliancePolicyScript is set, this identifies which script to run. Default is null, when set to default it is not evaluated.
|
|
2829
3397
|
*/
|
|
2830
3398
|
deviceComplianceScriptId: string | null;
|
|
2831
3399
|
/**
|
|
2832
|
-
*
|
|
3400
|
+
* base64-encoded JSON rules content that defines compliance rules to evaluate on the device. When deviceCompliancePolicyScript is set, the rule conditions defined in the JSON are evaluated to determine compliance and the device is marked noncompliant when any rule evaluates to noncompliant. Default is null, when set to default it is not evaluated.
|
|
2833
3401
|
*/
|
|
2834
3402
|
rulesContent: binary | null;
|
|
2835
3403
|
}
|
|
@@ -4895,6 +5463,9 @@ namespace reference.`microsoft.graph` {
|
|
|
4895
5463
|
requestGrantAccess: sharingOperationStatus | null;
|
|
4896
5464
|
}
|
|
4897
5465
|
|
|
5466
|
+
@complex model disableAndDeleteUserApplyAction extends accessReviewApplyAction {
|
|
5467
|
+
}
|
|
5468
|
+
|
|
4898
5469
|
@complex model displayNameLocalization {
|
|
4899
5470
|
displayName: string | null;
|
|
4900
5471
|
languageTag: string | null;
|
|
@@ -4922,6 +5493,11 @@ namespace reference.`microsoft.graph` {
|
|
|
4922
5493
|
versionId: string | null;
|
|
4923
5494
|
}
|
|
4924
5495
|
|
|
5496
|
+
@complex model domainIdentitySource extends identitySource {
|
|
5497
|
+
displayName: string | null;
|
|
5498
|
+
domainName: string | null;
|
|
5499
|
+
}
|
|
5500
|
+
|
|
4925
5501
|
@complex model domainState {
|
|
4926
5502
|
@computed lastActionDateTime: offsetDateTime | null;
|
|
4927
5503
|
operation: string | null;
|
|
@@ -5288,6 +5864,10 @@ namespace reference.`microsoft.graph` {
|
|
|
5288
5864
|
* The number of days after installation that forced reboot will happen.
|
|
5289
5865
|
*/
|
|
5290
5866
|
daysUntilForcedReboot: int32;
|
|
5867
|
+
/**
|
|
5868
|
+
* The unique identifier for the quality update catalog item targeted by the expedite.
|
|
5869
|
+
*/
|
|
5870
|
+
qualityUpdateCatalogItemId: string | null;
|
|
5291
5871
|
/**
|
|
5292
5872
|
* The release date to identify a quality update.
|
|
5293
5873
|
*/
|
|
@@ -5353,6 +5933,24 @@ namespace reference.`microsoft.graph` {
|
|
|
5353
5933
|
type: string | null;
|
|
5354
5934
|
}
|
|
5355
5935
|
|
|
5936
|
+
@complex model externalDomainFederation extends identitySource {
|
|
5937
|
+
displayName: string | null;
|
|
5938
|
+
domainName: string | null;
|
|
5939
|
+
issuerUri: string | null;
|
|
5940
|
+
}
|
|
5941
|
+
|
|
5942
|
+
@complex model externalSponsors extends userSet {
|
|
5943
|
+
}
|
|
5944
|
+
|
|
5945
|
+
@complex model externalTokenBasedSapIagConnectionInfo extends connectionInfo {
|
|
5946
|
+
accessTokenUrl: string | null;
|
|
5947
|
+
clientId: string | null;
|
|
5948
|
+
keyVaultName: string | null;
|
|
5949
|
+
resourceGroup: string | null;
|
|
5950
|
+
secretName: string | null;
|
|
5951
|
+
subscriptionId: string | null;
|
|
5952
|
+
}
|
|
5953
|
+
|
|
5356
5954
|
@complex model extractSensitivityLabelsResult {
|
|
5357
5955
|
labels: sensitivityLabelAssignment[] | null;
|
|
5358
5956
|
}
|
|
@@ -5536,6 +6134,28 @@ namespace reference.`microsoft.graph` {
|
|
|
5536
6134
|
@complex model geolocationColumn {
|
|
5537
6135
|
}
|
|
5538
6136
|
|
|
6137
|
+
@abstract
|
|
6138
|
+
@complex model governanceCriteria {
|
|
6139
|
+
}
|
|
6140
|
+
|
|
6141
|
+
@complex model governanceNotificationPolicy {
|
|
6142
|
+
enabledTemplateTypes: string[] | null;
|
|
6143
|
+
notificationTemplates: governanceNotificationTemplate[] | null;
|
|
6144
|
+
}
|
|
6145
|
+
|
|
6146
|
+
@complex model governanceNotificationTemplate {
|
|
6147
|
+
culture: string | null;
|
|
6148
|
+
id: string | null;
|
|
6149
|
+
source: string | null;
|
|
6150
|
+
type: string | null;
|
|
6151
|
+
version: string | null;
|
|
6152
|
+
}
|
|
6153
|
+
|
|
6154
|
+
@complex model governancePolicy {
|
|
6155
|
+
decisionMakerCriteria: governanceCriteria[] | null;
|
|
6156
|
+
notificationPolicy: governanceNotificationPolicy | null;
|
|
6157
|
+
}
|
|
6158
|
+
|
|
5539
6159
|
/**
|
|
5540
6160
|
* Represents an assignment to a group.
|
|
5541
6161
|
*/
|
|
@@ -5564,6 +6184,13 @@ namespace reference.`microsoft.graph` {
|
|
|
5564
6184
|
id: string | null;
|
|
5565
6185
|
}
|
|
5566
6186
|
|
|
6187
|
+
@complex model groupMembershipGovernanceCriteria extends governanceCriteria {
|
|
6188
|
+
groupId: string | null;
|
|
6189
|
+
}
|
|
6190
|
+
|
|
6191
|
+
@complex model groupPeerOutlierRecommendationInsightSettings extends accessReviewRecommendationInsightSetting {
|
|
6192
|
+
}
|
|
6193
|
+
|
|
5567
6194
|
@complex model groupPolicyPresentationDropdownListItem {
|
|
5568
6195
|
/**
|
|
5569
6196
|
* Localized display name for the drop-down list item.
|
|
@@ -5830,6 +6457,10 @@ namespace reference.`microsoft.graph` {
|
|
|
5830
6457
|
id: string | null;
|
|
5831
6458
|
}
|
|
5832
6459
|
|
|
6460
|
+
@complex model identityGovernanceUserSettings {
|
|
6461
|
+
approverDelegate: approverDelegate | null;
|
|
6462
|
+
}
|
|
6463
|
+
|
|
5833
6464
|
@complex model identityInput {
|
|
5834
6465
|
`alias`: string | null;
|
|
5835
6466
|
email: string | null;
|
|
@@ -5843,6 +6474,10 @@ namespace reference.`microsoft.graph` {
|
|
|
5843
6474
|
user: identity | null;
|
|
5844
6475
|
}
|
|
5845
6476
|
|
|
6477
|
+
@abstract
|
|
6478
|
+
@complex model identitySource {
|
|
6479
|
+
}
|
|
6480
|
+
|
|
5846
6481
|
@complex model idleSessionSignOut {
|
|
5847
6482
|
isEnabled: boolean | null;
|
|
5848
6483
|
signOutAfterInSeconds: int64 | null;
|
|
@@ -5970,6 +6605,9 @@ namespace reference.`microsoft.graph` {
|
|
|
5970
6605
|
start: int64 | null;
|
|
5971
6606
|
}
|
|
5972
6607
|
|
|
6608
|
+
@complex model internalSponsors extends userSet {
|
|
6609
|
+
}
|
|
6610
|
+
|
|
5973
6611
|
@complex model internetMessageHeader {
|
|
5974
6612
|
name: string | null;
|
|
5975
6613
|
value: string | null;
|
|
@@ -7003,6 +7641,7 @@ namespace reference.`microsoft.graph` {
|
|
|
7003
7641
|
usage: string | null;
|
|
7004
7642
|
}
|
|
7005
7643
|
|
|
7644
|
+
|
|
7006
7645
|
/**
|
|
7007
7646
|
* A key-value pair with a string key and an integer value.
|
|
7008
7647
|
*/
|
|
@@ -7160,6 +7799,16 @@ namespace reference.`microsoft.graph` {
|
|
|
7160
7799
|
uniqueIdType: locationUniqueIdType | null;
|
|
7161
7800
|
}
|
|
7162
7801
|
|
|
7802
|
+
@complex model locationConstraint {
|
|
7803
|
+
isRequired: boolean | null;
|
|
7804
|
+
locations: locationConstraintItem[] | null;
|
|
7805
|
+
suggestLocation: boolean | null;
|
|
7806
|
+
}
|
|
7807
|
+
|
|
7808
|
+
@complex model locationConstraintItem extends location {
|
|
7809
|
+
resolveAvailability: boolean | null;
|
|
7810
|
+
}
|
|
7811
|
+
|
|
7163
7812
|
/**
|
|
7164
7813
|
* Logged On User
|
|
7165
7814
|
*/
|
|
@@ -7174,6 +7823,13 @@ namespace reference.`microsoft.graph` {
|
|
|
7174
7823
|
userId: string | null;
|
|
7175
7824
|
}
|
|
7176
7825
|
|
|
7826
|
+
@complex model logicAppTriggerEndpointConfiguration extends customExtensionEndpointConfiguration {
|
|
7827
|
+
logicAppWorkflowName: string | null;
|
|
7828
|
+
resourceGroupName: string | null;
|
|
7829
|
+
subscriptionId: string | null;
|
|
7830
|
+
url: string | null;
|
|
7831
|
+
}
|
|
7832
|
+
|
|
7177
7833
|
@complex model loginPageBrandingVisualElement {
|
|
7178
7834
|
customText: string | null;
|
|
7179
7835
|
customUrl: string | null;
|
|
@@ -7203,6 +7859,21 @@ namespace reference.`microsoft.graph` {
|
|
|
7203
7859
|
primaryLookupColumnId: string | null;
|
|
7204
7860
|
}
|
|
7205
7861
|
|
|
7862
|
+
@complex model m365CapabilityInboundAccess {
|
|
7863
|
+
isAllowed: boolean | null;
|
|
7864
|
+
resourceScopes: m365CapabilityResourceScopes | null;
|
|
7865
|
+
}
|
|
7866
|
+
|
|
7867
|
+
@complex model m365CapabilityResourceScope {
|
|
7868
|
+
resourceId: string | null;
|
|
7869
|
+
resourceType: m365ResourceType;
|
|
7870
|
+
}
|
|
7871
|
+
|
|
7872
|
+
@complex model m365CapabilityResourceScopes {
|
|
7873
|
+
excluded: m365CapabilityResourceScope[];
|
|
7874
|
+
included: m365CapabilityResourceScope[];
|
|
7875
|
+
}
|
|
7876
|
+
|
|
7206
7877
|
/**
|
|
7207
7878
|
* The identifier for a Mac app.
|
|
7208
7879
|
*/
|
|
@@ -8065,6 +8736,16 @@ namespace reference.`microsoft.graph` {
|
|
|
8065
8736
|
msiType: msiType | null;
|
|
8066
8737
|
}
|
|
8067
8738
|
|
|
8739
|
+
/**
|
|
8740
|
+
* The request parameter for requesting Android Managed Play Store app configuration schema.
|
|
8741
|
+
*/
|
|
8742
|
+
@complex model managedStoreAppConfigurationSchemaRequestDetail extends appConfigurationSchemaRequestDetail {
|
|
8743
|
+
/**
|
|
8744
|
+
* The package name of the Android Managed Play Store app
|
|
8745
|
+
*/
|
|
8746
|
+
packageName: string | null;
|
|
8747
|
+
}
|
|
8748
|
+
|
|
8068
8749
|
@complex model managementCertificateWithThumbprint {
|
|
8069
8750
|
/**
|
|
8070
8751
|
* The Base 64 encoded management certificate
|
|
@@ -8190,6 +8871,21 @@ namespace reference.`microsoft.graph` {
|
|
|
8190
8871
|
meetingChatId: string | null;
|
|
8191
8872
|
}
|
|
8192
8873
|
|
|
8874
|
+
@complex model meetingTimeSuggestion {
|
|
8875
|
+
attendeeAvailability: attendeeAvailability[] | null;
|
|
8876
|
+
confidence: float64 | null;
|
|
8877
|
+
locations: location[] | null;
|
|
8878
|
+
meetingTimeSlot: timeSlot | null;
|
|
8879
|
+
order: int32 | null;
|
|
8880
|
+
organizerAvailability: freeBusyStatus | null;
|
|
8881
|
+
suggestionReason: string | null;
|
|
8882
|
+
}
|
|
8883
|
+
|
|
8884
|
+
@complex model meetingTimeSuggestionsResult {
|
|
8885
|
+
emptySuggestionsReason: string | null;
|
|
8886
|
+
meetingTimeSuggestions: meetingTimeSuggestion[] | null;
|
|
8887
|
+
}
|
|
8888
|
+
|
|
8193
8889
|
@complex model membersAddedEventMessageDetail extends eventMessageDetail {
|
|
8194
8890
|
initiator: identitySet | null;
|
|
8195
8891
|
members: teamworkUserIdentity[] | null;
|
|
@@ -8995,6 +9691,9 @@ namespace reference.`microsoft.graph` {
|
|
|
8995
9691
|
@complex model passkeyProfileStructure {
|
|
8996
9692
|
attestationEnforcement: attestationEnforcement;
|
|
8997
9693
|
id: string;
|
|
9694
|
+
|
|
9695
|
+
@graphDeprecated("PasskeyGlobalProperties")
|
|
9696
|
+
isAttestationEnforced: boolean;
|
|
8998
9697
|
keyRestrictions: fido2KeyRestrictions;
|
|
8999
9698
|
name: string;
|
|
9000
9699
|
passkeyTypes: passkeyTypes;
|
|
@@ -9010,6 +9709,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9010
9709
|
startDateTime: offsetDateTime | null;
|
|
9011
9710
|
}
|
|
9012
9711
|
|
|
9712
|
+
|
|
9013
9713
|
@complex model passwordProfile {
|
|
9014
9714
|
forceChangePasswordNextSignIn: boolean | null;
|
|
9015
9715
|
forceChangePasswordNextSignInWithMfa: boolean | null;
|
|
@@ -9196,6 +9896,11 @@ namespace reference.`microsoft.graph` {
|
|
|
9196
9896
|
creationSourceKind: plannerCreationSourceKind | null;
|
|
9197
9897
|
}
|
|
9198
9898
|
|
|
9899
|
+
@complex model plannerBucketPropertyRule extends plannerPropertyRule {
|
|
9900
|
+
order: string[] | null;
|
|
9901
|
+
title: string[] | null;
|
|
9902
|
+
}
|
|
9903
|
+
|
|
9199
9904
|
@complex model plannerCategoryDescriptions {
|
|
9200
9905
|
category1: string | null;
|
|
9201
9906
|
category10: string | null;
|
|
@@ -9283,6 +9988,11 @@ namespace reference.`microsoft.graph` {
|
|
|
9283
9988
|
@complex model plannerFavoritePlanReferenceCollection {
|
|
9284
9989
|
}
|
|
9285
9990
|
|
|
9991
|
+
@complex model plannerFieldRules {
|
|
9992
|
+
defaultRules: string[] | null;
|
|
9993
|
+
overrides: plannerRuleOverride[] | null;
|
|
9994
|
+
}
|
|
9995
|
+
|
|
9286
9996
|
@complex model plannerFormReference {
|
|
9287
9997
|
displayName: string | null;
|
|
9288
9998
|
formResponse: string | null;
|
|
@@ -9335,6 +10045,18 @@ namespace reference.`microsoft.graph` {
|
|
|
9335
10045
|
creationSourceKind: plannerCreationSourceKind | null;
|
|
9336
10046
|
}
|
|
9337
10047
|
|
|
10048
|
+
@complex model plannerPlanPropertyRule extends plannerPropertyRule {
|
|
10049
|
+
buckets: string[] | null;
|
|
10050
|
+
categoryDescriptions: plannerFieldRules | null;
|
|
10051
|
+
tasks: string[] | null;
|
|
10052
|
+
title: plannerFieldRules | null;
|
|
10053
|
+
}
|
|
10054
|
+
|
|
10055
|
+
@abstract
|
|
10056
|
+
@complex model plannerPropertyRule {
|
|
10057
|
+
ruleKind: plannerRuleKind | null;
|
|
10058
|
+
}
|
|
10059
|
+
|
|
9338
10060
|
@complex model plannerRecentPlanReference {
|
|
9339
10061
|
@computed lastAccessedDateTime: offsetDateTime | null;
|
|
9340
10062
|
planTitle: string | null;
|
|
@@ -9350,10 +10072,31 @@ namespace reference.`microsoft.graph` {
|
|
|
9350
10072
|
patternStartDateTime: offsetDateTime | null;
|
|
9351
10073
|
}
|
|
9352
10074
|
|
|
10075
|
+
@complex model plannerRuleOverride {
|
|
10076
|
+
name: string | null;
|
|
10077
|
+
rules: string[] | null;
|
|
10078
|
+
}
|
|
10079
|
+
|
|
9353
10080
|
@complex model plannerSharedWithContainer extends plannerPlanContainer {
|
|
9354
10081
|
accessLevel: plannerPlanAccessLevel;
|
|
9355
10082
|
}
|
|
9356
10083
|
|
|
10084
|
+
@complex model plannerTaskChatMention {
|
|
10085
|
+
mentioned: string | null;
|
|
10086
|
+
mentionType: plannerTaskChatMentionType;
|
|
10087
|
+
position: int32;
|
|
10088
|
+
}
|
|
10089
|
+
|
|
10090
|
+
@complex model plannerTaskChatReaction {
|
|
10091
|
+
reactionEvents: plannerTaskChatReactionEvent[];
|
|
10092
|
+
reactionType: string | null;
|
|
10093
|
+
}
|
|
10094
|
+
|
|
10095
|
+
@complex model plannerTaskChatReactionEvent {
|
|
10096
|
+
createdBy: identitySet | null;
|
|
10097
|
+
@computed createdDateTime: offsetDateTime;
|
|
10098
|
+
}
|
|
10099
|
+
|
|
9357
10100
|
@complex model plannerTaskCompletionRequirementDetails {
|
|
9358
10101
|
approvalRequirement: plannerApprovalRequirement | null;
|
|
9359
10102
|
checklistRequirement: plannerChecklistRequirement | null;
|
|
@@ -9365,6 +10108,26 @@ namespace reference.`microsoft.graph` {
|
|
|
9365
10108
|
teamsPublicationInfo: plannerTeamsPublicationInfo | null;
|
|
9366
10109
|
}
|
|
9367
10110
|
|
|
10111
|
+
@complex model plannerTaskPropertyRule extends plannerPropertyRule {
|
|
10112
|
+
appliedCategories: plannerFieldRules | null;
|
|
10113
|
+
approvalAttachment: plannerFieldRules | null;
|
|
10114
|
+
assignments: plannerFieldRules | null;
|
|
10115
|
+
checkLists: plannerFieldRules | null;
|
|
10116
|
+
completionRequirements: string[] | null;
|
|
10117
|
+
delete: string[] | null;
|
|
10118
|
+
dueDate: string[] | null;
|
|
10119
|
+
forms: plannerFieldRules | null;
|
|
10120
|
+
move: string[] | null;
|
|
10121
|
+
notes: string[] | null;
|
|
10122
|
+
order: string[] | null;
|
|
10123
|
+
percentComplete: string[] | null;
|
|
10124
|
+
previewType: string[] | null;
|
|
10125
|
+
priority: string[] | null;
|
|
10126
|
+
references: plannerFieldRules | null;
|
|
10127
|
+
startDate: string[] | null;
|
|
10128
|
+
title: string[] | null;
|
|
10129
|
+
}
|
|
10130
|
+
|
|
9368
10131
|
@complex model plannerTaskRecurrence {
|
|
9369
10132
|
nextInSeriesTaskId: string | null;
|
|
9370
10133
|
occurrenceId: int32;
|
|
@@ -9530,6 +10293,11 @@ namespace reference.`microsoft.graph` {
|
|
|
9530
10293
|
permissionIds: string[] | null;
|
|
9531
10294
|
}
|
|
9532
10295
|
|
|
10296
|
+
@complex model principalResourceMembershipsScope extends accessReviewScope {
|
|
10297
|
+
principalScopes: accessReviewScope[] | null;
|
|
10298
|
+
resourceScopes: accessReviewScope[] | null;
|
|
10299
|
+
}
|
|
10300
|
+
|
|
9533
10301
|
@complex model privacyProfile {
|
|
9534
10302
|
contactEmail: string | null;
|
|
9535
10303
|
statementUrl: string | null;
|
|
@@ -9553,6 +10321,17 @@ namespace reference.`microsoft.graph` {
|
|
|
9553
10321
|
sourceId: string | null;
|
|
9554
10322
|
}
|
|
9555
10323
|
|
|
10324
|
+
@complex model profileSourceLocalization {
|
|
10325
|
+
displayName: string | null;
|
|
10326
|
+
languageTag: string | null;
|
|
10327
|
+
webUrl: string | null;
|
|
10328
|
+
}
|
|
10329
|
+
|
|
10330
|
+
@open
|
|
10331
|
+
@complex model programResource extends identity {
|
|
10332
|
+
type: string | null;
|
|
10333
|
+
}
|
|
10334
|
+
|
|
9556
10335
|
@complex model propertyToEvaluate {
|
|
9557
10336
|
propertyName: string | null;
|
|
9558
10337
|
propertyValue: string | null;
|
|
@@ -9803,6 +10582,9 @@ namespace reference.`microsoft.graph` {
|
|
|
9803
10582
|
unlockPin: string | null;
|
|
9804
10583
|
}
|
|
9805
10584
|
|
|
10585
|
+
@complex model removeAccessApplyAction extends accessReviewApplyAction {
|
|
10586
|
+
}
|
|
10587
|
+
|
|
9806
10588
|
@complex model renameAction {
|
|
9807
10589
|
newName: string | null;
|
|
9808
10590
|
oldName: string | null;
|
|
@@ -9821,6 +10603,25 @@ namespace reference.`microsoft.graph` {
|
|
|
9821
10603
|
voiceReportingCode: int32 | null;
|
|
9822
10604
|
}
|
|
9823
10605
|
|
|
10606
|
+
@complex model requestActivity {
|
|
10607
|
+
action: string | null;
|
|
10608
|
+
actionDateTime: offsetDateTime | null;
|
|
10609
|
+
detail: string | null;
|
|
10610
|
+
scheduledDateTime: offsetDateTime | null;
|
|
10611
|
+
userDisplayName: string | null;
|
|
10612
|
+
userPrincipalName: string | null;
|
|
10613
|
+
}
|
|
10614
|
+
|
|
10615
|
+
@complex model requestorManager extends userSet {
|
|
10616
|
+
managerLevel: int32 | null;
|
|
10617
|
+
}
|
|
10618
|
+
|
|
10619
|
+
@complex model requestorSettings {
|
|
10620
|
+
acceptRequests: boolean | null;
|
|
10621
|
+
allowedRequestors: userSet[] | null;
|
|
10622
|
+
scopeType: string | null;
|
|
10623
|
+
}
|
|
10624
|
+
|
|
9824
10625
|
/**
|
|
9825
10626
|
* Remote help - response we provide back to the helper after getting response from pubSub
|
|
9826
10627
|
*/
|
|
@@ -10061,6 +10862,11 @@ namespace reference.`microsoft.graph` {
|
|
|
10061
10862
|
riskEventTypes: string[] | null;
|
|
10062
10863
|
}
|
|
10063
10864
|
|
|
10865
|
+
@complex model roleMembershipGovernanceCriteria extends governanceCriteria {
|
|
10866
|
+
roleId: string | null;
|
|
10867
|
+
roleTemplateId: string | null;
|
|
10868
|
+
}
|
|
10869
|
+
|
|
10064
10870
|
/**
|
|
10065
10871
|
* Contains the set of ResourceActions determining the allowed and not allowed permissions for each role.
|
|
10066
10872
|
*/
|
|
@@ -10293,6 +11099,11 @@ namespace reference.`microsoft.graph` {
|
|
|
10293
11099
|
servicePlanName: string | null;
|
|
10294
11100
|
}
|
|
10295
11101
|
|
|
11102
|
+
@open
|
|
11103
|
+
@complex model servicePrincipalIdentity extends identity {
|
|
11104
|
+
appId: string | null;
|
|
11105
|
+
}
|
|
11106
|
+
|
|
10296
11107
|
@complex model servicePrincipalLockConfiguration {
|
|
10297
11108
|
allProperties: boolean | null;
|
|
10298
11109
|
credentialsWithUsageSign: boolean | null;
|
|
@@ -10597,6 +11408,11 @@ namespace reference.`microsoft.graph` {
|
|
|
10597
11408
|
minimumSize: int32 | null;
|
|
10598
11409
|
}
|
|
10599
11410
|
|
|
11411
|
+
@complex model socialIdentitySource extends identitySource {
|
|
11412
|
+
displayName: string | null;
|
|
11413
|
+
socialIdentitySourceType: socialIdentitySourceType;
|
|
11414
|
+
}
|
|
11415
|
+
|
|
10600
11416
|
@complex model spaApplication {
|
|
10601
11417
|
redirectUris: string[];
|
|
10602
11418
|
}
|
|
@@ -10670,6 +11486,10 @@ namespace reference.`microsoft.graph` {
|
|
|
10670
11486
|
perUserMfaState: perUserMfaState | null;
|
|
10671
11487
|
}
|
|
10672
11488
|
|
|
11489
|
+
@abstract
|
|
11490
|
+
@complex model subjectSet {
|
|
11491
|
+
}
|
|
11492
|
+
|
|
10673
11493
|
/**
|
|
10674
11494
|
* The suggestedEnrollmentLimit resource represents the suggested enrollment limit when given an enrollment type.
|
|
10675
11495
|
*/
|
|
@@ -10803,6 +11623,9 @@ namespace reference.`microsoft.graph` {
|
|
|
10803
11623
|
tabId: string | null;
|
|
10804
11624
|
}
|
|
10805
11625
|
|
|
11626
|
+
@complex model targetAgentIdentitySponsorsOrOwners extends userSet {
|
|
11627
|
+
}
|
|
11628
|
+
|
|
10806
11629
|
@complex model targetResource {
|
|
10807
11630
|
displayName: string | null;
|
|
10808
11631
|
groupType: groupType | null;
|
|
@@ -10812,6 +11635,9 @@ namespace reference.`microsoft.graph` {
|
|
|
10812
11635
|
userPrincipalName: string | null;
|
|
10813
11636
|
}
|
|
10814
11637
|
|
|
11638
|
+
@complex model targetUserSponsors extends userSet {
|
|
11639
|
+
}
|
|
11640
|
+
|
|
10815
11641
|
@complex model teamArchivedEventMessageDetail extends eventMessageDetail {
|
|
10816
11642
|
initiator: identitySet | null;
|
|
10817
11643
|
teamId: string | null;
|
|
@@ -11227,6 +12053,12 @@ namespace reference.`microsoft.graph` {
|
|
|
11227
12053
|
ticketSystem: string | null;
|
|
11228
12054
|
}
|
|
11229
12055
|
|
|
12056
|
+
@complex model timeConstraint {
|
|
12057
|
+
activityDomain: activityDomain | null;
|
|
12058
|
+
recurrence: patternedRecurrence | null;
|
|
12059
|
+
timeSlots: timeSlot[] | null;
|
|
12060
|
+
}
|
|
12061
|
+
|
|
11230
12062
|
/**
|
|
11231
12063
|
* Parameter passed to GetHealthMetricTimeSeries when requesting snapshot time series.
|
|
11232
12064
|
*/
|
|
@@ -11678,12 +12510,21 @@ namespace reference.`microsoft.graph` {
|
|
|
11678
12510
|
windows10DevicesWithoutTenantAttach: int32;
|
|
11679
12511
|
}
|
|
11680
12512
|
|
|
12513
|
+
@complex model userGovernanceCriteria extends governanceCriteria {
|
|
12514
|
+
userId: string | null;
|
|
12515
|
+
}
|
|
12516
|
+
|
|
11681
12517
|
@open
|
|
11682
12518
|
@complex model userIdentity extends identity {
|
|
11683
12519
|
ipAddress: string | null;
|
|
11684
12520
|
userPrincipalName: string | null;
|
|
11685
12521
|
}
|
|
11686
12522
|
|
|
12523
|
+
@complex model userLastSignInRecommendationInsightSetting extends accessReviewRecommendationInsightSetting {
|
|
12524
|
+
recommendationLookBackDuration: duration | null;
|
|
12525
|
+
signInScope: userSignInRecommendationScope | null;
|
|
12526
|
+
}
|
|
12527
|
+
|
|
11687
12528
|
@complex model userPurpose {
|
|
11688
12529
|
value: mailboxRecipientType | null;
|
|
11689
12530
|
}
|
|
@@ -11728,6 +12569,41 @@ namespace reference.`microsoft.graph` {
|
|
|
11728
12569
|
rootDomains: rootDomains;
|
|
11729
12570
|
}
|
|
11730
12571
|
|
|
12572
|
+
@complex model verifiableCredentialRequired extends verifiableCredentialRequirementStatus {
|
|
12573
|
+
expiryDateTime: offsetDateTime;
|
|
12574
|
+
url: string | null;
|
|
12575
|
+
}
|
|
12576
|
+
|
|
12577
|
+
@abstract
|
|
12578
|
+
@complex model verifiableCredentialRequirementStatus {
|
|
12579
|
+
}
|
|
12580
|
+
|
|
12581
|
+
@complex model verifiableCredentialRetrieved extends verifiableCredentialRequirementStatus {
|
|
12582
|
+
expiryDateTime: offsetDateTime;
|
|
12583
|
+
}
|
|
12584
|
+
|
|
12585
|
+
@complex model verifiableCredentialSettings {
|
|
12586
|
+
credentialTypes: verifiableCredentialType[] | null;
|
|
12587
|
+
}
|
|
12588
|
+
|
|
12589
|
+
@complex model verifiableCredentialType {
|
|
12590
|
+
credentialType: string | null;
|
|
12591
|
+
issuers: string[] | null;
|
|
12592
|
+
}
|
|
12593
|
+
|
|
12594
|
+
@complex model verifiableCredentialVerified extends verifiableCredentialRequirementStatus {
|
|
12595
|
+
}
|
|
12596
|
+
|
|
12597
|
+
@open
|
|
12598
|
+
@complex model verifiedCredentialClaims {
|
|
12599
|
+
}
|
|
12600
|
+
|
|
12601
|
+
@complex model verifiedCredentialData {
|
|
12602
|
+
authority: string | null;
|
|
12603
|
+
claims: verifiedCredentialClaims | null;
|
|
12604
|
+
type: string[] | null;
|
|
12605
|
+
}
|
|
12606
|
+
|
|
11731
12607
|
@complex model verifiedCustomDomainCertificatesMetadata {
|
|
11732
12608
|
expiryDate: offsetDateTime | null;
|
|
11733
12609
|
issueDate: offsetDateTime | null;
|
|
@@ -12259,6 +13135,10 @@ namespace reference.`microsoft.graph` {
|
|
|
12259
13135
|
* Device restart behavior.
|
|
12260
13136
|
*/
|
|
12261
13137
|
deviceRestartBehavior: win32LobAppRestartBehavior;
|
|
13138
|
+
/**
|
|
13139
|
+
* Indicates whether app-in-use detection is enabled before app enforcement, and if enabled, the action to take when the app is detected to be in-use. Null indicates the feature is not enabled. Possible values are: 'notEnabled', 'fail', 'terminateWithoutUserInteraction', 'terminateWithUserInteraction'.
|
|
13140
|
+
*/
|
|
13141
|
+
inUseBehavior: win32LobAppInUseActionType | null;
|
|
12262
13142
|
/**
|
|
12263
13143
|
* The number of minutes the system will wait for install program to finish. Default value is 60 minutes.
|
|
12264
13144
|
*/
|
|
@@ -12389,6 +13269,24 @@ namespace reference.`microsoft.graph` {
|
|
|
12389
13269
|
scriptContent: string | null;
|
|
12390
13270
|
}
|
|
12391
13271
|
|
|
13272
|
+
/**
|
|
13273
|
+
* A complex type to store process rule data for a Win32 LOB app.
|
|
13274
|
+
*/
|
|
13275
|
+
@complex model win32LobAppProcessRule extends win32LobAppRule {
|
|
13276
|
+
/**
|
|
13277
|
+
* Indicates the process operation type. Default value is 'notConfigured'. Possible values are: 'notConfigured', 'exists'.
|
|
13278
|
+
*/
|
|
13279
|
+
operationType: win32LobAppProcessOperationType;
|
|
13280
|
+
/**
|
|
13281
|
+
* Indicates the display name for the process in the Intune admin console. Example: 'Microsoft Word'.
|
|
13282
|
+
*/
|
|
13283
|
+
processDisplayName: string | null;
|
|
13284
|
+
/**
|
|
13285
|
+
* Indicates the process name to be searched for on a managed device when enforcing a managed app. Example: 'TestApp.exe'.
|
|
13286
|
+
*/
|
|
13287
|
+
processName: string | null;
|
|
13288
|
+
}
|
|
13289
|
+
|
|
12392
13290
|
/**
|
|
12393
13291
|
* Contains product code and version properties to detect a Win32 App
|
|
12394
13292
|
*/
|
|
@@ -12673,6 +13571,78 @@ namespace reference.`microsoft.graph` {
|
|
|
12673
13571
|
useDeviceContext: boolean;
|
|
12674
13572
|
}
|
|
12675
13573
|
|
|
13574
|
+
/**
|
|
13575
|
+
* Contains per-group deployment configuration for a windowsAutoUpdateCatalogApp. These settings control the end-user experience when the app is deployed to a specific group—including whether notifications are shown, how delivery bandwidth is used, when the app must be installed by, and how the device coordinates restarts afterward.
|
|
13576
|
+
*/
|
|
13577
|
+
@complex model windowsAutoUpdateCatalogAppAssignmentSettings extends mobileAppAssignmentSettings {
|
|
13578
|
+
/**
|
|
13579
|
+
* Indicates the priority level for downloading the app content using Delivery Optimization. foreground prioritizes the download over background tasks, which may result in faster installation but higher bandwidth usage. Defaults to notConfigured (background priority) if not specified. When omitted from the request, the service applies notConfigured and the device downloads app content using normal background priority. In National Cloud environments (e.g., US Government, China), Delivery Optimization is not available; the service accepts and stores any value provided, but the device agent ignores it at runtime and delivers content via CDN using background priority regardless of the configured value. Possible values are: notConfigured, foreground, unknownFutureValue.
|
|
13580
|
+
*/
|
|
13581
|
+
deliveryOptimizationPriority: windowsAutoUpdateCatalogAppDeliveryOptimizationPriority;
|
|
13582
|
+
/**
|
|
13583
|
+
* Specifies the deadline by which the app must be installed on the device. When null, the app is offered for immediate installation with no enforced deadline.
|
|
13584
|
+
*/
|
|
13585
|
+
installTimeSettings: windowsAutoUpdateCatalogAppInstallTimeSettings | null;
|
|
13586
|
+
/**
|
|
13587
|
+
* Indicates which notifications the Intune management extension displays to the end user during app installation and restart. Defaults to showAll if not specified. Possible values are: showAll, showReboot, hideAll, unknownFutureValue.
|
|
13588
|
+
*/
|
|
13589
|
+
notificationType: windowsAutoUpdateCatalogAppNotificationType;
|
|
13590
|
+
/**
|
|
13591
|
+
* Specifies the restart coordination behavior after the app is installed—including how long to wait before restarting, when to show a countdown, and how long the user can snooze. When null, no restart coordination is applied (the device may still restart based on the app's deviceRestartBehavior setting). Note: the service accepts restart settings regardless of the app's deviceRestartBehavior value; the device agent determines which settings are actually honored at runtime.
|
|
13592
|
+
*/
|
|
13593
|
+
restartSettings: windowsAutoUpdateCatalogAppRestartSettings | null;
|
|
13594
|
+
}
|
|
13595
|
+
|
|
13596
|
+
/**
|
|
13597
|
+
* Describes how the app installer runs on target devices, including which account context it runs under and how the device handles restarts after installation. When omitted, the service applies default values (runAsAccount = system, deviceRestartBehavior = basedOnReturnCode).
|
|
13598
|
+
*/
|
|
13599
|
+
@complex model windowsAutoUpdateCatalogAppInstallExperience {
|
|
13600
|
+
/**
|
|
13601
|
+
* Indicates how the device handles restarts after the app installation completes. This controls whether the Intune management extension initiates, suppresses, or forces a device restart based on the installer's exit code. Defaults to basedOnReturnCode if not specified. Possible values are: basedOnReturnCode, allow, suppress, force, unknownFutureValue.
|
|
13602
|
+
*/
|
|
13603
|
+
deviceRestartBehavior: windowsAutoUpdateCatalogAppRestartBehavior;
|
|
13604
|
+
/**
|
|
13605
|
+
* Indicates the account context under which the app installer runs on the device. When set to system, the installer runs with elevated privileges in the SYSTEM account context. When set to user, the installer runs in the context of the currently logged-in user. Defaults to system if not specified. Possible values are: system, user.
|
|
13606
|
+
*/
|
|
13607
|
+
runAsAccount: runAsAccountType;
|
|
13608
|
+
}
|
|
13609
|
+
|
|
13610
|
+
/**
|
|
13611
|
+
* Specifies when the app should be installed on target devices. When null or is omitted from the assignment, the app is offered for immediate installation with no enforced deadline.
|
|
13612
|
+
*/
|
|
13613
|
+
@complex model windowsAutoUpdateCatalogAppInstallTimeSettings {
|
|
13614
|
+
/**
|
|
13615
|
+
* The maximum allowed date and time by which the app must be installed on the device. After this deadline, the Intune management extension enforces installation automatically. When null, there is no enforced deadline.
|
|
13616
|
+
*/
|
|
13617
|
+
deadlineDateTime: offsetDateTime | null;
|
|
13618
|
+
/**
|
|
13619
|
+
* The time at which the app should be available for installation on the device. When null, the app is available immediately.
|
|
13620
|
+
*/
|
|
13621
|
+
startDateTime: offsetDateTime | null;
|
|
13622
|
+
/**
|
|
13623
|
+
* Indicates whether the startDateTime and deadlineDateTime values should be interpreted using the device's local time zone. When false, the values are interpreted as UTC. Defaults to false if not specified.
|
|
13624
|
+
*/
|
|
13625
|
+
useLocalTime: boolean;
|
|
13626
|
+
}
|
|
13627
|
+
|
|
13628
|
+
/**
|
|
13629
|
+
* Specifies how the device coordinates a restart after the app is installed. These settings control the grace period before a restart is initiated, when the user sees a countdown notification, and how long the user can defer the restart by snoozing. When null, no restart coordination is applied (the device may still restart based on the app's deviceRestartBehavior setting).
|
|
13630
|
+
*/
|
|
13631
|
+
@complex model windowsAutoUpdateCatalogAppRestartSettings {
|
|
13632
|
+
/**
|
|
13633
|
+
* The number of minutes before the scheduled restart at which a countdown notification is displayed to the user. Must be between 1 and the value of gracePeriodInMinutes. This countdown is non-dismissible and warns the user that a restart is imminent. For example, a value of 15 means the countdown appears 15 minutes before the restart.
|
|
13634
|
+
*/
|
|
13635
|
+
countdownDisplayBeforeRestartInMinutes: int32;
|
|
13636
|
+
/**
|
|
13637
|
+
* The number of minutes the device waits after app installation before initiating a restart. During this period, the user can continue working and save their documents. For example, a value of 1440 means the device waits 24 hours before restarting.
|
|
13638
|
+
*/
|
|
13639
|
+
gracePeriodInMinutes: int32;
|
|
13640
|
+
/**
|
|
13641
|
+
* The number of minutes by which the user can defer (snooze) the restart notification each time they press the snooze button. When null, the snooze option is not available and the user cannot defer the restart. For example, a value of 240 allows the user to defer the restart by 4 hours each time.
|
|
13642
|
+
*/
|
|
13643
|
+
restartNotificationSnoozeDurationInMinutes: int32 | null;
|
|
13644
|
+
}
|
|
13645
|
+
|
|
12676
13646
|
/**
|
|
12677
13647
|
* Windows Defender last scan result
|
|
12678
13648
|
*/
|
|
@@ -14094,6 +15064,371 @@ namespace reference.`microsoft.graph` {
|
|
|
14094
15064
|
@references user: user | null;
|
|
14095
15065
|
}
|
|
14096
15066
|
|
|
15067
|
+
@entity model accessPackage extends entity {
|
|
15068
|
+
catalogId: string | null;
|
|
15069
|
+
createdBy: string | null;
|
|
15070
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
15071
|
+
description: string | null;
|
|
15072
|
+
displayName: string | null;
|
|
15073
|
+
isHidden: boolean | null;
|
|
15074
|
+
isRoleScopesVisible: boolean | null;
|
|
15075
|
+
modifiedBy: string | null;
|
|
15076
|
+
modifiedDateTime: offsetDateTime | null;
|
|
15077
|
+
uniqueName: string | null;
|
|
15078
|
+
@contains accessPackageAssignmentPolicies: accessPackageAssignmentPolicy[];
|
|
15079
|
+
@references accessPackageCatalog: accessPackageCatalog | null;
|
|
15080
|
+
@contains accessPackageResourceRoleScopes: accessPackageResourceRoleScope[];
|
|
15081
|
+
@references accessPackagesIncompatibleWith: accessPackage[];
|
|
15082
|
+
@references incompatibleAccessPackages: accessPackage[];
|
|
15083
|
+
@contains incompatibleGroups: group[];
|
|
15084
|
+
}
|
|
15085
|
+
|
|
15086
|
+
@entity model accessPackageAssignment extends entity {
|
|
15087
|
+
accessPackageId: string | null;
|
|
15088
|
+
assignmentPolicyId: string | null;
|
|
15089
|
+
assignmentState: string | null;
|
|
15090
|
+
assignmentStatus: string | null;
|
|
15091
|
+
catalogId: string | null;
|
|
15092
|
+
customExtensionCalloutInstances: customExtensionCalloutInstance[] | null;
|
|
15093
|
+
expiredDateTime: offsetDateTime | null;
|
|
15094
|
+
isExtended: boolean | null;
|
|
15095
|
+
schedule: requestSchedule | null;
|
|
15096
|
+
targetId: string | null;
|
|
15097
|
+
@contains accessPackage: accessPackage | null;
|
|
15098
|
+
@contains accessPackageAssignmentPolicy: accessPackageAssignmentPolicy | null;
|
|
15099
|
+
@contains accessPackageAssignmentRequests: accessPackageAssignmentRequest[];
|
|
15100
|
+
@contains accessPackageAssignmentResourceRoles: accessPackageAssignmentResourceRole[];
|
|
15101
|
+
@contains target: accessPackageSubject | null;
|
|
15102
|
+
}
|
|
15103
|
+
|
|
15104
|
+
@privatePreview("MicrosofEntitlementManagementCustomextensions")
|
|
15105
|
+
@entity model accessPackageAssignmentPolicy extends entity {
|
|
15106
|
+
accessPackageId: string | null;
|
|
15107
|
+
accessPackageNotificationSettings: accessPackageNotificationSettings | null;
|
|
15108
|
+
accessReviewSettings: assignmentReviewSettings | null;
|
|
15109
|
+
canExtend: boolean | null;
|
|
15110
|
+
createdBy: string | null;
|
|
15111
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
15112
|
+
description: string | null;
|
|
15113
|
+
displayName: string | null;
|
|
15114
|
+
durationInDays: int32 | null;
|
|
15115
|
+
expirationDateTime: offsetDateTime | null;
|
|
15116
|
+
modifiedBy: string | null;
|
|
15117
|
+
modifiedDateTime: offsetDateTime | null;
|
|
15118
|
+
questions: accessPackageQuestion[] | null;
|
|
15119
|
+
requestApprovalSettings: approvalSettings | null;
|
|
15120
|
+
requestorSettings: requestorSettings | null;
|
|
15121
|
+
verifiableCredentialSettings: verifiableCredentialSettings | null;
|
|
15122
|
+
@references accessPackage: accessPackage | null;
|
|
15123
|
+
@contains accessPackageCatalog: accessPackageCatalog | null;
|
|
15124
|
+
@references customExtensionHandlers: customExtensionHandler[];
|
|
15125
|
+
@references customExtensionStageSettings: customExtensionStageSetting[];
|
|
15126
|
+
}
|
|
15127
|
+
|
|
15128
|
+
@privatePreview("MicrosofEntitlementManagementCustomextensions")
|
|
15129
|
+
@entity model accessPackageAssignmentRequest extends entity {
|
|
15130
|
+
answers: accessPackageAnswer[] | null;
|
|
15131
|
+
completedDate: offsetDateTime | null;
|
|
15132
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
15133
|
+
customExtensionCalloutInstances: customExtensionCalloutInstance[] | null;
|
|
15134
|
+
customExtensionHandlerInstances: customExtensionHandlerInstance[] | null;
|
|
15135
|
+
expirationDateTime: offsetDateTime | null;
|
|
15136
|
+
history: requestActivity[] | null;
|
|
15137
|
+
isValidationOnly: boolean | null;
|
|
15138
|
+
justification: string | null;
|
|
15139
|
+
requestState: string | null;
|
|
15140
|
+
requestStatus: string | null;
|
|
15141
|
+
requestType: string | null;
|
|
15142
|
+
schedule: requestSchedule | null;
|
|
15143
|
+
verifiedCredentialsData: verifiedCredentialData[] | null;
|
|
15144
|
+
@references accessPackage: accessPackage | null;
|
|
15145
|
+
@contains accessPackageAssignment: accessPackageAssignment | null;
|
|
15146
|
+
@contains requestor: accessPackageSubject | null;
|
|
15147
|
+
}
|
|
15148
|
+
|
|
15149
|
+
@entity model accessPackageAssignmentRequestWorkflowExtension extends customCalloutExtension {
|
|
15150
|
+
callbackConfiguration: customExtensionCallbackConfiguration | null;
|
|
15151
|
+
createdBy: string | null;
|
|
15152
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
15153
|
+
lastModifiedBy: string | null;
|
|
15154
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
15155
|
+
}
|
|
15156
|
+
|
|
15157
|
+
@entity model accessPackageAssignmentResourceRole extends entity {
|
|
15158
|
+
originId: string | null;
|
|
15159
|
+
originSystem: string | null;
|
|
15160
|
+
status: string | null;
|
|
15161
|
+
@contains accessPackageAssignments: accessPackageAssignment[];
|
|
15162
|
+
@contains accessPackageResourceRole: accessPackageResourceRole | null;
|
|
15163
|
+
@contains accessPackageResourceScope: accessPackageResourceScope | null;
|
|
15164
|
+
@contains accessPackageSubject: accessPackageSubject | null;
|
|
15165
|
+
}
|
|
15166
|
+
|
|
15167
|
+
@entity model accessPackageAssignmentWorkflowExtension extends customCalloutExtension {
|
|
15168
|
+
callbackConfiguration: customExtensionCallbackConfiguration | null;
|
|
15169
|
+
createdBy: string | null;
|
|
15170
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
15171
|
+
lastModifiedBy: string | null;
|
|
15172
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
15173
|
+
}
|
|
15174
|
+
|
|
15175
|
+
@privatePreview("MicrosofEntitlementManagementCustomextensions")
|
|
15176
|
+
@entity model accessPackageCatalog extends entity {
|
|
15177
|
+
catalogStatus: string | null;
|
|
15178
|
+
catalogType: string | null;
|
|
15179
|
+
createdBy: string | null;
|
|
15180
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
15181
|
+
description: string | null;
|
|
15182
|
+
displayName: string | null;
|
|
15183
|
+
isExternallyVisible: boolean | null;
|
|
15184
|
+
modifiedBy: string | null;
|
|
15185
|
+
modifiedDateTime: offsetDateTime | null;
|
|
15186
|
+
privilegeLevel: privilegeLevel;
|
|
15187
|
+
uniqueName: string | null;
|
|
15188
|
+
@contains accessPackageCustomWorkflowExtensions: customCalloutExtension[];
|
|
15189
|
+
@contains accessPackageResourceRoles: accessPackageResourceRole[];
|
|
15190
|
+
@contains accessPackageResources: accessPackageResource[];
|
|
15191
|
+
@contains accessPackageResourceScopes: accessPackageResourceScope[];
|
|
15192
|
+
@contains accessPackages: accessPackage[];
|
|
15193
|
+
@contains customAccessPackageWorkflowExtensions: customAccessPackageWorkflowExtension[];
|
|
15194
|
+
}
|
|
15195
|
+
|
|
15196
|
+
@entity model accessPackageResource extends entity {
|
|
15197
|
+
addedBy: string | null;
|
|
15198
|
+
addedOn: offsetDateTime | null;
|
|
15199
|
+
attributes: accessPackageResourceAttribute[] | null;
|
|
15200
|
+
description: string | null;
|
|
15201
|
+
displayName: string | null;
|
|
15202
|
+
isPendingOnboarding: boolean | null;
|
|
15203
|
+
originId: string | null;
|
|
15204
|
+
originSystem: string | null;
|
|
15205
|
+
resourceType: string | null;
|
|
15206
|
+
url: string | null;
|
|
15207
|
+
@references accessPackageResourceEnvironment: accessPackageResourceEnvironment | null;
|
|
15208
|
+
@contains accessPackageResourceRoles: accessPackageResourceRole[];
|
|
15209
|
+
@contains accessPackageResourceScopes: accessPackageResourceScope[];
|
|
15210
|
+
@references externalOriginResourceConnector: externalOriginResourceConnector | null;
|
|
15211
|
+
}
|
|
15212
|
+
|
|
15213
|
+
@entity model accessPackageResourceEnvironment extends entity {
|
|
15214
|
+
connectionInfo: connectionInfo | null;
|
|
15215
|
+
createdBy: string | null;
|
|
15216
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
15217
|
+
description: string | null;
|
|
15218
|
+
displayName: string | null;
|
|
15219
|
+
isDefaultEnvironment: boolean | null;
|
|
15220
|
+
modifiedBy: string | null;
|
|
15221
|
+
modifiedDateTime: offsetDateTime | null;
|
|
15222
|
+
originId: string;
|
|
15223
|
+
originSystem: string;
|
|
15224
|
+
@references accessPackageResources: accessPackageResource[];
|
|
15225
|
+
}
|
|
15226
|
+
|
|
15227
|
+
@entity model accessPackageResourceRequest extends entity {
|
|
15228
|
+
catalogId: string | null;
|
|
15229
|
+
executeImmediately: boolean | null;
|
|
15230
|
+
expirationDateTime: offsetDateTime | null;
|
|
15231
|
+
isValidationOnly: boolean | null;
|
|
15232
|
+
justification: string | null;
|
|
15233
|
+
requestState: string | null;
|
|
15234
|
+
requestStatus: string | null;
|
|
15235
|
+
requestType: string | null;
|
|
15236
|
+
@references accessPackageResource: accessPackageResource | null;
|
|
15237
|
+
@contains requestor: accessPackageSubject | null;
|
|
15238
|
+
}
|
|
15239
|
+
|
|
15240
|
+
@entity model accessPackageResourceRole extends entity {
|
|
15241
|
+
description: string | null;
|
|
15242
|
+
displayName: string | null;
|
|
15243
|
+
originId: string | null;
|
|
15244
|
+
originSystem: string | null;
|
|
15245
|
+
type: roleType | null;
|
|
15246
|
+
@contains accessPackageResource: accessPackageResource | null;
|
|
15247
|
+
}
|
|
15248
|
+
|
|
15249
|
+
@entity model accessPackageResourceRoleScope extends entity {
|
|
15250
|
+
createdBy: string | null;
|
|
15251
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
15252
|
+
modifiedBy: string | null;
|
|
15253
|
+
modifiedDateTime: offsetDateTime | null;
|
|
15254
|
+
@contains accessPackageResourceRole: accessPackageResourceRole | null;
|
|
15255
|
+
@contains accessPackageResourceScope: accessPackageResourceScope | null;
|
|
15256
|
+
}
|
|
15257
|
+
|
|
15258
|
+
@entity model accessPackageResourceScope extends entity {
|
|
15259
|
+
description: string | null;
|
|
15260
|
+
displayName: string | null;
|
|
15261
|
+
isRootScope: boolean | null;
|
|
15262
|
+
originId: string | null;
|
|
15263
|
+
originSystem: string | null;
|
|
15264
|
+
roleOriginId: string | null;
|
|
15265
|
+
url: string | null;
|
|
15266
|
+
@contains accessPackageResource: accessPackageResource | null;
|
|
15267
|
+
}
|
|
15268
|
+
|
|
15269
|
+
@entity model accessPackageSubject extends entity {
|
|
15270
|
+
altSecId: string | null;
|
|
15271
|
+
cleanupScheduledDateTime: offsetDateTime | null;
|
|
15272
|
+
connectedOrganizationId: string | null;
|
|
15273
|
+
displayName: string | null;
|
|
15274
|
+
email: string | null;
|
|
15275
|
+
objectId: string | null;
|
|
15276
|
+
onPremisesSecurityIdentifier: string | null;
|
|
15277
|
+
principalName: string | null;
|
|
15278
|
+
subjectLifecycle: accessPackageSubjectLifecycle | null;
|
|
15279
|
+
type: string | null;
|
|
15280
|
+
@references connectedOrganization: connectedOrganization | null;
|
|
15281
|
+
}
|
|
15282
|
+
|
|
15283
|
+
@entity model accessPackageSuggestion extends entity {
|
|
15284
|
+
reasons: accessPackageSuggestionReason[];
|
|
15285
|
+
@references accessPackage: availableAccessPackage | null;
|
|
15286
|
+
}
|
|
15287
|
+
|
|
15288
|
+
@entity model accessReview extends entity {
|
|
15289
|
+
businessFlowTemplateId: string;
|
|
15290
|
+
createdBy: userIdentity | null;
|
|
15291
|
+
description: string | null;
|
|
15292
|
+
displayName: string;
|
|
15293
|
+
endDateTime: offsetDateTime;
|
|
15294
|
+
reviewedEntity: identity | null;
|
|
15295
|
+
reviewerType: string | null;
|
|
15296
|
+
settings: accessReviewSettings | null;
|
|
15297
|
+
startDateTime: offsetDateTime;
|
|
15298
|
+
status: string | null;
|
|
15299
|
+
@contains decisions: accessReviewDecision[];
|
|
15300
|
+
@contains instances: accessReview[];
|
|
15301
|
+
@contains myDecisions: accessReviewDecision[];
|
|
15302
|
+
@contains reviewers: accessReviewReviewer[];
|
|
15303
|
+
}
|
|
15304
|
+
|
|
15305
|
+
@open
|
|
15306
|
+
@entity model accessReviewDecision extends entity {
|
|
15307
|
+
accessRecommendation: string | null;
|
|
15308
|
+
accessReviewId: string | null;
|
|
15309
|
+
appliedBy: userIdentity | null;
|
|
15310
|
+
appliedDateTime: offsetDateTime | null;
|
|
15311
|
+
applyResult: string | null;
|
|
15312
|
+
justification: string | null;
|
|
15313
|
+
reviewedBy: userIdentity | null;
|
|
15314
|
+
reviewedDateTime: offsetDateTime | null;
|
|
15315
|
+
reviewResult: string | null;
|
|
15316
|
+
}
|
|
15317
|
+
|
|
15318
|
+
@entity model accessReviewHistoryDefinition extends entity {
|
|
15319
|
+
createdBy: userIdentity;
|
|
15320
|
+
@computed createdDateTime: offsetDateTime;
|
|
15321
|
+
decisions: accessReviewHistoryDecisionFilter[] | null;
|
|
15322
|
+
displayName: string;
|
|
15323
|
+
|
|
15324
|
+
@graphDeprecated("AccessReviewReportBreakingChanges")
|
|
15325
|
+
downloadUri: string | null;
|
|
15326
|
+
|
|
15327
|
+
@graphDeprecated("AccessReviewReportBreakingChanges")
|
|
15328
|
+
fulfilledDateTime: offsetDateTime | null;
|
|
15329
|
+
reviewHistoryPeriodEndDateTime: offsetDateTime;
|
|
15330
|
+
reviewHistoryPeriodStartDateTime: offsetDateTime;
|
|
15331
|
+
scheduleSettings: accessReviewHistoryScheduleSettings | null;
|
|
15332
|
+
scopes: accessReviewScope[];
|
|
15333
|
+
status: accessReviewHistoryStatus | null;
|
|
15334
|
+
@contains instances: accessReviewHistoryInstance[];
|
|
15335
|
+
}
|
|
15336
|
+
|
|
15337
|
+
@entity model accessReviewHistoryInstance extends entity {
|
|
15338
|
+
downloadUri: string | null;
|
|
15339
|
+
expirationDateTime: offsetDateTime;
|
|
15340
|
+
fulfilledDateTime: offsetDateTime | null;
|
|
15341
|
+
reviewHistoryPeriodEndDateTime: offsetDateTime | null;
|
|
15342
|
+
reviewHistoryPeriodStartDateTime: offsetDateTime | null;
|
|
15343
|
+
runDateTime: offsetDateTime;
|
|
15344
|
+
status: accessReviewHistoryStatus | null;
|
|
15345
|
+
}
|
|
15346
|
+
|
|
15347
|
+
@entity model accessReviewInstance extends entity {
|
|
15348
|
+
endDateTime: offsetDateTime | null;
|
|
15349
|
+
errors: accessReviewError[] | null;
|
|
15350
|
+
fallbackReviewers: accessReviewReviewerScope[] | null;
|
|
15351
|
+
reviewers: accessReviewReviewerScope[] | null;
|
|
15352
|
+
scope: accessReviewScope | null;
|
|
15353
|
+
startDateTime: offsetDateTime | null;
|
|
15354
|
+
status: string | null;
|
|
15355
|
+
@contains contactedReviewers: accessReviewReviewer[];
|
|
15356
|
+
@contains decisions: accessReviewInstanceDecisionItem[];
|
|
15357
|
+
@references definition: accessReviewScheduleDefinition | null;
|
|
15358
|
+
@contains stages: accessReviewStage[];
|
|
15359
|
+
}
|
|
15360
|
+
|
|
15361
|
+
@open
|
|
15362
|
+
@entity model accessReviewInstanceDecisionItem extends entity {
|
|
15363
|
+
accessReviewId: string;
|
|
15364
|
+
appliedBy: userIdentity | null;
|
|
15365
|
+
appliedDateTime: offsetDateTime | null;
|
|
15366
|
+
applyDescription: string | null;
|
|
15367
|
+
applyResult: string | null;
|
|
15368
|
+
decision: string | null;
|
|
15369
|
+
justification: string | null;
|
|
15370
|
+
permission: accessReviewInstanceDecisionItemPermission | null;
|
|
15371
|
+
principal: identity | null;
|
|
15372
|
+
principalLink: string | null;
|
|
15373
|
+
principalResourceMembership: decisionItemPrincipalResourceMembership | null;
|
|
15374
|
+
recommendation: string | null;
|
|
15375
|
+
resource: accessReviewInstanceDecisionItemResource | null;
|
|
15376
|
+
resourceLink: string | null;
|
|
15377
|
+
reviewedBy: userIdentity | null;
|
|
15378
|
+
reviewedDateTime: offsetDateTime | null;
|
|
15379
|
+
target: accessReviewInstanceDecisionItemTarget | null;
|
|
15380
|
+
@contains insights: governanceInsight[];
|
|
15381
|
+
@contains instance: accessReviewInstance | null;
|
|
15382
|
+
}
|
|
15383
|
+
|
|
15384
|
+
@entity model accessReviewPolicy extends entity {
|
|
15385
|
+
description: string | null;
|
|
15386
|
+
displayName: string;
|
|
15387
|
+
isGroupOwnerManagementEnabled: boolean;
|
|
15388
|
+
}
|
|
15389
|
+
|
|
15390
|
+
@entity model accessReviewReviewer extends entity {
|
|
15391
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
15392
|
+
displayName: string | null;
|
|
15393
|
+
userPrincipalName: string | null;
|
|
15394
|
+
}
|
|
15395
|
+
|
|
15396
|
+
@entity model accessReviewScheduleDefinition extends entity {
|
|
15397
|
+
additionalNotificationRecipients: accessReviewNotificationRecipientItem[] | null;
|
|
15398
|
+
backupReviewers: accessReviewReviewerScope[] | null;
|
|
15399
|
+
createdBy: userIdentity | null;
|
|
15400
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
15401
|
+
descriptionForAdmins: string | null;
|
|
15402
|
+
descriptionForReviewers: string | null;
|
|
15403
|
+
displayName: string | null;
|
|
15404
|
+
fallbackReviewers: accessReviewReviewerScope[] | null;
|
|
15405
|
+
instanceEnumerationScope: accessReviewScope | null;
|
|
15406
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
15407
|
+
reviewers: accessReviewReviewerScope[] | null;
|
|
15408
|
+
scope: accessReviewScope | null;
|
|
15409
|
+
settings: accessReviewScheduleSettings | null;
|
|
15410
|
+
stageSettings: accessReviewStageSettings[] | null;
|
|
15411
|
+
status: string | null;
|
|
15412
|
+
@contains instances: accessReviewInstance[];
|
|
15413
|
+
}
|
|
15414
|
+
|
|
15415
|
+
@entity model accessReviewSet extends entity {
|
|
15416
|
+
@contains decisions: accessReviewInstanceDecisionItem[];
|
|
15417
|
+
@contains definitions: accessReviewScheduleDefinition[];
|
|
15418
|
+
@contains historyDefinitions: accessReviewHistoryDefinition[];
|
|
15419
|
+
@contains instances: accessReviewInstance[];
|
|
15420
|
+
@contains policy: accessReviewPolicy | null;
|
|
15421
|
+
}
|
|
15422
|
+
|
|
15423
|
+
@entity model accessReviewStage extends entity {
|
|
15424
|
+
endDateTime: offsetDateTime | null;
|
|
15425
|
+
fallbackReviewers: accessReviewReviewerScope[] | null;
|
|
15426
|
+
reviewers: accessReviewReviewerScope[] | null;
|
|
15427
|
+
startDateTime: offsetDateTime | null;
|
|
15428
|
+
status: string | null;
|
|
15429
|
+
@contains decisions: accessReviewInstanceDecisionItem[];
|
|
15430
|
+
}
|
|
15431
|
+
|
|
14097
15432
|
/**
|
|
14098
15433
|
* Windows Autopilot Deployment Profile
|
|
14099
15434
|
*/
|
|
@@ -14133,6 +15468,15 @@ namespace reference.`microsoft.graph` {
|
|
|
14133
15468
|
@contains sharepoint: sharepoint | null;
|
|
14134
15469
|
}
|
|
14135
15470
|
|
|
15471
|
+
@entity model adminConsentRequestPolicy extends entity {
|
|
15472
|
+
isEnabled: boolean;
|
|
15473
|
+
notifyReviewers: boolean;
|
|
15474
|
+
remindersEnabled: boolean;
|
|
15475
|
+
requestDurationInDays: int32;
|
|
15476
|
+
reviewers: accessReviewReviewerScope[] | null;
|
|
15477
|
+
version: int32;
|
|
15478
|
+
}
|
|
15479
|
+
|
|
14136
15480
|
@open
|
|
14137
15481
|
@entity model administrativeUnit extends directoryObject {
|
|
14138
15482
|
description: string | null;
|
|
@@ -14338,6 +15682,24 @@ namespace reference.`microsoft.graph` {
|
|
|
14338
15682
|
isActive: boolean | null;
|
|
14339
15683
|
}
|
|
14340
15684
|
|
|
15685
|
+
/**
|
|
15686
|
+
* Schema describing an Android application's custom configurations.
|
|
15687
|
+
*/
|
|
15688
|
+
@entity model androidAppConfigurationSchema extends entity {
|
|
15689
|
+
/**
|
|
15690
|
+
* UTF8 encoded byte array containing example JSON string conforming to this schema that demonstrates how to set the configuration for this app
|
|
15691
|
+
*/
|
|
15692
|
+
exampleJson: binary | null;
|
|
15693
|
+
/**
|
|
15694
|
+
* Collection of items each representing a named configuration option in the schema. It contains a flat list of all configuration.
|
|
15695
|
+
*/
|
|
15696
|
+
nestedSchemaItems: appConfigurationSchemaItemType[] | null;
|
|
15697
|
+
/**
|
|
15698
|
+
* Collection of items each representing a named configuration option in the schema. It only contains the root-level configuration.
|
|
15699
|
+
*/
|
|
15700
|
+
schemaItems: appConfigurationSchemaItemType[] | null;
|
|
15701
|
+
}
|
|
15702
|
+
|
|
14341
15703
|
/**
|
|
14342
15704
|
* Android certificate profile base.
|
|
14343
15705
|
*/
|
|
@@ -15557,6 +16919,10 @@ namespace reference.`microsoft.graph` {
|
|
|
15557
16919
|
* Custom data to define key/value pairs specific to a VPN provider. This collection can contain a maximum of 25 elements.
|
|
15558
16920
|
*/
|
|
15559
16921
|
customKeyValueData: keyValuePair[] | null;
|
|
16922
|
+
/**
|
|
16923
|
+
* List of app package names that will be able to access the network directly when VPN is in lockdown mode but not connected.
|
|
16924
|
+
*/
|
|
16925
|
+
lockdownExclusionList: string[] | null;
|
|
15560
16926
|
/**
|
|
15561
16927
|
* Microsoft Tunnel site ID.
|
|
15562
16928
|
*/
|
|
@@ -17939,6 +19305,10 @@ namespace reference.`microsoft.graph` {
|
|
|
17939
19305
|
* Fingerprint is a string that will be used to verify the VPN server can be trusted, which is only applicable when connection type is Check Point Capsule VPN.
|
|
17940
19306
|
*/
|
|
17941
19307
|
fingerprint: string | null;
|
|
19308
|
+
/**
|
|
19309
|
+
* List of app package names that will be able to access the network directly when VPN is in lockdown mode but not connected.
|
|
19310
|
+
*/
|
|
19311
|
+
lockdownExclusionList: string[] | null;
|
|
17942
19312
|
/**
|
|
17943
19313
|
* Microsoft Tunnel site ID.
|
|
17944
19314
|
*/
|
|
@@ -18356,6 +19726,18 @@ namespace reference.`microsoft.graph` {
|
|
|
18356
19726
|
@contains teamsApps: teamsApp[];
|
|
18357
19727
|
}
|
|
18358
19728
|
|
|
19729
|
+
@entity model appConsentApprovalRoute extends entity {
|
|
19730
|
+
@contains appConsentRequests: appConsentRequest[];
|
|
19731
|
+
}
|
|
19732
|
+
|
|
19733
|
+
@entity model appConsentRequest extends entity {
|
|
19734
|
+
appDisplayName: string | null;
|
|
19735
|
+
appId: string;
|
|
19736
|
+
consentType: string | null;
|
|
19737
|
+
pendingScopes: appConsentRequestScope[] | null;
|
|
19738
|
+
@contains userConsentRequests: userConsentRequest[];
|
|
19739
|
+
}
|
|
19740
|
+
|
|
18359
19741
|
/**
|
|
18360
19742
|
* Apple device features configuration profile.
|
|
18361
19743
|
*/
|
|
@@ -18586,9 +19968,11 @@ namespace reference.`microsoft.graph` {
|
|
|
18586
19968
|
identifierUris: string[];
|
|
18587
19969
|
info: informationalUrl | null;
|
|
18588
19970
|
isDeviceOnlyAuthSupported: boolean | null;
|
|
19971
|
+
isDisabled: boolean | null;
|
|
18589
19972
|
isFallbackPublicClient: boolean | null;
|
|
18590
19973
|
keyCredentials: keyCredential[];
|
|
18591
19974
|
logo: stream;
|
|
19975
|
+
managerApplications: guid;
|
|
18592
19976
|
notes: string | null;
|
|
18593
19977
|
onPremisesPublishing: onPremisesPublishing | null;
|
|
18594
19978
|
optionalClaims: optionalClaims | null;
|
|
@@ -18690,6 +20074,32 @@ namespace reference.`microsoft.graph` {
|
|
|
18690
20074
|
resourceId: guid | null;
|
|
18691
20075
|
}
|
|
18692
20076
|
|
|
20077
|
+
@entity model approval extends entity {
|
|
20078
|
+
@references request: request | null;
|
|
20079
|
+
@contains steps: approvalStep[];
|
|
20080
|
+
}
|
|
20081
|
+
|
|
20082
|
+
@entity model approvalStep extends entity {
|
|
20083
|
+
assignedToMe: boolean | null;
|
|
20084
|
+
displayName: string | null;
|
|
20085
|
+
justification: string | null;
|
|
20086
|
+
reviewedBy: identity | null;
|
|
20087
|
+
reviewedDateTime: offsetDateTime | null;
|
|
20088
|
+
reviewResult: string | null;
|
|
20089
|
+
status: string | null;
|
|
20090
|
+
}
|
|
20091
|
+
|
|
20092
|
+
@entity model approvalWorkflowProvider extends entity {
|
|
20093
|
+
displayName: string;
|
|
20094
|
+
@contains businessFlows: businessFlow[];
|
|
20095
|
+
@contains businessFlowsWithRequestsAwaitingMyDecision: businessFlow[];
|
|
20096
|
+
@contains policyTemplates: governancePolicyTemplate[];
|
|
20097
|
+
}
|
|
20098
|
+
|
|
20099
|
+
@entity model approvedClientApp extends entity {
|
|
20100
|
+
displayName: string | null;
|
|
20101
|
+
}
|
|
20102
|
+
|
|
18693
20103
|
@entity model appScope extends entity {
|
|
18694
20104
|
displayName: string | null;
|
|
18695
20105
|
type: string | null;
|
|
@@ -18963,6 +20373,12 @@ namespace reference.`microsoft.graph` {
|
|
|
18963
20373
|
permissionGrantPolicyIdsAssignedToDefaultUserRole: string[] | null;
|
|
18964
20374
|
}
|
|
18965
20375
|
|
|
20376
|
+
@entity model availableAccessPackage extends entity {
|
|
20377
|
+
description: string | null;
|
|
20378
|
+
displayName: string | null;
|
|
20379
|
+
@references resourceRoleScopes: accessPackageResourceRoleScope[];
|
|
20380
|
+
}
|
|
20381
|
+
|
|
18966
20382
|
@entity model azureADAuthentication extends entity {
|
|
18967
20383
|
attainments: serviceLevelAgreementAttainment[];
|
|
18968
20384
|
}
|
|
@@ -19019,6 +20435,23 @@ namespace reference.`microsoft.graph` {
|
|
|
19019
20435
|
@entity model bulkUpload extends entity {
|
|
19020
20436
|
}
|
|
19021
20437
|
|
|
20438
|
+
@open
|
|
20439
|
+
@entity model businessFlow extends entity {
|
|
20440
|
+
customData: string | null;
|
|
20441
|
+
deDuplicationId: string | null;
|
|
20442
|
+
description: string | null;
|
|
20443
|
+
displayName: string | null;
|
|
20444
|
+
policy: governancePolicy | null;
|
|
20445
|
+
policyTemplateId: string | null;
|
|
20446
|
+
recordVersion: string | null;
|
|
20447
|
+
schemaId: string | null;
|
|
20448
|
+
settings: businessFlowSettings | null;
|
|
20449
|
+
}
|
|
20450
|
+
|
|
20451
|
+
@entity model businessFlowTemplate extends entity {
|
|
20452
|
+
displayName: string | null;
|
|
20453
|
+
}
|
|
20454
|
+
|
|
19022
20455
|
@entity model calendar extends entity {
|
|
19023
20456
|
allowedOnlineMeetingProviders: onlineMeetingProviderType[] | null;
|
|
19024
20457
|
calendarGroupId: string | null;
|
|
@@ -19212,6 +20645,7 @@ namespace reference.`microsoft.graph` {
|
|
|
19212
20645
|
@contains filesFolder: driveItem | null;
|
|
19213
20646
|
@contains members: conversationMember[];
|
|
19214
20647
|
@contains messages: chatMessage[];
|
|
20648
|
+
@contains planner: teamsChannelPlanner | null;
|
|
19215
20649
|
@contains sharedWithTeams: sharedWithChannelTeamInfo[];
|
|
19216
20650
|
@contains tabs: teamsTab[];
|
|
19217
20651
|
}
|
|
@@ -19307,7 +20741,7 @@ namespace reference.`microsoft.graph` {
|
|
|
19307
20741
|
*/
|
|
19308
20742
|
@entity model cloudCertificationAuthority extends entity {
|
|
19309
20743
|
/**
|
|
19310
|
-
*
|
|
20744
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.certificateDownloadUrl instead.
|
|
19311
20745
|
*/
|
|
19312
20746
|
certificateDownloadUrl: string | null;
|
|
19313
20747
|
/**
|
|
@@ -19315,11 +20749,11 @@ namespace reference.`microsoft.graph` {
|
|
|
19315
20749
|
*/
|
|
19316
20750
|
certificateKeySize: cloudCertificationAuthorityCertificateKeySize;
|
|
19317
20751
|
/**
|
|
19318
|
-
*
|
|
20752
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.certificateRevocationListUrl instead.
|
|
19319
20753
|
*/
|
|
19320
20754
|
certificateRevocationListUrl: string | null;
|
|
19321
20755
|
/**
|
|
19322
|
-
*
|
|
20756
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.certificateSigningRequest instead.
|
|
19323
20757
|
*/
|
|
19324
20758
|
certificateSigningRequest: string | null;
|
|
19325
20759
|
/**
|
|
@@ -19327,7 +20761,7 @@ namespace reference.`microsoft.graph` {
|
|
|
19327
20761
|
*/
|
|
19328
20762
|
certificationAuthorityIssuerId: string | null;
|
|
19329
20763
|
/**
|
|
19330
|
-
*
|
|
20764
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.certificationAuthorityIssuerUri instead.
|
|
19331
20765
|
*/
|
|
19332
20766
|
certificationAuthorityIssuerUri: string | null;
|
|
19333
20767
|
/**
|
|
@@ -19367,9 +20801,13 @@ namespace reference.`microsoft.graph` {
|
|
|
19367
20801
|
*/
|
|
19368
20802
|
eTag: string | null;
|
|
19369
20803
|
extendedKeyUsages: extendedKeyUsage[] | null;
|
|
20804
|
+
/**
|
|
20805
|
+
* The geographic region where a cloud certification authority (CA) is hosted. Read-only.
|
|
20806
|
+
*/
|
|
20807
|
+
geographicRegion: string | null;
|
|
19370
20808
|
issuerCommonName: string | null;
|
|
19371
20809
|
/**
|
|
19372
|
-
*
|
|
20810
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.keyPlatform instead.
|
|
19373
20811
|
*/
|
|
19374
20812
|
keyPlatform: cloudCertificationAuthorityKeyPlatformType;
|
|
19375
20813
|
/**
|
|
@@ -19381,7 +20819,7 @@ namespace reference.`microsoft.graph` {
|
|
|
19381
20819
|
*/
|
|
19382
20820
|
localityName: string | null;
|
|
19383
20821
|
/**
|
|
19384
|
-
*
|
|
20822
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.ocspResponderUri instead.
|
|
19385
20823
|
*/
|
|
19386
20824
|
ocspResponderUri: string | null;
|
|
19387
20825
|
/**
|
|
@@ -19401,11 +20839,11 @@ namespace reference.`microsoft.graph` {
|
|
|
19401
20839
|
*/
|
|
19402
20840
|
rootCertificateCommonName: string | null;
|
|
19403
20841
|
/**
|
|
19404
|
-
*
|
|
20842
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.scepServerUrl instead.
|
|
19405
20843
|
*/
|
|
19406
20844
|
scepServerUrl: string | null;
|
|
19407
20845
|
/**
|
|
19408
|
-
*
|
|
20846
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.serialNumber instead.
|
|
19409
20847
|
*/
|
|
19410
20848
|
serialNumber: string | null;
|
|
19411
20849
|
/**
|
|
@@ -19413,15 +20851,15 @@ namespace reference.`microsoft.graph` {
|
|
|
19413
20851
|
*/
|
|
19414
20852
|
stateName: string | null;
|
|
19415
20853
|
/**
|
|
19416
|
-
*
|
|
20854
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.subjectName instead.
|
|
19417
20855
|
*/
|
|
19418
20856
|
subjectName: string | null;
|
|
19419
20857
|
/**
|
|
19420
|
-
*
|
|
20858
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.thumbprint instead.
|
|
19421
20859
|
*/
|
|
19422
20860
|
thumbprint: string | null;
|
|
19423
20861
|
/**
|
|
19424
|
-
*
|
|
20862
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.validityEndDateTime instead.
|
|
19425
20863
|
*/
|
|
19426
20864
|
validityEndDateTime: offsetDateTime | null;
|
|
19427
20865
|
/**
|
|
@@ -19429,17 +20867,25 @@ namespace reference.`microsoft.graph` {
|
|
|
19429
20867
|
*/
|
|
19430
20868
|
validityPeriodInYears: int32;
|
|
19431
20869
|
/**
|
|
19432
|
-
*
|
|
20870
|
+
* Deprecated: Starting May 2026, use cloudCertificationAuthorityVersion.validityStartDateTime instead.
|
|
19433
20871
|
*/
|
|
19434
20872
|
validityStartDateTime: offsetDateTime | null;
|
|
19435
20873
|
/**
|
|
19436
|
-
*
|
|
20874
|
+
* Deprecated: Starting May 2026, use activeVersion.versionNumber instead.
|
|
19437
20875
|
*/
|
|
19438
20876
|
versionNumber: int32;
|
|
20877
|
+
/**
|
|
20878
|
+
* The currently active certification authority version. This navigation property provides direct access to the active version's details including certificate information, URLs, and validity periods. The active version is automatically included in the default response when retrieving a certification authority entity without requiring $expand. Read-only.
|
|
20879
|
+
*/
|
|
20880
|
+
@references activeVersion: cloudCertificationAuthorityVersion | null;
|
|
19439
20881
|
/**
|
|
19440
20882
|
* Required OData property to expose leaf certificate API.
|
|
19441
20883
|
*/
|
|
19442
20884
|
@references cloudCertificationAuthorityLeafCertificate: cloudCertificationAuthorityLeafCertificate[];
|
|
20885
|
+
/**
|
|
20886
|
+
* The collection of all certification authority versions, including active, staged, retired, and expired versions. This navigation property provides access to the full version history of the certification authority. Use $expand=versions to include this collection in the response. Read-only.
|
|
20887
|
+
*/
|
|
20888
|
+
@references versions: cloudCertificationAuthorityVersion[];
|
|
19443
20889
|
}
|
|
19444
20890
|
|
|
19445
20891
|
/**
|
|
@@ -19454,6 +20900,10 @@ namespace reference.`microsoft.graph` {
|
|
|
19454
20900
|
* The URI of the certification authority that issued the certificate. Read-only.
|
|
19455
20901
|
*/
|
|
19456
20902
|
certificationAuthorityIssuerUri: string | null;
|
|
20903
|
+
/**
|
|
20904
|
+
* The version number of the certification authority that issued this leaf certificate. Read-only.
|
|
20905
|
+
*/
|
|
20906
|
+
certificationAuthorityVersionNumber: int32;
|
|
19457
20907
|
/**
|
|
19458
20908
|
* URL to find the relevant Certificate Revocation List for this certificate. Read-only.
|
|
19459
20909
|
*/
|
|
@@ -19519,6 +20969,88 @@ namespace reference.`microsoft.graph` {
|
|
|
19519
20969
|
* The start date time of the validity period of a certificate. Certificates cannot be used before this date time as they are not yet valid. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Nullable. Read-only. Supports $orderby.
|
|
19520
20970
|
*/
|
|
19521
20971
|
validityStartDateTime: offsetDateTime | null;
|
|
20972
|
+
/**
|
|
20973
|
+
* The certification authority version that issued this leaf certificate. Read-only.
|
|
20974
|
+
*/
|
|
20975
|
+
@references cloudCertificationAuthorityVersion: cloudCertificationAuthorityVersion | null;
|
|
20976
|
+
}
|
|
20977
|
+
|
|
20978
|
+
/**
|
|
20979
|
+
* Entity that represents version-specific properties of a cloud certification authority.
|
|
20980
|
+
*/
|
|
20981
|
+
@entity model cloudCertificationAuthorityVersion extends entity {
|
|
20982
|
+
/**
|
|
20983
|
+
* The URL to download the certification authority certificate. Read-only.
|
|
20984
|
+
*/
|
|
20985
|
+
certificateDownloadUrl: string | null;
|
|
20986
|
+
/**
|
|
20987
|
+
* The cloud certification authority's Certificate Revocation List URL that can be used to determine revocation status. Read-only.
|
|
20988
|
+
*/
|
|
20989
|
+
certificateRevocationListUrl: string | null;
|
|
20990
|
+
/**
|
|
20991
|
+
* The certificate signing request used to create an issuing certification authority with a root certification authority external to Microsoft Cloud PKI. The based-64 encoded certificate signing request can be downloaded through this property. After downloading the certificate signing request, it must be signed by the external root certifcation authority. Read-only.
|
|
20992
|
+
*/
|
|
20993
|
+
certificateSigningRequest: string | null;
|
|
20994
|
+
/**
|
|
20995
|
+
* The certification authority identifier. Read-only.
|
|
20996
|
+
*/
|
|
20997
|
+
certificationAuthorityId: string;
|
|
20998
|
+
/**
|
|
20999
|
+
* The URI of the issuing certification authority of a subordinate certification authority. Returns null if a root certification authority. Nullable. Read-only.
|
|
21000
|
+
*/
|
|
21001
|
+
certificationAuthorityIssuerUri: string | null;
|
|
21002
|
+
/**
|
|
21003
|
+
* The current status of this certification authority version. Possible values are: unknown, active, staged, paused, retired, expired, revoked, unknownFutureValue. Read-only.
|
|
21004
|
+
*/
|
|
21005
|
+
certificationAuthorityVersionStatus: cloudCertificationAuthorityVersionStatus;
|
|
21006
|
+
/**
|
|
21007
|
+
* The date and time when the certification authority version is scheduled to be decommissioned. Only applicable for staged certification authority versions. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Nullable. Read-only.
|
|
21008
|
+
*/
|
|
21009
|
+
decommissionDateTime: offsetDateTime | null;
|
|
21010
|
+
/**
|
|
21011
|
+
* The key platform used to store the certification authority keys. Read-only.
|
|
21012
|
+
*/
|
|
21013
|
+
keyPlatform: cloudCertificationAuthorityKeyPlatformType;
|
|
21014
|
+
/**
|
|
21015
|
+
* Last modification date and time of this certification authority entity instance. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Nullable. Read-only.
|
|
21016
|
+
*/
|
|
21017
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
21018
|
+
/**
|
|
21019
|
+
* The Online Certificate Status Protocol (OCSP) responder URI that can be used to determine certificate status. Read-only.
|
|
21020
|
+
*/
|
|
21021
|
+
ocspResponderUri: string | null;
|
|
21022
|
+
/**
|
|
21023
|
+
* The SCEP server URL for device SCEP connections to request certificates. Read-only.
|
|
21024
|
+
*/
|
|
21025
|
+
scepServerUrl: string | null;
|
|
21026
|
+
/**
|
|
21027
|
+
* The serial number used to uniquely identify a certificate with its issuing certification authority. Read-only.
|
|
21028
|
+
*/
|
|
21029
|
+
serialNumber: string | null;
|
|
21030
|
+
/**
|
|
21031
|
+
* The subject name of the certificate. The subject is the target or intended beneficiary of the security being provided, such as a company or government entity. Read-only.
|
|
21032
|
+
*/
|
|
21033
|
+
subjectName: string | null;
|
|
21034
|
+
/**
|
|
21035
|
+
* Secure Hash Algorithm 1 digest of the certificate that can be used to identify it. Read-only.
|
|
21036
|
+
*/
|
|
21037
|
+
thumbprint: string | null;
|
|
21038
|
+
/**
|
|
21039
|
+
* The usage details associated with this certification authority version, including reporting data such as the number of leaf certificates issued during the staged period. Read-only.
|
|
21040
|
+
*/
|
|
21041
|
+
usage: cloudCertificationAuthorityVersionUsage | null;
|
|
21042
|
+
/**
|
|
21043
|
+
* The end date time of the validity period of a certification authority certificate. Certificates cannot be used after this date time as they are longer valid. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Nullable. Read-only.
|
|
21044
|
+
*/
|
|
21045
|
+
validityEndDateTime: offsetDateTime | null;
|
|
21046
|
+
/**
|
|
21047
|
+
* The start date time of the validity period of a certification authority certificate. Certificates cannot be used before this date time as they are not yet valid. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Nullable. Read-only.
|
|
21048
|
+
*/
|
|
21049
|
+
validityStartDateTime: offsetDateTime | null;
|
|
21050
|
+
/**
|
|
21051
|
+
* The version number assigned to this specific certification authority version entity. Read-only.
|
|
21052
|
+
*/
|
|
21053
|
+
versionNumber: int32;
|
|
19522
21054
|
}
|
|
19523
21055
|
|
|
19524
21056
|
@entity model cloudCommunications extends MsGraph.SharedModels.entity {
|
|
@@ -19802,6 +21334,19 @@ namespace reference.`microsoft.graph` {
|
|
|
19802
21334
|
@computed lastModifiedDateTime: offsetDateTime;
|
|
19803
21335
|
}
|
|
19804
21336
|
|
|
21337
|
+
@entity model connectedOrganization extends entity {
|
|
21338
|
+
createdBy: string | null;
|
|
21339
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
21340
|
+
description: string | null;
|
|
21341
|
+
displayName: string | null;
|
|
21342
|
+
identitySources: identitySource[] | null;
|
|
21343
|
+
modifiedBy: string | null;
|
|
21344
|
+
modifiedDateTime: offsetDateTime | null;
|
|
21345
|
+
state: connectedOrganizationState | null;
|
|
21346
|
+
@contains externalSponsors: directoryObject[];
|
|
21347
|
+
@contains internalSponsors: directoryObject[];
|
|
21348
|
+
}
|
|
21349
|
+
|
|
19805
21350
|
@entity model connector extends entity {
|
|
19806
21351
|
externalIp: string;
|
|
19807
21352
|
machineName: string;
|
|
@@ -19913,6 +21458,16 @@ namespace reference.`microsoft.graph` {
|
|
|
19913
21458
|
displayName: string | null;
|
|
19914
21459
|
}
|
|
19915
21460
|
|
|
21461
|
+
@privatePreview("ControlConfigurations")
|
|
21462
|
+
@abstract
|
|
21463
|
+
@entity model controlConfiguration extends entity {
|
|
21464
|
+
createdBy: string | null;
|
|
21465
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
21466
|
+
isEnabled: boolean | null;
|
|
21467
|
+
modifiedBy: string | null;
|
|
21468
|
+
modifiedDateTime: offsetDateTime | null;
|
|
21469
|
+
}
|
|
21470
|
+
|
|
19916
21471
|
@entity model conversation extends entity {
|
|
19917
21472
|
hasAttachments: boolean;
|
|
19918
21473
|
@computed lastDeliveredDateTime: offsetDateTime;
|
|
@@ -19970,6 +21525,7 @@ namespace reference.`microsoft.graph` {
|
|
|
19970
21525
|
inboundTrust: crossTenantAccessPolicyInboundTrust | null;
|
|
19971
21526
|
invitationRedemptionIdentityProviderConfiguration: defaultInvitationRedemptionIdentityProviderConfiguration | null;
|
|
19972
21527
|
isServiceDefault: boolean | null;
|
|
21528
|
+
@contains m365Capabilities: m365CapabilityBase[];
|
|
19973
21529
|
}
|
|
19974
21530
|
|
|
19975
21531
|
@entity model crossTenantAccessPolicyConfigurationPartner extends MsGraph.SharedModels.entity {
|
|
@@ -19982,6 +21538,22 @@ namespace reference.`microsoft.graph` {
|
|
|
19982
21538
|
isServiceProvider: boolean | null;
|
|
19983
21539
|
@computed @key tenantId: string;
|
|
19984
21540
|
@contains identitySynchronization: crossTenantIdentitySyncPolicyPartner | null;
|
|
21541
|
+
@contains m365Capabilities: m365CapabilityBase[];
|
|
21542
|
+
}
|
|
21543
|
+
|
|
21544
|
+
@entity model crossTenantCalendarAvailabilityBasic extends m365CapabilityBase {
|
|
21545
|
+
}
|
|
21546
|
+
|
|
21547
|
+
@entity model crossTenantCalendarAvailabilityLimitedDetails extends m365CapabilityBase {
|
|
21548
|
+
}
|
|
21549
|
+
|
|
21550
|
+
@entity model crossTenantCalendarSharingFreeBusyDetail extends m365CapabilityBase {
|
|
21551
|
+
}
|
|
21552
|
+
|
|
21553
|
+
@entity model crossTenantCalendarSharingFreeBusyReviewer extends m365CapabilityBase {
|
|
21554
|
+
}
|
|
21555
|
+
|
|
21556
|
+
@entity model crossTenantCalendarSharingFreeBusySimple extends m365CapabilityBase {
|
|
19985
21557
|
}
|
|
19986
21558
|
|
|
19987
21559
|
@entity model crossTenantIdentitySyncPolicyPartner extends MsGraph.SharedModels.entity {
|
|
@@ -19991,6 +21563,54 @@ namespace reference.`microsoft.graph` {
|
|
|
19991
21563
|
userSyncInbound: crossTenantUserSyncInbound | null;
|
|
19992
21564
|
}
|
|
19993
21565
|
|
|
21566
|
+
@entity model crossTenantMailTipsAll extends m365CapabilityBase {
|
|
21567
|
+
}
|
|
21568
|
+
|
|
21569
|
+
@entity model crossTenantMailTipsLimited extends m365CapabilityBase {
|
|
21570
|
+
}
|
|
21571
|
+
|
|
21572
|
+
@entity model crossTenantMigration extends m365CapabilityBase {
|
|
21573
|
+
}
|
|
21574
|
+
|
|
21575
|
+
@entity model crossTenantOpenProfileCard extends m365CapabilityBase {
|
|
21576
|
+
}
|
|
21577
|
+
|
|
21578
|
+
@entity model crossTenantPlacesDeskBooking extends m365CapabilityBase {
|
|
21579
|
+
}
|
|
21580
|
+
|
|
21581
|
+
@entity model crossTenantPlacesRoomBooking extends m365CapabilityBase {
|
|
21582
|
+
}
|
|
21583
|
+
|
|
21584
|
+
@privatePreview("MicrosofEntitlementManagementCustomextensions")
|
|
21585
|
+
@entity model customAccessPackageWorkflowExtension extends customCalloutExtension {
|
|
21586
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
21587
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
21588
|
+
}
|
|
21589
|
+
|
|
21590
|
+
@abstract
|
|
21591
|
+
@entity model customCalloutExtension extends entity {
|
|
21592
|
+
authenticationConfiguration: customExtensionAuthenticationConfiguration | null;
|
|
21593
|
+
clientConfiguration: customExtensionClientConfiguration | null;
|
|
21594
|
+
description: string | null;
|
|
21595
|
+
displayName: string | null;
|
|
21596
|
+
endpointConfiguration: customExtensionEndpointConfiguration | null;
|
|
21597
|
+
}
|
|
21598
|
+
|
|
21599
|
+
@entity model customDataProvidedResource extends accessPackageResource {
|
|
21600
|
+
notificationEndpointConfiguration: customExtensionEndpointConfiguration | null;
|
|
21601
|
+
}
|
|
21602
|
+
|
|
21603
|
+
@privatePreview("MicrosofEntitlementManagementCustomextensions")
|
|
21604
|
+
@entity model customExtensionHandler extends entity {
|
|
21605
|
+
stage: accessPackageCustomExtensionStage | null;
|
|
21606
|
+
@references customExtension: customAccessPackageWorkflowExtension | null;
|
|
21607
|
+
}
|
|
21608
|
+
|
|
21609
|
+
@entity model customExtensionStageSetting extends entity {
|
|
21610
|
+
stage: accessPackageCustomExtensionStage;
|
|
21611
|
+
@references customExtension: customCalloutExtension | null;
|
|
21612
|
+
}
|
|
21613
|
+
|
|
19994
21614
|
@entity model customSecurityAttributeAudit extends entity {
|
|
19995
21615
|
activityDateTime: offsetDateTime;
|
|
19996
21616
|
activityDisplayName: string;
|
|
@@ -20018,15 +21638,6 @@ namespace reference.`microsoft.graph` {
|
|
|
20018
21638
|
@contains allowedValues: allowedValue[];
|
|
20019
21639
|
}
|
|
20020
21640
|
|
|
20021
|
-
@abstract
|
|
20022
|
-
@entity model customSecurityAttributeExemption extends entity {
|
|
20023
|
-
operator: customSecurityAttributeComparisonOperator | null;
|
|
20024
|
-
}
|
|
20025
|
-
|
|
20026
|
-
@entity model customSecurityAttributeStringValueExemption extends customSecurityAttributeExemption {
|
|
20027
|
-
value: string | null;
|
|
20028
|
-
}
|
|
20029
|
-
|
|
20030
21641
|
@entity model dailyInactiveUsersMetric extends inactiveUsersMetricBase {
|
|
20031
21642
|
inactive1DayCount: int64 | null;
|
|
20032
21643
|
}
|
|
@@ -21566,6 +23177,10 @@ namespace reference.`microsoft.graph` {
|
|
|
21566
23177
|
* The timestamp of when the device compliance script was modified. This property is read-only.
|
|
21567
23178
|
*/
|
|
21568
23179
|
@computed lastModifiedDateTime: offsetDateTime;
|
|
23180
|
+
/**
|
|
23181
|
+
* Indicates the operating system platform type that this compliance script targets.
|
|
23182
|
+
*/
|
|
23183
|
+
platform: deviceComplianceScriptPlatformType | null;
|
|
21569
23184
|
/**
|
|
21570
23185
|
* Name of the device compliance script publisher
|
|
21571
23186
|
*/
|
|
@@ -21575,7 +23190,7 @@ namespace reference.`microsoft.graph` {
|
|
|
21575
23190
|
*/
|
|
21576
23191
|
roleScopeTagIds: string[] | null;
|
|
21577
23192
|
/**
|
|
21578
|
-
*
|
|
23193
|
+
* Specifies whether the PowerShell script runs in 32-bit mode. When set to true, the script runs in a 32-bit PowerShell host. Default is false.
|
|
21579
23194
|
*/
|
|
21580
23195
|
runAs32Bit: boolean;
|
|
21581
23196
|
/**
|
|
@@ -22791,6 +24406,9 @@ namespace reference.`microsoft.graph` {
|
|
|
22791
24406
|
status: appLogUploadState;
|
|
22792
24407
|
}
|
|
22793
24408
|
|
|
24409
|
+
/**
|
|
24410
|
+
* Singleton that acts as container for a collection of Resource Access entities.
|
|
24411
|
+
*/
|
|
22794
24412
|
@entity model deviceManagement extends entity {
|
|
22795
24413
|
/**
|
|
22796
24414
|
* The date & time when tenant data moved between scaleunits.
|
|
@@ -22876,6 +24494,10 @@ namespace reference.`microsoft.graph` {
|
|
|
22876
24494
|
* The summary state of ATP onboarding state for this account.
|
|
22877
24495
|
*/
|
|
22878
24496
|
@contains advancedThreatProtectionOnboardingStateSummary: advancedThreatProtectionOnboardingStateSummary | null;
|
|
24497
|
+
/**
|
|
24498
|
+
* Android App Configurations Schema entity.
|
|
24499
|
+
*/
|
|
24500
|
+
@contains androidAppConfigurationSchema: androidAppConfigurationSchema | null;
|
|
22879
24501
|
/**
|
|
22880
24502
|
* Android device owner enrollment profile entities.
|
|
22881
24503
|
*/
|
|
@@ -23248,6 +24870,9 @@ namespace reference.`microsoft.graph` {
|
|
|
23248
24870
|
* The remote assistance settings singleton
|
|
23249
24871
|
*/
|
|
23250
24872
|
@contains remoteAssistanceSettings: remoteAssistanceSettings | null;
|
|
24873
|
+
/**
|
|
24874
|
+
* Reports singleton
|
|
24875
|
+
*/
|
|
23251
24876
|
@contains reports: deviceManagementReports | null;
|
|
23252
24877
|
/**
|
|
23253
24878
|
* Collection of resource access settings associated with account.
|
|
@@ -24737,6 +26362,9 @@ namespace reference.`microsoft.graph` {
|
|
|
24737
26362
|
whenPartnerDevicesWillBeRemovedDateTime: offsetDateTime | null;
|
|
24738
26363
|
}
|
|
24739
26364
|
|
|
26365
|
+
/**
|
|
26366
|
+
* Singleton entity that acts as a container for all reports functionality.
|
|
26367
|
+
*/
|
|
24740
26368
|
@entity model deviceManagementReports extends entity {
|
|
24741
26369
|
/**
|
|
24742
26370
|
* Entity representing the configuration of a cached report.
|
|
@@ -25317,6 +26945,9 @@ namespace reference.`microsoft.graph` {
|
|
|
25317
26945
|
@contains customSecurityAttributeDefinitions: customSecurityAttributeDefinition[];
|
|
25318
26946
|
@contains deletedItems: directoryObject[];
|
|
25319
26947
|
@contains deviceLocalCredentials: deviceLocalCredentialInfo[];
|
|
26948
|
+
|
|
26949
|
+
@graphDeprecated("DirectoryFeatureRolloutPolicies")
|
|
26950
|
+
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
25320
26951
|
@contains federationConfigurations: identityProviderBase[];
|
|
25321
26952
|
@contains impactedResources: impactedResource[];
|
|
25322
26953
|
@contains onPremisesSynchronization: onPremisesDirectorySynchronization[];
|
|
@@ -25369,6 +27000,10 @@ namespace reference.`microsoft.graph` {
|
|
|
25369
27000
|
@contains scopedMembers: scopedRoleMembership[];
|
|
25370
27001
|
}
|
|
25371
27002
|
|
|
27003
|
+
@entity model directoryRoleAccessReviewPolicy extends entity {
|
|
27004
|
+
settings: accessReviewScheduleSettings | null;
|
|
27005
|
+
}
|
|
27006
|
+
|
|
25372
27007
|
@open
|
|
25373
27008
|
@entity model directoryRoleTemplate extends directoryObject {
|
|
25374
27009
|
description: string | null;
|
|
@@ -25713,6 +27348,12 @@ namespace reference.`microsoft.graph` {
|
|
|
25713
27348
|
onboardedToMicrosoftManagedPlatform: boolean;
|
|
25714
27349
|
}
|
|
25715
27350
|
|
|
27351
|
+
@privatePreview("ControlConfigurations")
|
|
27352
|
+
@entity model endUserSettings extends controlConfiguration {
|
|
27353
|
+
relatedPeopleInsightLevel: accessPackageSuggestionRelatedPeopleInsightLevel | null;
|
|
27354
|
+
showApproverDetailsToMembers: boolean;
|
|
27355
|
+
}
|
|
27356
|
+
|
|
25716
27357
|
/**
|
|
25717
27358
|
* Enrollment Configuration Assignment
|
|
25718
27359
|
*/
|
|
@@ -25848,6 +27489,35 @@ namespace reference.`microsoft.graph` {
|
|
|
25848
27489
|
uploadDateTime: offsetDateTime;
|
|
25849
27490
|
}
|
|
25850
27491
|
|
|
27492
|
+
@entity model entitlementManagement extends entity {
|
|
27493
|
+
@contains accessPackageAssignmentApprovals: approval[];
|
|
27494
|
+
@contains accessPackageAssignmentPolicies: accessPackageAssignmentPolicy[];
|
|
27495
|
+
@contains accessPackageAssignmentRequests: accessPackageAssignmentRequest[];
|
|
27496
|
+
@contains accessPackageAssignmentResourceRoles: accessPackageAssignmentResourceRole[];
|
|
27497
|
+
@contains accessPackageAssignments: accessPackageAssignment[];
|
|
27498
|
+
@contains accessPackageCatalogs: accessPackageCatalog[];
|
|
27499
|
+
@contains accessPackageResourceEnvironments: accessPackageResourceEnvironment[];
|
|
27500
|
+
@contains accessPackageResourceRequests: accessPackageResourceRequest[];
|
|
27501
|
+
@contains accessPackageResourceRoleScopes: accessPackageResourceRoleScope[];
|
|
27502
|
+
@contains accessPackageResources: accessPackageResource[];
|
|
27503
|
+
@contains accessPackages: accessPackage[];
|
|
27504
|
+
@contains accessPackageSuggestions: accessPackageSuggestion[];
|
|
27505
|
+
@contains assignmentRequests: accessPackageAssignmentRequest[];
|
|
27506
|
+
@contains availableAccessPackages: availableAccessPackage[];
|
|
27507
|
+
@contains connectedOrganizations: connectedOrganization[];
|
|
27508
|
+
|
|
27509
|
+
@privatePreview("ControlConfigurations")
|
|
27510
|
+
@contains controlConfigurations: controlConfiguration[];
|
|
27511
|
+
@contains externalOriginResourceConnectors: externalOriginResourceConnector[];
|
|
27512
|
+
@contains settings: entitlementManagementSettings | null;
|
|
27513
|
+
@contains subjects: accessPackageSubject[];
|
|
27514
|
+
}
|
|
27515
|
+
|
|
27516
|
+
@entity model entitlementManagementSettings extends entity {
|
|
27517
|
+
daysUntilExternalUserDeletedAfterBlocked: int32 | null;
|
|
27518
|
+
externalUserLifecycleAction: string | null;
|
|
27519
|
+
}
|
|
27520
|
+
|
|
25851
27521
|
@abstract
|
|
25852
27522
|
@entity model entity {
|
|
25853
27523
|
@computed @key id: string;
|
|
@@ -25856,6 +27526,12 @@ namespace reference.`microsoft.graph` {
|
|
|
25856
27526
|
@entity model entra extends entity {
|
|
25857
27527
|
}
|
|
25858
27528
|
|
|
27529
|
+
@privatePreview("ControlConfigurations")
|
|
27530
|
+
@entity model entraIdProtectionRiskyUserApproval extends controlConfiguration {
|
|
27531
|
+
isApprovalRequired: boolean;
|
|
27532
|
+
minimumRiskLevel: riskLevel;
|
|
27533
|
+
}
|
|
27534
|
+
|
|
25859
27535
|
@open
|
|
25860
27536
|
@entity model event extends outlookItem {
|
|
25861
27537
|
allowNewTimeProposals: boolean | null;
|
|
@@ -25951,6 +27627,26 @@ namespace reference.`microsoft.graph` {
|
|
|
25951
27627
|
allowExternalIdentitiesToLeave: boolean;
|
|
25952
27628
|
}
|
|
25953
27629
|
|
|
27630
|
+
@entity model externalOriginResourceConnector extends entity {
|
|
27631
|
+
connectionInfo: connectionInfo;
|
|
27632
|
+
connectorType: connectorType;
|
|
27633
|
+
createdBy: string | null;
|
|
27634
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
27635
|
+
description: string | null;
|
|
27636
|
+
displayName: string | null;
|
|
27637
|
+
modifiedBy: string | null;
|
|
27638
|
+
modifiedDateTime: offsetDateTime | null;
|
|
27639
|
+
}
|
|
27640
|
+
|
|
27641
|
+
@entity model featureRolloutPolicy extends entity {
|
|
27642
|
+
description: string | null;
|
|
27643
|
+
displayName: string;
|
|
27644
|
+
feature: stagedFeatureName;
|
|
27645
|
+
isAppliedToOrganization: boolean;
|
|
27646
|
+
isEnabled: boolean;
|
|
27647
|
+
@contains appliesTo: directoryObject[];
|
|
27648
|
+
}
|
|
27649
|
+
|
|
25954
27650
|
@entity model federatedIdentityCredential extends entity {
|
|
25955
27651
|
audiences: string[];
|
|
25956
27652
|
claimsMatchingExpression: federatedIdentityExpression | null;
|
|
@@ -26047,6 +27743,14 @@ namespace reference.`microsoft.graph` {
|
|
|
26047
27743
|
|
|
26048
27744
|
@abstract
|
|
26049
27745
|
@entity model governanceInsight extends entity {
|
|
27746
|
+
insightCreatedDateTime: offsetDateTime | null;
|
|
27747
|
+
}
|
|
27748
|
+
|
|
27749
|
+
@open
|
|
27750
|
+
@entity model governancePolicyTemplate extends entity {
|
|
27751
|
+
displayName: string | null;
|
|
27752
|
+
policy: governancePolicy | null;
|
|
27753
|
+
settings: businessFlowSettings | null;
|
|
26050
27754
|
}
|
|
26051
27755
|
|
|
26052
27756
|
@open
|
|
@@ -26080,6 +27784,7 @@ namespace reference.`microsoft.graph` {
|
|
|
26080
27784
|
membershipRuleProcessingState: string | null;
|
|
26081
27785
|
membershipRuleProcessingStatus: membershipRuleProcessingStatus | null;
|
|
26082
27786
|
onPremisesDomainName: string | null;
|
|
27787
|
+
onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
|
|
26083
27788
|
onPremisesLastSyncDateTime: offsetDateTime | null;
|
|
26084
27789
|
onPremisesNetBiosName: string | null;
|
|
26085
27790
|
onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
|
|
@@ -26101,6 +27806,7 @@ namespace reference.`microsoft.graph` {
|
|
|
26101
27806
|
unseenCount: int32 | null;
|
|
26102
27807
|
unseenMessagesCount: int32 | null;
|
|
26103
27808
|
visibility: string | null;
|
|
27809
|
+
welcomeMessageEnabled: boolean | null;
|
|
26104
27810
|
writebackConfiguration: groupWritebackConfiguration | null;
|
|
26105
27811
|
@contains acceptedSenders: directoryObject[];
|
|
26106
27812
|
@contains appRoleAssignments: appRoleAssignment[];
|
|
@@ -27171,6 +28877,10 @@ namespace reference.`microsoft.graph` {
|
|
|
27171
28877
|
}
|
|
27172
28878
|
|
|
27173
28879
|
@entity model identityGovernance extends MsGraph.SharedModels.entity {
|
|
28880
|
+
@contains accessReviews: accessReviewSet | null;
|
|
28881
|
+
@contains appConsent: appConsentApprovalRoute | null;
|
|
28882
|
+
@contains catalogs: accessPackageCatalog[];
|
|
28883
|
+
@contains entitlementManagement: entitlementManagement | null;
|
|
27174
28884
|
@contains privilegedAccess: privilegedAccessRoot | null;
|
|
27175
28885
|
@contains roleManagementAlerts: roleManagementAlert | null;
|
|
27176
28886
|
@contains termsOfUse: termsOfUseContainer | null;
|
|
@@ -27400,10 +29110,16 @@ namespace reference.`microsoft.graph` {
|
|
|
27400
29110
|
}
|
|
27401
29111
|
|
|
27402
29112
|
@entity model inheritablePermission extends MsGraph.SharedModels.entity {
|
|
27403
|
-
inheritableScopes: inheritableScopes;
|
|
29113
|
+
inheritableScopes: inheritableScopes | null;
|
|
27404
29114
|
@computed @key resourceAppId: string;
|
|
27405
29115
|
}
|
|
27406
29116
|
|
|
29117
|
+
@privatePreview("ControlConfigurations")
|
|
29118
|
+
@entity model insiderRiskyUserApproval extends controlConfiguration {
|
|
29119
|
+
isApprovalRequired: boolean;
|
|
29120
|
+
minimumRiskLevel: purviewInsiderRiskManagementLevel;
|
|
29121
|
+
}
|
|
29122
|
+
|
|
27407
29123
|
@entity model insightsSettings extends entity {
|
|
27408
29124
|
disabledForGroup: string | null;
|
|
27409
29125
|
isEnabledInOrganization: boolean | null;
|
|
@@ -29005,7 +30721,7 @@ namespace reference.`microsoft.graph` {
|
|
|
29005
30721
|
}
|
|
29006
30722
|
|
|
29007
30723
|
/**
|
|
29008
|
-
* A class containing the properties used for iOS
|
|
30724
|
+
* A class containing the properties used for iOS lob app provisioning configuration PolicySetItem.
|
|
29009
30725
|
*/
|
|
29010
30726
|
@entity model iosLobAppProvisioningConfigurationPolicySetItem extends policySetItem {
|
|
29011
30727
|
}
|
|
@@ -29749,7 +31465,6 @@ namespace reference.`microsoft.graph` {
|
|
|
29749
31465
|
retentionSettings: retentionLabelSettings | null;
|
|
29750
31466
|
}
|
|
29751
31467
|
|
|
29752
|
-
|
|
29753
31468
|
@entity model languageProficiency extends itemFacet {
|
|
29754
31469
|
displayName: string | null;
|
|
29755
31470
|
proficiency: languageProficiencyLevel | null;
|
|
@@ -29768,6 +31483,7 @@ namespace reference.`microsoft.graph` {
|
|
|
29768
31483
|
|
|
29769
31484
|
@entity model list extends baseItem {
|
|
29770
31485
|
displayName: string | null;
|
|
31486
|
+
itemCount: int32 | null;
|
|
29771
31487
|
list: listInfo | null;
|
|
29772
31488
|
sharepointIds: sharepointIds | null;
|
|
29773
31489
|
system: systemFacet | null;
|
|
@@ -29832,6 +31548,13 @@ namespace reference.`microsoft.graph` {
|
|
|
29832
31548
|
statusDetail: string | null;
|
|
29833
31549
|
}
|
|
29834
31550
|
|
|
31551
|
+
@abstract
|
|
31552
|
+
@entity model m365CapabilityBase extends MsGraph.SharedModels.entity {
|
|
31553
|
+
inboundAccess: m365CapabilityInboundAccess | null;
|
|
31554
|
+
@computed lastModifiedDateTime: offsetDateTime;
|
|
31555
|
+
@computed @key name: string;
|
|
31556
|
+
}
|
|
31557
|
+
|
|
29835
31558
|
/**
|
|
29836
31559
|
* Mac OS certificate profile.
|
|
29837
31560
|
*/
|
|
@@ -29864,87 +31587,91 @@ namespace reference.`microsoft.graph` {
|
|
|
29864
31587
|
*/
|
|
29865
31588
|
@entity model macOSCompliancePolicy extends deviceCompliancePolicy {
|
|
29866
31589
|
/**
|
|
29867
|
-
*
|
|
31590
|
+
* Specifies the Microsoft Defender for Endpoint (MDE) 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.
|
|
29868
31591
|
*/
|
|
29869
31592
|
advancedThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
|
|
29870
31593
|
/**
|
|
29871
|
-
*
|
|
31594
|
+
* Custom compliance configuration for the policy (script identifier and rules content). When set, custom compliance rules are evaluated and the device is marked noncompliant when any rule evaluates to noncompliant. When not set, no custom compliance rules are evaluated. Default is null, when set to default it is not evaluated.
|
|
31595
|
+
*/
|
|
31596
|
+
deviceCompliancePolicyScript: deviceCompliancePolicyScript | null;
|
|
31597
|
+
/**
|
|
31598
|
+
* 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.
|
|
29872
31599
|
*/
|
|
29873
31600
|
deviceThreatProtectionEnabled: boolean;
|
|
29874
31601
|
/**
|
|
29875
|
-
*
|
|
31602
|
+
* 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.
|
|
29876
31603
|
*/
|
|
29877
31604
|
deviceThreatProtectionRequiredSecurityLevel: deviceThreatProtectionLevel;
|
|
29878
31605
|
/**
|
|
29879
|
-
*
|
|
31606
|
+
* 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.
|
|
29880
31607
|
*/
|
|
29881
31608
|
firewallBlockAllIncoming: boolean;
|
|
29882
31609
|
/**
|
|
29883
|
-
*
|
|
31610
|
+
* 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.
|
|
29884
31611
|
*/
|
|
29885
31612
|
firewallEnabled: boolean;
|
|
29886
31613
|
/**
|
|
29887
|
-
*
|
|
31614
|
+
* 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.
|
|
29888
31615
|
*/
|
|
29889
31616
|
firewallEnableStealthMode: boolean;
|
|
29890
31617
|
/**
|
|
29891
|
-
* System
|
|
31618
|
+
* Specifies the Gatekeeper app source policy (System Settings > Privacy & Security) that determines which app download locations are allowed (for example, macAppStore or anywhere). When set to a value other than notConfigured, the device is marked noncompliant if its Gatekeeper setting allows apps from sources not permitted by this value. Default is notConfigured.
|
|
29892
31619
|
*/
|
|
29893
31620
|
gatekeeperAllowedAppSource: macOSGatekeeperAppSources;
|
|
29894
31621
|
/**
|
|
29895
|
-
*
|
|
31622
|
+
* Specifies the maximum allowed macOS build version. When set, the device is marked noncompliant if its build version is higher than this value. Default is null, when set to default it is not evaluated.
|
|
29896
31623
|
*/
|
|
29897
31624
|
osMaximumBuildVersion: string | null;
|
|
29898
31625
|
/**
|
|
29899
|
-
*
|
|
31626
|
+
* 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.
|
|
29900
31627
|
*/
|
|
29901
31628
|
osMaximumVersion: string | null;
|
|
29902
31629
|
/**
|
|
29903
|
-
*
|
|
31630
|
+
* Specifies the minimum allowed macOS build version. When set, the device is marked noncompliant if its build version is lower than this value. Default is null, when set to default it is not evaluated.
|
|
29904
31631
|
*/
|
|
29905
31632
|
osMinimumBuildVersion: string | null;
|
|
29906
31633
|
/**
|
|
29907
|
-
*
|
|
31634
|
+
* 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.
|
|
29908
31635
|
*/
|
|
29909
31636
|
osMinimumVersion: string | null;
|
|
29910
31637
|
/**
|
|
29911
|
-
*
|
|
31638
|
+
* 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.
|
|
29912
31639
|
*/
|
|
29913
31640
|
passwordBlockSimple: boolean;
|
|
29914
31641
|
/**
|
|
29915
|
-
*
|
|
31642
|
+
* 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
|
|
29916
31643
|
*/
|
|
29917
31644
|
passwordExpirationDays: int32 | null;
|
|
29918
31645
|
/**
|
|
29919
|
-
*
|
|
31646
|
+
* 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.
|
|
29920
31647
|
*/
|
|
29921
31648
|
passwordMinimumCharacterSetCount: int32 | null;
|
|
29922
31649
|
/**
|
|
29923
|
-
*
|
|
31650
|
+
* 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
|
|
29924
31651
|
*/
|
|
29925
31652
|
passwordMinimumLength: int32 | null;
|
|
29926
31653
|
/**
|
|
29927
|
-
*
|
|
31654
|
+
* 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.
|
|
29928
31655
|
*/
|
|
29929
31656
|
passwordMinutesOfInactivityBeforeLock: int32 | null;
|
|
29930
31657
|
/**
|
|
29931
|
-
*
|
|
31658
|
+
* 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
|
|
29932
31659
|
*/
|
|
29933
31660
|
passwordPreviousPasswordBlockCount: int32 | null;
|
|
29934
31661
|
/**
|
|
29935
|
-
*
|
|
31662
|
+
* 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.
|
|
29936
31663
|
*/
|
|
29937
31664
|
passwordRequired: boolean;
|
|
29938
31665
|
/**
|
|
29939
|
-
*
|
|
31666
|
+
* 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.
|
|
29940
31667
|
*/
|
|
29941
31668
|
passwordRequiredType: requiredPasswordType;
|
|
29942
31669
|
/**
|
|
29943
|
-
*
|
|
31670
|
+
* 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.
|
|
29944
31671
|
*/
|
|
29945
31672
|
storageRequireEncryption: boolean;
|
|
29946
31673
|
/**
|
|
29947
|
-
*
|
|
31674
|
+
* 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.
|
|
29948
31675
|
*/
|
|
29949
31676
|
systemIntegrityProtectionEnabled: boolean;
|
|
29950
31677
|
}
|
|
@@ -31690,6 +33417,10 @@ namespace reference.`microsoft.graph` {
|
|
|
31690
33417
|
* Defines how app messaging redirection is protected by an App Protection Policy. Default is anyApp.
|
|
31691
33418
|
*/
|
|
31692
33419
|
protectedMessagingRedirectAppType: messagingRedirectAppType;
|
|
33420
|
+
/**
|
|
33421
|
+
* Indicates whether Microsoft Purview content evaluation is required before a managed app performs an outgoing data sharing action. Default value is notRequired. Possible values are: notRequired, requiredWhenOnline, required, unknownFutureValue.
|
|
33422
|
+
*/
|
|
33423
|
+
purviewContentEvaluationRequired: managedAppPurviewEvaluationRequirement;
|
|
31693
33424
|
/**
|
|
31694
33425
|
* Indicates whether users may use the "Save As" menu item to save a copy of protected files.
|
|
31695
33426
|
*/
|
|
@@ -33806,6 +35537,10 @@ namespace reference.`microsoft.graph` {
|
|
|
33806
35537
|
* When TRUE, indicates that data from the Mobile Threat Defense partner can be used during Mobile Application Management (MAM) evaluations for Android devices. When FALSE, indicates that data from the Mobile Threat Defense partner should not be used during Mobile Application Management (MAM) evaluations for Android devices. Only one partner per platform may be enabled for Mobile Application Management (MAM) evaluation. Default value is FALSE.
|
|
33807
35538
|
*/
|
|
33808
35539
|
androidMobileApplicationManagementEnabled: boolean;
|
|
35540
|
+
/**
|
|
35541
|
+
* When TRUE, indicates that the Mobile Threat Defense partner is granted the Mobile Threat Defense role on enrolled Android Corporate Owned Business Only and Corporate Owned Personally Enabled devices. When FALSE, indicates that the Mobile Threat Defense partner is not granted the Mobile Threat Defense role. Default value is FALSE.
|
|
35542
|
+
*/
|
|
35543
|
+
grantMobileThreatDefensePartnerRole: boolean;
|
|
33809
35544
|
/**
|
|
33810
35545
|
* When TRUE, indicates that Intune must receive data from the Mobile Threat Defense partner prior to marking a device compliant. When FALSE, indicates that Intune may not recieve data from Mobile Threat Defense partner prior to making device compliant. Default value is FALSE.
|
|
33811
35546
|
*/
|
|
@@ -33822,6 +35557,10 @@ namespace reference.`microsoft.graph` {
|
|
|
33822
35557
|
* DateTime of last Heartbeat recieved from the Mobile Threat Defense partner
|
|
33823
35558
|
*/
|
|
33824
35559
|
@computed lastHeartbeatDateTime: offsetDateTime;
|
|
35560
|
+
/**
|
|
35561
|
+
* When TRUE, indicates that the Mobile Threat Defense partner will be automatically launched during Android Corporate Owned Business Only and Corporate Owned Personally Enabled device setup. When FALSE, indicates that the Mobile Threat Defense partner will not be automatically launched during setup. Default value is FALSE.
|
|
35562
|
+
*/
|
|
35563
|
+
launchMobileThreatDefensePartnerOnSetupEnabled: boolean;
|
|
33825
35564
|
/**
|
|
33826
35565
|
* When TRUE, indicates that Intune must receive data from the Mobile Threat Defense partner prior to marking a Mac device compliant. When FALSE, indicates that Intune may mark a Mac device compliant prior to receiving data from the Mobile Threat Defense partner. Default value is FALSE.
|
|
33827
35566
|
*/
|
|
@@ -34391,7 +36130,6 @@ namespace reference.`microsoft.graph` {
|
|
|
34391
36130
|
allowedPasskeyProfiles: guid | null;
|
|
34392
36131
|
}
|
|
34393
36132
|
|
|
34394
|
-
|
|
34395
36133
|
/**
|
|
34396
36134
|
* A class containing the properties used for Payload Compatible Assignment Filter.
|
|
34397
36135
|
*/
|
|
@@ -34407,6 +36145,8 @@ namespace reference.`microsoft.graph` {
|
|
|
34407
36145
|
@contains namePronunciation: namePronunciationSettings | null;
|
|
34408
36146
|
@contains photoUpdateSettings: photoUpdateSettings | null;
|
|
34409
36147
|
@contains profileCardProperties: profileCardProperty[];
|
|
36148
|
+
@contains profilePropertySettings: profilePropertySetting[];
|
|
36149
|
+
@contains profileSources: profileSource[];
|
|
34410
36150
|
@contains pronouns: pronounsSettings | null;
|
|
34411
36151
|
}
|
|
34412
36152
|
|
|
@@ -34451,6 +36191,10 @@ namespace reference.`microsoft.graph` {
|
|
|
34451
36191
|
conditions: preApprovalDetail[] | null;
|
|
34452
36192
|
}
|
|
34453
36193
|
|
|
36194
|
+
@entity model permissionsManagement extends entity {
|
|
36195
|
+
@contains scheduledPermissionsApprovals: approval[];
|
|
36196
|
+
}
|
|
36197
|
+
|
|
34454
36198
|
@entity model person extends entity {
|
|
34455
36199
|
birthday: string | null;
|
|
34456
36200
|
companyName: string | null;
|
|
@@ -34653,6 +36397,7 @@ namespace reference.`microsoft.graph` {
|
|
|
34653
36397
|
@computed createdDateTime: offsetDateTime | null;
|
|
34654
36398
|
creationSource: plannerTaskCreation | null;
|
|
34655
36399
|
dueDateTime: offsetDateTime | null;
|
|
36400
|
+
hasChat: boolean;
|
|
34656
36401
|
hasDescription: boolean | null;
|
|
34657
36402
|
isArchived: boolean | null;
|
|
34658
36403
|
isOnMyDay: boolean | null;
|
|
@@ -34672,9 +36417,22 @@ namespace reference.`microsoft.graph` {
|
|
|
34672
36417
|
@contains assignedToTaskBoardFormat: plannerAssignedToTaskBoardTaskFormat | null;
|
|
34673
36418
|
@contains bucketTaskBoardFormat: plannerBucketTaskBoardTaskFormat | null;
|
|
34674
36419
|
@contains details: plannerTaskDetails | null;
|
|
36420
|
+
@contains messages: plannerTaskChatMessage[];
|
|
34675
36421
|
@contains progressTaskBoardFormat: plannerProgressTaskBoardTaskFormat | null;
|
|
34676
36422
|
}
|
|
34677
36423
|
|
|
36424
|
+
@entity model plannerTaskChatMessage extends entity {
|
|
36425
|
+
content: string | null;
|
|
36426
|
+
createdBy: identitySet | null;
|
|
36427
|
+
@computed createdDateTime: offsetDateTime;
|
|
36428
|
+
deletedDateTime: offsetDateTime | null;
|
|
36429
|
+
editedDateTime: offsetDateTime | null;
|
|
36430
|
+
mentions: plannerTaskChatMention[];
|
|
36431
|
+
messageType: plannerTaskChatMessageType;
|
|
36432
|
+
parentEntityId: string | null;
|
|
36433
|
+
reactions: plannerTaskChatReaction[];
|
|
36434
|
+
}
|
|
36435
|
+
|
|
34678
36436
|
@entity model plannerTaskDetails extends plannerDelta {
|
|
34679
36437
|
approvalAttachment: plannerBaseApprovalAttachment | null;
|
|
34680
36438
|
checklist: plannerChecklistItems | null;
|
|
@@ -34710,7 +36468,9 @@ namespace reference.`microsoft.graph` {
|
|
|
34710
36468
|
}
|
|
34711
36469
|
|
|
34712
36470
|
@entity model policyRoot extends entity {
|
|
36471
|
+
@contains accessReviewPolicy: accessReviewPolicy | null;
|
|
34713
36472
|
@contains activityBasedTimeoutPolicies: activityBasedTimeoutPolicy[];
|
|
36473
|
+
@contains adminConsentRequestPolicy: adminConsentRequestPolicy | null;
|
|
34714
36474
|
@contains appManagementPolicies: appManagementPolicy[];
|
|
34715
36475
|
@contains authorizationPolicy: authorizationPolicy[];
|
|
34716
36476
|
@contains claimsMappingPolicies: claimsMappingPolicy[];
|
|
@@ -34718,7 +36478,9 @@ namespace reference.`microsoft.graph` {
|
|
|
34718
36478
|
@contains crossTenantAccessPolicy: crossTenantAccessPolicy | null;
|
|
34719
36479
|
@contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
|
|
34720
36480
|
@contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
|
|
36481
|
+
@contains directoryRoleAccessReviewPolicy: directoryRoleAccessReviewPolicy | null;
|
|
34721
36482
|
@contains externalIdentitiesPolicy: externalIdentitiesPolicy | null;
|
|
36483
|
+
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
34722
36484
|
@contains federatedTokenValidationPolicy: federatedTokenValidationPolicy | null;
|
|
34723
36485
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
34724
36486
|
@contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
|
|
@@ -34856,6 +36618,7 @@ namespace reference.`microsoft.graph` {
|
|
|
34856
36618
|
}
|
|
34857
36619
|
|
|
34858
36620
|
@entity model privilegedAccessGroup extends entity {
|
|
36621
|
+
@contains assignmentApprovals: approval[];
|
|
34859
36622
|
@contains assignmentScheduleInstances: privilegedAccessGroupAssignmentScheduleInstance[];
|
|
34860
36623
|
@contains assignmentScheduleRequests: privilegedAccessGroupAssignmentScheduleRequest[];
|
|
34861
36624
|
@contains assignmentSchedules: privilegedAccessGroupAssignmentSchedule[];
|
|
@@ -35144,7 +36907,41 @@ namespace reference.`microsoft.graph` {
|
|
|
35144
36907
|
width: int32 | null;
|
|
35145
36908
|
}
|
|
35146
36909
|
|
|
36910
|
+
@entity model profilePropertySetting extends entity {
|
|
36911
|
+
displayName: string | null;
|
|
36912
|
+
name: string | null;
|
|
36913
|
+
prioritizedSourceUrls: string[] | null;
|
|
36914
|
+
}
|
|
36915
|
+
|
|
35147
36916
|
@entity model profileSource extends entity {
|
|
36917
|
+
displayName: string | null;
|
|
36918
|
+
kind: string | null;
|
|
36919
|
+
localizations: profileSourceLocalization[];
|
|
36920
|
+
sourceId: string | null;
|
|
36921
|
+
webUrl: string | null;
|
|
36922
|
+
}
|
|
36923
|
+
|
|
36924
|
+
@entity model program extends entity {
|
|
36925
|
+
description: string;
|
|
36926
|
+
displayName: string;
|
|
36927
|
+
@contains controls: programControl[];
|
|
36928
|
+
}
|
|
36929
|
+
|
|
36930
|
+
@entity model programControl extends entity {
|
|
36931
|
+
controlId: string;
|
|
36932
|
+
controlTypeId: string;
|
|
36933
|
+
@computed createdDateTime: offsetDateTime;
|
|
36934
|
+
displayName: string | null;
|
|
36935
|
+
owner: userIdentity | null;
|
|
36936
|
+
programId: string;
|
|
36937
|
+
resource: programResource | null;
|
|
36938
|
+
status: string | null;
|
|
36939
|
+
@contains program: program | null;
|
|
36940
|
+
}
|
|
36941
|
+
|
|
36942
|
+
@entity model programControlType extends entity {
|
|
36943
|
+
controlTypeGroupId: string | null;
|
|
36944
|
+
displayName: string | null;
|
|
35148
36945
|
}
|
|
35149
36946
|
|
|
35150
36947
|
@entity model projectParticipation extends itemFacet {
|
|
@@ -35205,6 +37002,7 @@ namespace reference.`microsoft.graph` {
|
|
|
35205
37002
|
|
|
35206
37003
|
@entity model rbacApplication extends entity {
|
|
35207
37004
|
@contains resourceNamespaces: unifiedRbacResourceNamespace[];
|
|
37005
|
+
@contains roleAssignmentApprovals: approval[];
|
|
35208
37006
|
@contains roleAssignments: unifiedRoleAssignment[];
|
|
35209
37007
|
@contains roleAssignmentScheduleInstances: unifiedRoleAssignmentScheduleInstance[];
|
|
35210
37008
|
@contains roleAssignmentScheduleRequests: unifiedRoleAssignmentScheduleRequest[];
|
|
@@ -35392,6 +37190,7 @@ namespace reference.`microsoft.graph` {
|
|
|
35392
37190
|
|
|
35393
37191
|
@entity model remoteDesktopSecurityConfiguration extends entity {
|
|
35394
37192
|
isRemoteDesktopProtocolEnabled: boolean;
|
|
37193
|
+
@contains approvedClientApps: approvedClientApp[];
|
|
35395
37194
|
@contains targetDeviceGroups: targetDeviceGroup[];
|
|
35396
37195
|
}
|
|
35397
37196
|
|
|
@@ -35403,8 +37202,13 @@ namespace reference.`microsoft.graph` {
|
|
|
35403
37202
|
@contains userInsights: userInsightsRoot | null;
|
|
35404
37203
|
}
|
|
35405
37204
|
|
|
35406
|
-
@abstract
|
|
35407
37205
|
@entity model request extends entity {
|
|
37206
|
+
approvalId: string | null;
|
|
37207
|
+
completedDateTime: offsetDateTime | null;
|
|
37208
|
+
createdBy: identitySet | null;
|
|
37209
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
37210
|
+
customData: string | null;
|
|
37211
|
+
status: string;
|
|
35408
37212
|
}
|
|
35409
37213
|
|
|
35410
37214
|
/**
|
|
@@ -35652,6 +37456,10 @@ namespace reference.`microsoft.graph` {
|
|
|
35652
37456
|
@contains deviceManagement: rbacApplicationMultiple | null;
|
|
35653
37457
|
@contains directory: rbacApplication | null;
|
|
35654
37458
|
@contains enterpriseApps: rbacApplication[];
|
|
37459
|
+
/**
|
|
37460
|
+
* The RbacApplication for Entitlement Management
|
|
37461
|
+
*/
|
|
37462
|
+
@contains entitlementManagement: rbacApplication | null;
|
|
35655
37463
|
}
|
|
35656
37464
|
|
|
35657
37465
|
@entity model roleManagementAlert extends entity {
|
|
@@ -36034,6 +37842,7 @@ namespace reference.`microsoft.graph` {
|
|
|
36034
37842
|
errorUrl: string | null;
|
|
36035
37843
|
homepage: string | null;
|
|
36036
37844
|
info: informationalUrl | null;
|
|
37845
|
+
isDisabled: boolean | null;
|
|
36037
37846
|
keyCredentials: keyCredential[];
|
|
36038
37847
|
loginUrl: string | null;
|
|
36039
37848
|
logoutUrl: string | null;
|
|
@@ -36422,6 +38231,7 @@ namespace reference.`microsoft.graph` {
|
|
|
36422
38231
|
azureResourceId: string | null;
|
|
36423
38232
|
clientAppUsed: string | null;
|
|
36424
38233
|
clientCredentialType: clientCredentialType | null;
|
|
38234
|
+
clientSessionId: string | null;
|
|
36425
38235
|
conditionalAccessAudiences: string[] | null;
|
|
36426
38236
|
conditionalAccessStatus: conditionalAccessStatus | null;
|
|
36427
38237
|
correlationId: string | null;
|
|
@@ -36699,6 +38509,7 @@ namespace reference.`microsoft.graph` {
|
|
|
36699
38509
|
signInCount: int64 | null;
|
|
36700
38510
|
status: signInStatus | null;
|
|
36701
38511
|
tenantId: string | null;
|
|
38512
|
+
tokenIssuerType: tokenIssuerType;
|
|
36702
38513
|
userPrincipalName: string | null;
|
|
36703
38514
|
}
|
|
36704
38515
|
|
|
@@ -36955,6 +38766,10 @@ namespace reference.`microsoft.graph` {
|
|
|
36955
38766
|
targetResourceLocation: string | null;
|
|
36956
38767
|
}
|
|
36957
38768
|
|
|
38769
|
+
@entity model teamsChannelPlanner extends entity {
|
|
38770
|
+
@contains plans: plannerPlan[];
|
|
38771
|
+
}
|
|
38772
|
+
|
|
36958
38773
|
@entity model teamsTab extends entity {
|
|
36959
38774
|
configuration: teamsTabConfiguration | null;
|
|
36960
38775
|
displayName: string | null;
|
|
@@ -37557,11 +39372,13 @@ namespace reference.`microsoft.graph` {
|
|
|
37557
39372
|
|
|
37558
39373
|
@open
|
|
37559
39374
|
@entity model user extends directoryObject {
|
|
39375
|
+
aboutMe: string | null;
|
|
37560
39376
|
accountEnabled: boolean | null;
|
|
37561
39377
|
ageGroup: string | null;
|
|
37562
39378
|
assignedLicenses: assignedLicense[];
|
|
37563
39379
|
assignedPlans: assignedPlan[];
|
|
37564
39380
|
authorizationInfo: authorizationInfo | null;
|
|
39381
|
+
birthday: offsetDateTime;
|
|
37565
39382
|
businessPhones: string[];
|
|
37566
39383
|
city: string | null;
|
|
37567
39384
|
cloudRealtimeCommunicationInfo: cloudRealtimeCommunicationInfo | null;
|
|
@@ -37587,10 +39404,13 @@ namespace reference.`microsoft.graph` {
|
|
|
37587
39404
|
externalUserStateChangeDateTime: string | null;
|
|
37588
39405
|
faxNumber: string | null;
|
|
37589
39406
|
givenName: string | null;
|
|
39407
|
+
hireDate: offsetDateTime;
|
|
37590
39408
|
identities: objectIdentity[] | null;
|
|
39409
|
+
identityGovernance: identityGovernanceUserSettings | null;
|
|
37591
39410
|
identityParentId: string | null;
|
|
37592
39411
|
imAddresses: string[] | null;
|
|
37593
39412
|
infoCatalogs: string[];
|
|
39413
|
+
interests: string[] | null;
|
|
37594
39414
|
isManagementRestricted: boolean | null;
|
|
37595
39415
|
isResourceAccount: boolean | null;
|
|
37596
39416
|
jobTitle: string | null;
|
|
@@ -37601,6 +39421,7 @@ namespace reference.`microsoft.graph` {
|
|
|
37601
39421
|
mailboxSettings: mailboxSettings | null;
|
|
37602
39422
|
mailNickname: string | null;
|
|
37603
39423
|
mobilePhone: string | null;
|
|
39424
|
+
mySite: string | null;
|
|
37604
39425
|
officeLocation: string | null;
|
|
37605
39426
|
onPremisesDistinguishedName: string | null;
|
|
37606
39427
|
onPremisesDomainName: string | null;
|
|
@@ -37615,16 +39436,21 @@ namespace reference.`microsoft.graph` {
|
|
|
37615
39436
|
otherMails: string[];
|
|
37616
39437
|
passwordPolicies: string | null;
|
|
37617
39438
|
passwordProfile: passwordProfile | null;
|
|
39439
|
+
pastProjects: string[] | null;
|
|
37618
39440
|
postalCode: string | null;
|
|
37619
39441
|
preferredDataLocation: string | null;
|
|
37620
39442
|
preferredLanguage: string | null;
|
|
39443
|
+
preferredName: string | null;
|
|
37621
39444
|
provisionedPlans: provisionedPlan[];
|
|
37622
39445
|
proxyAddresses: string[];
|
|
37623
39446
|
refreshTokensValidFromDateTime: offsetDateTime | null;
|
|
39447
|
+
responsibilities: string[] | null;
|
|
39448
|
+
schools: string[] | null;
|
|
37624
39449
|
securityIdentifier: string | null;
|
|
37625
39450
|
showInAddressList: boolean | null;
|
|
37626
39451
|
signInActivity: signInActivity | null;
|
|
37627
39452
|
signInSessionsValidFromDateTime: offsetDateTime | null;
|
|
39453
|
+
skills: string[] | null;
|
|
37628
39454
|
state: string | null;
|
|
37629
39455
|
streetAddress: string | null;
|
|
37630
39456
|
surname: string | null;
|
|
@@ -37633,8 +39459,10 @@ namespace reference.`microsoft.graph` {
|
|
|
37633
39459
|
userType: string | null;
|
|
37634
39460
|
@contains adhocCalls: adhocCall[];
|
|
37635
39461
|
@references agreementAcceptances: agreementAcceptance[];
|
|
39462
|
+
@contains appConsentRequestsForApproval: appConsentRequest[];
|
|
37636
39463
|
@references appRoleAssignedResources: servicePrincipal[];
|
|
37637
39464
|
@contains appRoleAssignments: appRoleAssignment[];
|
|
39465
|
+
@contains approvals: approval[];
|
|
37638
39466
|
@contains calendar: calendar | null;
|
|
37639
39467
|
@contains calendarGroups: calendarGroup[];
|
|
37640
39468
|
@contains calendars: calendar[];
|
|
@@ -37686,6 +39514,7 @@ namespace reference.`microsoft.graph` {
|
|
|
37686
39514
|
@contains outlook: outlookUser | null;
|
|
37687
39515
|
@references ownedDevices: directoryObject[];
|
|
37688
39516
|
@references ownedObjects: directoryObject[];
|
|
39517
|
+
@contains pendingAccessReviewInstances: accessReviewInstance[];
|
|
37689
39518
|
@contains people: person[];
|
|
37690
39519
|
@contains permissionGrants: resourceSpecificPermissionGrant[];
|
|
37691
39520
|
@contains photo: profilePhoto | null;
|
|
@@ -37751,6 +39580,11 @@ namespace reference.`microsoft.graph` {
|
|
|
37751
39580
|
binaryData: binary | null;
|
|
37752
39581
|
}
|
|
37753
39582
|
|
|
39583
|
+
@entity model userConsentRequest extends request {
|
|
39584
|
+
reason: string | null;
|
|
39585
|
+
@contains approval: approval | null;
|
|
39586
|
+
}
|
|
39587
|
+
|
|
37754
39588
|
@entity model userCountMetric extends entity {
|
|
37755
39589
|
count: int64;
|
|
37756
39590
|
factDate: offsetDateTime;
|
|
@@ -39686,6 +41520,10 @@ namespace reference.`microsoft.graph` {
|
|
|
39686
41520
|
@contains regionalAndLanguageSettings: regionalAndLanguageSettings | null;
|
|
39687
41521
|
}
|
|
39688
41522
|
|
|
41523
|
+
@entity model userSignInInsight extends governanceInsight {
|
|
41524
|
+
@computed lastSignInDateTime: offsetDateTime | null;
|
|
41525
|
+
}
|
|
41526
|
+
|
|
39689
41527
|
@entity model userSignInUsageByAuthMethodActivity extends MsGraph.SharedModels.entity {
|
|
39690
41528
|
@computed @key authenticationMethod: string;
|
|
39691
41529
|
successActivityCount: int64;
|
|
@@ -43583,6 +45421,14 @@ namespace reference.`microsoft.graph` {
|
|
|
43583
45421
|
* A mobileApp that is based on a referenced branch in a Win32CatalogApp repository
|
|
43584
45422
|
*/
|
|
43585
45423
|
@entity model windowsAutoUpdateCatalogApp extends mobileApp {
|
|
45424
|
+
/**
|
|
45425
|
+
* Indicates the set of CPU architectures on which this application is allowed to be installed. When null, the app is eligible for installation on all the supported architectures. Possible values are: x86, x64, arm64, or a combination of them.
|
|
45426
|
+
*/
|
|
45427
|
+
allowedArchitectures: windowsArchitecture | null;
|
|
45428
|
+
/**
|
|
45429
|
+
* Describes how the app installer executes on the target device, including the account context (system or user) under which the installer runs and how the device handles restarts after installation completes. When omitted, the service applies default values (runAsAccount = system, deviceRestartBehavior = basedOnReturnCode).
|
|
45430
|
+
*/
|
|
45431
|
+
installExperience: windowsAutoUpdateCatalogAppInstallExperience | null;
|
|
43586
45432
|
/**
|
|
43587
45433
|
* The identifier of a specific branch in a product, which is a specific subset of product functionality as defined by the publisher . This is run-time resolved to be the latest MobileAppCatalogPackage in the branch. (example:'31a4c766-f23d-8d41-4803-35e155be7389'). Read-Only
|
|
43588
45434
|
*/
|
|
@@ -46179,6 +48025,140 @@ namespace reference.`microsoft.graph` {
|
|
|
46179
48025
|
roleScopeTagIds: string[] | null;
|
|
46180
48026
|
}
|
|
46181
48027
|
|
|
48028
|
+
enum accessPackageAssignmentFilterByCurrentUserOptions {
|
|
48029
|
+
target: 1,
|
|
48030
|
+
createdBy: 2,
|
|
48031
|
+
unknownFutureValue: 99,
|
|
48032
|
+
targetManager: 100,
|
|
48033
|
+
targetAgentIdentitySponsorOrOwner: 101,
|
|
48034
|
+
}
|
|
48035
|
+
|
|
48036
|
+
enum accessPackageAssignmentRequestFilterByCurrentUserOptions {
|
|
48037
|
+
target: 1,
|
|
48038
|
+
createdBy: 2,
|
|
48039
|
+
approver: 3,
|
|
48040
|
+
unknownFutureValue: 99,
|
|
48041
|
+
targetOrRequestor: 100,
|
|
48042
|
+
targetManager: 101,
|
|
48043
|
+
requestForOthers: 102,
|
|
48044
|
+
targetAgentIdentitySponsorOrOwner: 103,
|
|
48045
|
+
}
|
|
48046
|
+
|
|
48047
|
+
enum accessPackageCustomExtensionHandlerStatus {
|
|
48048
|
+
requestSent: 1,
|
|
48049
|
+
requestReceived: 2,
|
|
48050
|
+
unknownFutureValue: 3,
|
|
48051
|
+
}
|
|
48052
|
+
|
|
48053
|
+
enum accessPackageCustomExtensionStage {
|
|
48054
|
+
assignmentRequestCreated: 1,
|
|
48055
|
+
assignmentRequestApproved: 2,
|
|
48056
|
+
assignmentRequestGranted: 3,
|
|
48057
|
+
assignmentRequestRemoved: 4,
|
|
48058
|
+
assignmentFourteenDaysBeforeExpiration: 5,
|
|
48059
|
+
assignmentOneDayBeforeExpiration: 6,
|
|
48060
|
+
unknownFutureValue: 7,
|
|
48061
|
+
}
|
|
48062
|
+
|
|
48063
|
+
enum accessPackageFilterByCurrentUserOptions {
|
|
48064
|
+
allowedRequestor: 1,
|
|
48065
|
+
unknownFutureValue: 99,
|
|
48066
|
+
}
|
|
48067
|
+
|
|
48068
|
+
enum accessPackageSubjectLifecycle {
|
|
48069
|
+
notDefined: 0,
|
|
48070
|
+
notGoverned: 1,
|
|
48071
|
+
governed: 2,
|
|
48072
|
+
unknownFutureValue: 3,
|
|
48073
|
+
}
|
|
48074
|
+
|
|
48075
|
+
@graphFlags
|
|
48076
|
+
enum accessPackageSuggestionFilterByCurrentUserOptions {
|
|
48077
|
+
none: 0,
|
|
48078
|
+
relatedPeopleAssignments: 1,
|
|
48079
|
+
assignmentHistory: 2,
|
|
48080
|
+
unknownFutureValue: 4,
|
|
48081
|
+
}
|
|
48082
|
+
|
|
48083
|
+
enum accessPackageSuggestionRelatedPeopleInsightLevel {
|
|
48084
|
+
disabled: 0,
|
|
48085
|
+
count: 1,
|
|
48086
|
+
countAndNames: 2,
|
|
48087
|
+
unknownFutureValue: 3,
|
|
48088
|
+
}
|
|
48089
|
+
|
|
48090
|
+
enum accessReviewHistoryDecisionFilter {
|
|
48091
|
+
approve: 0,
|
|
48092
|
+
deny: 1,
|
|
48093
|
+
notReviewed: 2,
|
|
48094
|
+
dontKnow: 3,
|
|
48095
|
+
notNotified: 4,
|
|
48096
|
+
unknownFutureValue: 5,
|
|
48097
|
+
}
|
|
48098
|
+
|
|
48099
|
+
enum accessReviewHistoryStatus {
|
|
48100
|
+
done: 0,
|
|
48101
|
+
inprogress: 1,
|
|
48102
|
+
error: 2,
|
|
48103
|
+
requested: 3,
|
|
48104
|
+
unknownFutureValue: 4,
|
|
48105
|
+
}
|
|
48106
|
+
|
|
48107
|
+
enum accessReviewInstanceDecisionItemFilterByCurrentUserOptions {
|
|
48108
|
+
reviewer: 1,
|
|
48109
|
+
unknownFutureValue: 2,
|
|
48110
|
+
}
|
|
48111
|
+
|
|
48112
|
+
enum accessReviewInstanceFilterByCurrentUserOptions {
|
|
48113
|
+
reviewer: 1,
|
|
48114
|
+
unknownFutureValue: 2,
|
|
48115
|
+
}
|
|
48116
|
+
|
|
48117
|
+
enum accessReviewPrincipalScopeType {
|
|
48118
|
+
allUsers: 0,
|
|
48119
|
+
guestUsers: 1,
|
|
48120
|
+
inactiveUsers: 2,
|
|
48121
|
+
inactiveGuestUsers: 3,
|
|
48122
|
+
unknownFutureValue: 4,
|
|
48123
|
+
}
|
|
48124
|
+
|
|
48125
|
+
enum accessReviewResourceScopeType {
|
|
48126
|
+
group: 0,
|
|
48127
|
+
catalog: 1,
|
|
48128
|
+
servicePrincipal: 2,
|
|
48129
|
+
directoryRole: 3,
|
|
48130
|
+
accessPackageAssignmentPolicy: 4,
|
|
48131
|
+
unknownFutureValue: 5,
|
|
48132
|
+
}
|
|
48133
|
+
|
|
48134
|
+
enum accessReviewReviewerScopeType {
|
|
48135
|
+
user: 0,
|
|
48136
|
+
group: 1,
|
|
48137
|
+
self: 2,
|
|
48138
|
+
manager: 3,
|
|
48139
|
+
sponsor: 4,
|
|
48140
|
+
resourceOwner: 5,
|
|
48141
|
+
managerOrSponsor: 6,
|
|
48142
|
+
unknownFutureValue: 7,
|
|
48143
|
+
}
|
|
48144
|
+
|
|
48145
|
+
enum accessReviewScheduleDefinitionFilterByCurrentUserOptions {
|
|
48146
|
+
reviewer: 1,
|
|
48147
|
+
unknownFutureValue: 2,
|
|
48148
|
+
}
|
|
48149
|
+
|
|
48150
|
+
enum accessReviewStageFilterByCurrentUserOptions {
|
|
48151
|
+
reviewer: 1,
|
|
48152
|
+
unknownFutureValue: 2,
|
|
48153
|
+
}
|
|
48154
|
+
|
|
48155
|
+
enum accessReviewTimeoutBehavior {
|
|
48156
|
+
keepAccess: 0,
|
|
48157
|
+
removeAccess: 1,
|
|
48158
|
+
acceptAccessRecommendation: 2,
|
|
48159
|
+
unknownFutureValue: 99,
|
|
48160
|
+
}
|
|
48161
|
+
|
|
46182
48162
|
/**
|
|
46183
48163
|
* State of the action on the device
|
|
46184
48164
|
*/
|
|
@@ -46220,6 +48200,14 @@ namespace reference.`microsoft.graph` {
|
|
|
46220
48200
|
unknownFutureValue: 2,
|
|
46221
48201
|
}
|
|
46222
48202
|
|
|
48203
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
48204
|
+
enum activityDomain {
|
|
48205
|
+
`unknown`: 0,
|
|
48206
|
+
work: 1,
|
|
48207
|
+
personal: 2,
|
|
48208
|
+
unrestricted: 3,
|
|
48209
|
+
}
|
|
48210
|
+
|
|
46223
48211
|
enum activityType {
|
|
46224
48212
|
signin: 0,
|
|
46225
48213
|
user: 1,
|
|
@@ -47469,6 +49457,18 @@ namespace reference.`microsoft.graph` {
|
|
|
47469
49457
|
*/
|
|
47470
49458
|
wpaPersonal: 4,
|
|
47471
49459
|
unknownFutureValue: 5,
|
|
49460
|
+
/**
|
|
49461
|
+
* Indicates Android Wi-Fi Security Type is set to WPA2. If supported by the platform, the device will attempt WPA3 first and will fall back to WPA2 if necessary. This restricts the preSharedKey to a string between 8 and 64 characters long. Use AndroidWorkProfileWifiConfiguration to configure basic Wi-Fi options.
|
|
49462
|
+
*/
|
|
49463
|
+
wpa2Personal: 6,
|
|
49464
|
+
/**
|
|
49465
|
+
* Indicates Android Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2. This restricts the preSharedKey to a string between 8 and 64 characters long. Use AndroidWorkProfileWifiConfiguration to configure basic Wi-Fi options.
|
|
49466
|
+
*/
|
|
49467
|
+
wpa3Personal: 7,
|
|
49468
|
+
/**
|
|
49469
|
+
* Indicates Android Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2. Must use AndroidWorkProfileEnterpriseWifiConfiguration type to configure enterprise options.
|
|
49470
|
+
*/
|
|
49471
|
+
wpa3Enterprise: 8,
|
|
47472
49472
|
}
|
|
47473
49473
|
|
|
47474
49474
|
/**
|
|
@@ -47625,7 +49625,6 @@ namespace reference.`microsoft.graph` {
|
|
|
47625
49625
|
/**
|
|
47626
49626
|
* Wi-Fi Security Types for AOSP Device Owner.
|
|
47627
49627
|
*/
|
|
47628
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
47629
49628
|
enum aospDeviceOwnerWiFiSecurityType {
|
|
47630
49629
|
/**
|
|
47631
49630
|
* Open (No Authentication).
|
|
@@ -47643,6 +49642,23 @@ namespace reference.`microsoft.graph` {
|
|
|
47643
49642
|
* WPA-Enterprise/WPA2-Enterprise. Must use AOSPDeviceOwnerEnterpriseWifiConfiguration type to configure enterprise options.
|
|
47644
49643
|
*/
|
|
47645
49644
|
wpaEnterprise: 4,
|
|
49645
|
+
unknownFutureValue: 5,
|
|
49646
|
+
/**
|
|
49647
|
+
* Indicates the Wi-Fi Security Type is set to WPA2. If supported by the platform, the device will attempt WPA3 first and will fall back to WPA2 if necessary.
|
|
49648
|
+
*/
|
|
49649
|
+
wpa2Personal: 6,
|
|
49650
|
+
/**
|
|
49651
|
+
* Indicates the Wi-Fi Security Type is set to WPA2. If supported by the platform, the device will attempt WPA3 first and will fall back to WPA2 if necessary. Must use AOSPDeviceOwnerEnterpriseWifiConfiguration type to configure enterprise options.
|
|
49652
|
+
*/
|
|
49653
|
+
wpa2Enterprise: 7,
|
|
49654
|
+
/**
|
|
49655
|
+
* Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2.
|
|
49656
|
+
*/
|
|
49657
|
+
wpa3Personal: 8,
|
|
49658
|
+
/**
|
|
49659
|
+
* Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2. Must use AOSPDeviceOwnerEnterpriseWifiConfiguration type to configure enterprise options.
|
|
49660
|
+
*/
|
|
49661
|
+
wpa3Enterprise: 9,
|
|
47646
49662
|
}
|
|
47647
49663
|
|
|
47648
49664
|
/**
|
|
@@ -48098,6 +50114,20 @@ namespace reference.`microsoft.graph` {
|
|
|
48098
50114
|
unknownFutureValue: 3,
|
|
48099
50115
|
}
|
|
48100
50116
|
|
|
50117
|
+
enum approvalFilterByCurrentUserOptions {
|
|
50118
|
+
target: 0,
|
|
50119
|
+
createdBy: 1,
|
|
50120
|
+
approver: 2,
|
|
50121
|
+
unknownFutureValue: 3,
|
|
50122
|
+
}
|
|
50123
|
+
|
|
50124
|
+
enum approverInformationVisibility {
|
|
50125
|
+
default: 0,
|
|
50126
|
+
notVisible: 1,
|
|
50127
|
+
visible: 2,
|
|
50128
|
+
unknownFutureValue: 3,
|
|
50129
|
+
}
|
|
50130
|
+
|
|
48101
50131
|
/**
|
|
48102
50132
|
* Device app management task mitigation type.
|
|
48103
50133
|
*/
|
|
@@ -49277,7 +51307,7 @@ namespace reference.`microsoft.graph` {
|
|
|
49277
51307
|
}
|
|
49278
51308
|
|
|
49279
51309
|
/**
|
|
49280
|
-
* Enum type of possible certification authority statuses. These statuses indicate whether a certification authority is currently able to issue certificates
|
|
51310
|
+
* Enum type of possible certification authority statuses. These statuses indicate whether a certification authority is currently able to issue certificates, temporarily paused, pending signing, revoked, or expired.
|
|
49281
51311
|
*/
|
|
49282
51312
|
enum cloudCertificationAuthorityStatus {
|
|
49283
51313
|
/**
|
|
@@ -49301,6 +51331,10 @@ namespace reference.`microsoft.graph` {
|
|
|
49301
51331
|
*/
|
|
49302
51332
|
signingPending: 4,
|
|
49303
51333
|
unknownFutureValue: 5,
|
|
51334
|
+
/**
|
|
51335
|
+
* Indicates certification authority has expired and cannot issue certificates until renewed and activated.
|
|
51336
|
+
*/
|
|
51337
|
+
expired: 6,
|
|
49304
51338
|
}
|
|
49305
51339
|
|
|
49306
51340
|
/**
|
|
@@ -49326,6 +51360,49 @@ namespace reference.`microsoft.graph` {
|
|
|
49326
51360
|
unknownFutureValue: 4,
|
|
49327
51361
|
}
|
|
49328
51362
|
|
|
51363
|
+
/**
|
|
51364
|
+
* Enum type of possible certification authority version statuses. These statuses indicate the lifecycle state of a certification authority version, including whether it is currently active, staged for renewal, retired, or in other states.
|
|
51365
|
+
*/
|
|
51366
|
+
enum cloudCertificationAuthorityVersionStatus {
|
|
51367
|
+
/**
|
|
51368
|
+
* Default. Indicates certification authority version has an unknown or invalid status.
|
|
51369
|
+
*/
|
|
51370
|
+
`unknown`: 0,
|
|
51371
|
+
/**
|
|
51372
|
+
* Indicates certification authority version is active and can issue leaf certificates.
|
|
51373
|
+
*/
|
|
51374
|
+
active: 1,
|
|
51375
|
+
/**
|
|
51376
|
+
* Indicates certification authority version was created during the renewal process and is currently in the staged phase. Upon activation, it becomes the new active certification authority version.
|
|
51377
|
+
*/
|
|
51378
|
+
staged: 2,
|
|
51379
|
+
/**
|
|
51380
|
+
* Indicates certification authority version has been paused from issuing certificates. The paused state is supported only for active certification authority versions. Staged certification authority versions cannot be paused and may only be revoked.
|
|
51381
|
+
*/
|
|
51382
|
+
paused: 3,
|
|
51383
|
+
/**
|
|
51384
|
+
* Indicates certification authority version has been retired after renewal. The retired certification authority version is not expired and continues to validate certificates it previously issued.
|
|
51385
|
+
*/
|
|
51386
|
+
retired: 4,
|
|
51387
|
+
/**
|
|
51388
|
+
* Indicates certification authority version has exceeded its validity period.
|
|
51389
|
+
*/
|
|
51390
|
+
expired: 5,
|
|
51391
|
+
/**
|
|
51392
|
+
* Indicates certification authority version has been revoked. This is a permanent state that cannot be changed.
|
|
51393
|
+
*/
|
|
51394
|
+
revoked: 6,
|
|
51395
|
+
/**
|
|
51396
|
+
* Indicates certification authority version has been decommissioned. Only applicable for staged certification authority versions. Decommissioned certification authority versions cannot issue or validate leaf certificates. This is a permanent state that cannot be changed.
|
|
51397
|
+
*/
|
|
51398
|
+
decommissioned: 7,
|
|
51399
|
+
/**
|
|
51400
|
+
* Indicates certification authority version was created with a Bring Your Own CA (BYOCA) root and requires external signing.
|
|
51401
|
+
*/
|
|
51402
|
+
signingPending: 8,
|
|
51403
|
+
unknownFutureValue: 9,
|
|
51404
|
+
}
|
|
51405
|
+
|
|
49329
51406
|
/**
|
|
49330
51407
|
* Error code for rule validation.
|
|
49331
51408
|
*/
|
|
@@ -49827,6 +51904,12 @@ namespace reference.`microsoft.graph` {
|
|
|
49827
51904
|
notConfigured: 3,
|
|
49828
51905
|
}
|
|
49829
51906
|
|
|
51907
|
+
enum connectedOrganizationState {
|
|
51908
|
+
configured: 0,
|
|
51909
|
+
proposed: 1,
|
|
51910
|
+
unknownFutureValue: 2,
|
|
51911
|
+
}
|
|
51912
|
+
|
|
49830
51913
|
enum connectorGroupRegion {
|
|
49831
51914
|
nam: 0,
|
|
49832
51915
|
eur: 1,
|
|
@@ -49941,6 +52024,17 @@ namespace reference.`microsoft.graph` {
|
|
|
49941
52024
|
inactive: 1,
|
|
49942
52025
|
}
|
|
49943
52026
|
|
|
52027
|
+
enum connectorType {
|
|
52028
|
+
sapIag: 0,
|
|
52029
|
+
sapAc: 1,
|
|
52030
|
+
unknownFutureValue: 3,
|
|
52031
|
+
}
|
|
52032
|
+
|
|
52033
|
+
enum consentRequestFilterByCurrentUserOptions {
|
|
52034
|
+
reviewer: 0,
|
|
52035
|
+
unknownFutureValue: 1,
|
|
52036
|
+
}
|
|
52037
|
+
|
|
49944
52038
|
enum contentModelType {
|
|
49945
52039
|
teachingMethod: 0,
|
|
49946
52040
|
layoutMethod: 1,
|
|
@@ -49977,6 +52071,15 @@ namespace reference.`microsoft.graph` {
|
|
|
49977
52071
|
unknownFutureValue: 4,
|
|
49978
52072
|
}
|
|
49979
52073
|
|
|
52074
|
+
enum customExtensionCalloutInstanceStatus {
|
|
52075
|
+
calloutSent: 1,
|
|
52076
|
+
callbackReceived: 2,
|
|
52077
|
+
calloutFailed: 3,
|
|
52078
|
+
callbackTimedOut: 4,
|
|
52079
|
+
waitingForCallback: 5,
|
|
52080
|
+
unknownFutureValue: 6,
|
|
52081
|
+
}
|
|
52082
|
+
|
|
49980
52083
|
enum customSecurityAttributeComparisonOperator {
|
|
49981
52084
|
equals: 1,
|
|
49982
52085
|
unknownFutureValue: 2,
|
|
@@ -50068,6 +52171,13 @@ namespace reference.`microsoft.graph` {
|
|
|
50068
52171
|
saturday: 6,
|
|
50069
52172
|
}
|
|
50070
52173
|
|
|
52174
|
+
@graphFlags
|
|
52175
|
+
enum decisionItemPrincipalResourceMembershipType {
|
|
52176
|
+
direct: 1,
|
|
52177
|
+
indirect: 2,
|
|
52178
|
+
unknownFutureValue: 4,
|
|
52179
|
+
}
|
|
52180
|
+
|
|
50071
52181
|
enum defaultMfaMethodType {
|
|
50072
52182
|
none: 0,
|
|
50073
52183
|
mobilePhone: 1,
|
|
@@ -50829,6 +52939,25 @@ namespace reference.`microsoft.graph` {
|
|
|
50829
52939
|
remoteLock: 10,
|
|
50830
52940
|
}
|
|
50831
52941
|
|
|
52942
|
+
/**
|
|
52943
|
+
* Indicates the platform that a device compliance script targets for evaluation.
|
|
52944
|
+
*/
|
|
52945
|
+
enum deviceComplianceScriptPlatformType {
|
|
52946
|
+
/**
|
|
52947
|
+
* Default. Indicates that the compliance script targets devices running Windows 10 and later.
|
|
52948
|
+
*/
|
|
52949
|
+
windows10: 0,
|
|
52950
|
+
/**
|
|
52951
|
+
* Indicates that the compliance script targets devices running Linux.
|
|
52952
|
+
*/
|
|
52953
|
+
linux: 1,
|
|
52954
|
+
/**
|
|
52955
|
+
* Indicates that the compliance script targets devices running macOS.
|
|
52956
|
+
*/
|
|
52957
|
+
macOS: 2,
|
|
52958
|
+
unknownFutureValue: 3,
|
|
52959
|
+
}
|
|
52960
|
+
|
|
50832
52961
|
/**
|
|
50833
52962
|
* Data types for rules.
|
|
50834
52963
|
*/
|
|
@@ -55440,6 +57569,19 @@ namespace reference.`microsoft.graph` {
|
|
|
55440
57569
|
`unknown`: 5,
|
|
55441
57570
|
}
|
|
55442
57571
|
|
|
57572
|
+
enum intelligentInsightConfidence {
|
|
57573
|
+
high: 0,
|
|
57574
|
+
medium: 1,
|
|
57575
|
+
low: 2,
|
|
57576
|
+
unknownFutureValue: 3,
|
|
57577
|
+
}
|
|
57578
|
+
|
|
57579
|
+
enum intelligentInsightRecommendation {
|
|
57580
|
+
approve: 0,
|
|
57581
|
+
deny: 1,
|
|
57582
|
+
unknownFutureValue: 2,
|
|
57583
|
+
}
|
|
57584
|
+
|
|
55443
57585
|
/**
|
|
55444
57586
|
* PFX Import Options.
|
|
55445
57587
|
*/
|
|
@@ -56129,6 +58271,13 @@ namespace reference.`microsoft.graph` {
|
|
|
56129
58271
|
enabled: 1,
|
|
56130
58272
|
}
|
|
56131
58273
|
|
|
58274
|
+
enum m365ResourceType {
|
|
58275
|
+
none: 0,
|
|
58276
|
+
group: 1,
|
|
58277
|
+
user: 2,
|
|
58278
|
+
unknownFutureValue: 3,
|
|
58279
|
+
}
|
|
58280
|
+
|
|
56132
58281
|
/**
|
|
56133
58282
|
* An enum representing the possible values of Android MAC Address Randomization Mode.
|
|
56134
58283
|
*/
|
|
@@ -56822,6 +58971,25 @@ namespace reference.`microsoft.graph` {
|
|
|
56822
58971
|
alphanumericAndSymbol: 1,
|
|
56823
58972
|
}
|
|
56824
58973
|
|
|
58974
|
+
/**
|
|
58975
|
+
* Specifies whether Microsoft Purview Data Loss Prevention (DLP) content evaluation is required before data sharing.
|
|
58976
|
+
*/
|
|
58977
|
+
enum managedAppPurviewEvaluationRequirement {
|
|
58978
|
+
/**
|
|
58979
|
+
* Microsoft Purview Data Loss Prevention (DLP) content evaluation is not required.
|
|
58980
|
+
*/
|
|
58981
|
+
notRequired: 0,
|
|
58982
|
+
/**
|
|
58983
|
+
* Microsoft Purview Data Loss Prevention (DLP) content evaluation is required when online; sharing is allowed if the service is unreachable.
|
|
58984
|
+
*/
|
|
58985
|
+
requiredWhenOnline: 1,
|
|
58986
|
+
/**
|
|
58987
|
+
* Microsoft Purview Data Loss Prevention (DLP) content evaluation is always required; sharing is blocked if the service is unreachable.
|
|
58988
|
+
*/
|
|
58989
|
+
required: 2,
|
|
58990
|
+
unknownFutureValue: 3,
|
|
58991
|
+
}
|
|
58992
|
+
|
|
56825
58993
|
/**
|
|
56826
58994
|
* An admin initiated action to be applied on a managed app.
|
|
56827
58995
|
*/
|
|
@@ -58281,6 +60449,18 @@ namespace reference.`microsoft.graph` {
|
|
|
58281
60449
|
* Default. Indicates that the configured policy type is unknown. Not a valid policy type in an OperationApprovalPolicy.
|
|
58282
60450
|
*/
|
|
58283
60451
|
`unknown`: 0,
|
|
60452
|
+
/**
|
|
60453
|
+
* Indicates that the configured policy type is for a Device Wipe Action.
|
|
60454
|
+
*/
|
|
60455
|
+
deviceWipe: 2,
|
|
60456
|
+
/**
|
|
60457
|
+
* Indicates that the configured policy type is for a Device Retire Action
|
|
60458
|
+
*/
|
|
60459
|
+
deviceRetire: 3,
|
|
60460
|
+
/**
|
|
60461
|
+
* Indicates that the configured policy type is for a Device Delete Action.
|
|
60462
|
+
*/
|
|
60463
|
+
deviceDelete: 5,
|
|
58284
60464
|
/**
|
|
58285
60465
|
* Indicates that the configured policy type is an application type, such as mobile apps or built-in apps.
|
|
58286
60466
|
*/
|
|
@@ -58294,6 +60474,10 @@ namespace reference.`microsoft.graph` {
|
|
|
58294
60474
|
*/
|
|
58295
60475
|
role: 18,
|
|
58296
60476
|
unknownFutureValue: 21,
|
|
60477
|
+
/**
|
|
60478
|
+
* Indicates that the configured policy type is for Tenant Configuration operations.
|
|
60479
|
+
*/
|
|
60480
|
+
tenantConfiguration: 28,
|
|
58297
60481
|
}
|
|
58298
60482
|
|
|
58299
60483
|
/**
|
|
@@ -58747,6 +60931,25 @@ namespace reference.`microsoft.graph` {
|
|
|
58747
60931
|
reference: 4,
|
|
58748
60932
|
}
|
|
58749
60933
|
|
|
60934
|
+
enum plannerRuleKind {
|
|
60935
|
+
taskRule: 1,
|
|
60936
|
+
bucketRule: 2,
|
|
60937
|
+
planRule: 3,
|
|
60938
|
+
unknownFutureValue: 4,
|
|
60939
|
+
}
|
|
60940
|
+
|
|
60941
|
+
enum plannerTaskChatMentionType {
|
|
60942
|
+
user: 1,
|
|
60943
|
+
application: 2,
|
|
60944
|
+
unknownFutureValue: 3,
|
|
60945
|
+
}
|
|
60946
|
+
|
|
60947
|
+
enum plannerTaskChatMessageType {
|
|
60948
|
+
richTextHtml: 1,
|
|
60949
|
+
plainText: 2,
|
|
60950
|
+
unknownFutureValue: 3,
|
|
60951
|
+
}
|
|
60952
|
+
|
|
58750
60953
|
@graphFlags
|
|
58751
60954
|
enum plannerTaskCompletionRequirements {
|
|
58752
60955
|
none: 0,
|
|
@@ -58754,6 +60957,7 @@ namespace reference.`microsoft.graph` {
|
|
|
58754
60957
|
unknownFutureValue: 2,
|
|
58755
60958
|
formCompletion: 4,
|
|
58756
60959
|
approvalCompletion: 8,
|
|
60960
|
+
completionInHostedApp: 16,
|
|
58757
60961
|
}
|
|
58758
60962
|
|
|
58759
60963
|
/**
|
|
@@ -58969,6 +61173,12 @@ namespace reference.`microsoft.graph` {
|
|
|
58969
61173
|
unknownFutureValue: 3,
|
|
58970
61174
|
}
|
|
58971
61175
|
|
|
61176
|
+
enum privilegeLevel {
|
|
61177
|
+
standard: 0,
|
|
61178
|
+
privileged: 1,
|
|
61179
|
+
unknownFutureValue: 2,
|
|
61180
|
+
}
|
|
61181
|
+
|
|
58972
61182
|
/**
|
|
58973
61183
|
* Indicates the type of elevation occured
|
|
58974
61184
|
*/
|
|
@@ -59112,6 +61322,14 @@ namespace reference.`microsoft.graph` {
|
|
|
59112
61322
|
unknownFutureValue: 6,
|
|
59113
61323
|
}
|
|
59114
61324
|
|
|
61325
|
+
enum purviewInsiderRiskManagementLevel {
|
|
61326
|
+
none: 0,
|
|
61327
|
+
minor: 1,
|
|
61328
|
+
moderate: 2,
|
|
61329
|
+
elevated: 3,
|
|
61330
|
+
unknownFutureValue: 4,
|
|
61331
|
+
}
|
|
61332
|
+
|
|
59115
61333
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
59116
61334
|
enum quarantineReason {
|
|
59117
61335
|
EncounteredBaseEscrowThreshold: 0,
|
|
@@ -60539,6 +62757,14 @@ namespace reference.`microsoft.graph` {
|
|
|
60539
62757
|
unknownFutureValue: 4,
|
|
60540
62758
|
}
|
|
60541
62759
|
|
|
62760
|
+
enum roleType {
|
|
62761
|
+
active: 0,
|
|
62762
|
+
eligible: 1,
|
|
62763
|
+
application: 2,
|
|
62764
|
+
delegated: 3,
|
|
62765
|
+
unknownFutureValue: 99,
|
|
62766
|
+
}
|
|
62767
|
+
|
|
60542
62768
|
enum rootDomains {
|
|
60543
62769
|
none: 0,
|
|
60544
62770
|
all: 1,
|
|
@@ -61143,6 +63369,21 @@ namespace reference.`microsoft.graph` {
|
|
|
61143
63369
|
unknownFutureValue: 5,
|
|
61144
63370
|
}
|
|
61145
63371
|
|
|
63372
|
+
enum socialIdentitySourceType {
|
|
63373
|
+
facebook: 1,
|
|
63374
|
+
unknownFutureValue: 2,
|
|
63375
|
+
}
|
|
63376
|
+
|
|
63377
|
+
enum stagedFeatureName {
|
|
63378
|
+
passthroughAuthentication: 0,
|
|
63379
|
+
seamlessSso: 1,
|
|
63380
|
+
passwordHashSync: 2,
|
|
63381
|
+
emailAsAlternateId: 3,
|
|
63382
|
+
unknownFutureValue: 4,
|
|
63383
|
+
certificateBasedAuthentication: 5,
|
|
63384
|
+
multiFactorAuthentication: 6,
|
|
63385
|
+
}
|
|
63386
|
+
|
|
61146
63387
|
/**
|
|
61147
63388
|
* State Management Setting.
|
|
61148
63389
|
*/
|
|
@@ -62136,12 +64377,24 @@ namespace reference.`microsoft.graph` {
|
|
|
62136
64377
|
oaepSha512: 5,
|
|
62137
64378
|
}
|
|
62138
64379
|
|
|
64380
|
+
enum userSignInRecommendationScope {
|
|
64381
|
+
tenant: 0,
|
|
64382
|
+
application: 1,
|
|
64383
|
+
unknownFutureValue: 2,
|
|
64384
|
+
}
|
|
64385
|
+
|
|
62139
64386
|
enum userType {
|
|
62140
64387
|
member: 0,
|
|
62141
64388
|
guest: 1,
|
|
62142
64389
|
unknownFutureValue: 2,
|
|
62143
64390
|
}
|
|
62144
64391
|
|
|
64392
|
+
enum verifiableCredentialPresentationStatusCode {
|
|
64393
|
+
request_retrieved: 0,
|
|
64394
|
+
presentation_verified: 1,
|
|
64395
|
+
unknownFutureValue: 9,
|
|
64396
|
+
}
|
|
64397
|
+
|
|
62145
64398
|
/**
|
|
62146
64399
|
* Generic visibility state.
|
|
62147
64400
|
*/
|
|
@@ -62858,6 +65111,10 @@ namespace reference.`microsoft.graph` {
|
|
|
62858
65111
|
* Indicates Wi-Fi security type is associated with WPA3-Personal. Provides stronger encryption using Simultaneous Authentication of Equals (SAE).
|
|
62859
65112
|
*/
|
|
62860
65113
|
wpa3Personal: 7,
|
|
65114
|
+
/**
|
|
65115
|
+
* Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2. Must use WindowsWifiEnterpriseEAPConfiguration type to configure enterprise options.
|
|
65116
|
+
*/
|
|
65117
|
+
wpa3Enterprise: 8,
|
|
62861
65118
|
}
|
|
62862
65119
|
|
|
62863
65120
|
/**
|
|
@@ -62989,6 +65246,29 @@ namespace reference.`microsoft.graph` {
|
|
|
62989
65246
|
unknownFutureValue: 9,
|
|
62990
65247
|
}
|
|
62991
65248
|
|
|
65249
|
+
/**
|
|
65250
|
+
* Indicates whether app-in-use detection is enabled before app enforcement, and if enabled, the action to take when the app is detected to be in-use.
|
|
65251
|
+
*/
|
|
65252
|
+
enum win32LobAppInUseActionType {
|
|
65253
|
+
/**
|
|
65254
|
+
* Default. Indicates that no in-use detection will be evaluated before an app enforcement.
|
|
65255
|
+
*/
|
|
65256
|
+
notEnabled: 0,
|
|
65257
|
+
/**
|
|
65258
|
+
* Indicates that the in-use detection will occur immediately before app enforcement. Enforcement will not occur if the app is detected to be in-use, and an error status will be reported for the app.
|
|
65259
|
+
*/
|
|
65260
|
+
fail: 1,
|
|
65261
|
+
/**
|
|
65262
|
+
* Indicates that in-use detection will occur immediately before app enforcement. If the app is detected to be in-use, the processes specified in the corresponding process detection rules will be terminated, and app enforcement will commence.
|
|
65263
|
+
*/
|
|
65264
|
+
terminateWithoutUserInteraction: 2,
|
|
65265
|
+
/**
|
|
65266
|
+
* Indicates that in-use detection will occur immediately before app enforcement. If the app is detected to be in-use, the end user will be prompted according to the configured deferral and countdown settings, and the processes specified in the corresponding process detection rules will be terminated before app enforcement is commenced. If any of the processes cannot be terminated, the app will not be enforced, and an error status will be reported for the app.
|
|
65267
|
+
*/
|
|
65268
|
+
terminateWithUserInteraction: 3,
|
|
65269
|
+
unknownFutureValue: 4,
|
|
65270
|
+
}
|
|
65271
|
+
|
|
62992
65272
|
/**
|
|
62993
65273
|
* Indicates the package type of an MSI Win32LobApp.
|
|
62994
65274
|
*/
|
|
@@ -63097,6 +65377,21 @@ namespace reference.`microsoft.graph` {
|
|
|
63097
65377
|
`boolean`: 6,
|
|
63098
65378
|
}
|
|
63099
65379
|
|
|
65380
|
+
/**
|
|
65381
|
+
* A list of possible operations for rules used to make determinations about whether an application is in-use based on process state.
|
|
65382
|
+
*/
|
|
65383
|
+
enum win32LobAppProcessOperationType {
|
|
65384
|
+
/**
|
|
65385
|
+
* Default. Not configured.
|
|
65386
|
+
*/
|
|
65387
|
+
notConfigured: 0,
|
|
65388
|
+
/**
|
|
65389
|
+
* Indicates that the rule evaluates whether the specified process exists (is running) on the device.
|
|
65390
|
+
*/
|
|
65391
|
+
exists: 1,
|
|
65392
|
+
unknownFutureValue: 2,
|
|
65393
|
+
}
|
|
65394
|
+
|
|
63100
65395
|
/**
|
|
63101
65396
|
* Contains all supported registry data detection type.
|
|
63102
65397
|
*/
|
|
@@ -63251,7 +65546,6 @@ namespace reference.`microsoft.graph` {
|
|
|
63251
65546
|
/**
|
|
63252
65547
|
* Contains rule types for Win32 LOB apps.
|
|
63253
65548
|
*/
|
|
63254
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
63255
65549
|
enum win32LobAppRuleType {
|
|
63256
65550
|
/**
|
|
63257
65551
|
* Detection rule.
|
|
@@ -63261,6 +65555,11 @@ namespace reference.`microsoft.graph` {
|
|
|
63261
65555
|
* Requirement rule.
|
|
63262
65556
|
*/
|
|
63263
65557
|
requirement: 1,
|
|
65558
|
+
/**
|
|
65559
|
+
* Indicates that the associated rule represents an executable for app in-use detection.
|
|
65560
|
+
*/
|
|
65561
|
+
inUse: 2,
|
|
65562
|
+
unknownFutureValue: 3,
|
|
63264
65563
|
}
|
|
63265
65564
|
|
|
63266
65565
|
/**
|
|
@@ -63772,6 +66071,63 @@ namespace reference.`microsoft.graph` {
|
|
|
63772
66071
|
unknownFutureValue: 3,
|
|
63773
66072
|
}
|
|
63774
66073
|
|
|
66074
|
+
/**
|
|
66075
|
+
* Indicates the delivery optimization download priority level for app content. This controls whether the download uses background bandwidth (minimal impact on other network activity) or foreground bandwidth (prioritized download at the expense of other network traffic).
|
|
66076
|
+
*/
|
|
66077
|
+
enum windowsAutoUpdateCatalogAppDeliveryOptimizationPriority {
|
|
66078
|
+
/**
|
|
66079
|
+
* Indicates that no delivery optimization priority is configured. The download uses normal background priority, which minimizes impact on other network activity. This is the default value when the property is omitted.
|
|
66080
|
+
*/
|
|
66081
|
+
notConfigured: 0,
|
|
66082
|
+
/**
|
|
66083
|
+
* Indicates that the app content download uses foreground priority, which prioritizes the download over background network tasks. This may result in faster installation but increased network bandwidth consumption. In National Cloud environments, this value is accepted and stored but has no effect on device behavior.
|
|
66084
|
+
*/
|
|
66085
|
+
foreground: 1,
|
|
66086
|
+
unknownFutureValue: 2,
|
|
66087
|
+
}
|
|
66088
|
+
|
|
66089
|
+
/**
|
|
66090
|
+
* Indicates which notifications the Intune management extension displays to the end user during the app installation and restart lifecycle on managed devices.
|
|
66091
|
+
*/
|
|
66092
|
+
enum windowsAutoUpdateCatalogAppNotificationType {
|
|
66093
|
+
/**
|
|
66094
|
+
* Indicates that all notifications related to app installation and restart are displayed to the end user.
|
|
66095
|
+
*/
|
|
66096
|
+
showAll: 0,
|
|
66097
|
+
/**
|
|
66098
|
+
* Indicates that only restart notifications are displayed to the end user; other installation progress notifications are suppressed.
|
|
66099
|
+
*/
|
|
66100
|
+
showReboot: 1,
|
|
66101
|
+
/**
|
|
66102
|
+
* Indicates that all notifications related to app installation and restart are suppressed. The end user is not informed of the installation or pending restarts.
|
|
66103
|
+
*/
|
|
66104
|
+
hideAll: 2,
|
|
66105
|
+
unknownFutureValue: 3,
|
|
66106
|
+
}
|
|
66107
|
+
|
|
66108
|
+
/**
|
|
66109
|
+
* Indicates how the device handles restarts after the app installer finishes executing. This setting, configured on the app's installExperience, determines whether the Intune management extension initiates, suppresses, or forces a restart based on the installer's exit code.
|
|
66110
|
+
*/
|
|
66111
|
+
enum windowsAutoUpdateCatalogAppRestartBehavior {
|
|
66112
|
+
/**
|
|
66113
|
+
* Indicates that the Intune management extension restarts the device only if the app installer returns an exit code that signals a reboot is required (e.g., exit code 3010).
|
|
66114
|
+
*/
|
|
66115
|
+
basedOnReturnCode: 0,
|
|
66116
|
+
/**
|
|
66117
|
+
* Indicates that the Intune management extension does not take any specific action to control restarts. If the app installer initiates a restart (e.g., an MSI with ForceReboot action), it is allowed to proceed.
|
|
66118
|
+
*/
|
|
66119
|
+
allow: 1,
|
|
66120
|
+
/**
|
|
66121
|
+
* Indicates that the Intune management extension attempts to suppress restarts initiated by the installer. For MSI-based installations, this passes the REBOOT=ReallySuppress property to msiexec. Not all installers honor suppression.
|
|
66122
|
+
*/
|
|
66123
|
+
suppress: 2,
|
|
66124
|
+
/**
|
|
66125
|
+
* Indicates that the Intune management extension forces an immediate device restart after the app installation completes, regardless of the installer's exit code.
|
|
66126
|
+
*/
|
|
66127
|
+
force: 3,
|
|
66128
|
+
unknownFutureValue: 4,
|
|
66129
|
+
}
|
|
66130
|
+
|
|
63775
66131
|
/**
|
|
63776
66132
|
* Enum values for the various WindowsDefenderApplicationControl supplemental policy deployment statuses.
|
|
63777
66133
|
*/
|