@microsoft/typespec-msgraph-reference 1.0.9 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.rush/temp/package-deps_build.json +17 -17
- package/CHANGELOG.md +18 -0
- package/lib/Bleu/Beta/main.tsp +1011 -52
- package/lib/Bleu/V1.0/main.tsp +27 -2
- package/lib/Delos/Beta/main.tsp +1704 -51
- package/lib/Delos/V1.0/main.tsp +468 -1
- package/lib/Fairfax/Beta/main.tsp +865 -55
- package/lib/Fairfax/V1.0/main.tsp +93 -3
- package/lib/GovSG/Beta/main.tsp +28 -0
- package/lib/Mooncake/Beta/main.tsp +709 -52
- package/lib/Mooncake/V1.0/main.tsp +103 -3
- package/lib/Prod/Beta/main.tsp +1190 -332
- package/lib/Prod/V1.0/main.tsp +310 -2
- package/lib/USNat/Beta/main.tsp +145 -9
- package/lib/USNat/V1.0/main.tsp +91 -1
- package/lib/USSec/Beta/main.tsp +145 -9
- package/lib/USSec/V1.0/main.tsp +91 -1
- package/package.json +2 -2
package/lib/Prod/Beta/main.tsp
CHANGED
|
@@ -77,6 +77,8 @@ scalar binary; //TODO: Enables support for Edm.Binary
|
|
|
77
77
|
// Metadata item DeprecatedDefinition_credentialUserRegistrationDetails was already defined with a different value.
|
|
78
78
|
@deprecatedDefinition("SignInWithAlias", "<ChangeLogCategory>", "2025-03-26", "2025-12-25", "")
|
|
79
79
|
@deprecatedDefinition("Remove_Breakdown_APIs", "<ChangeLogCategory>", "2024-02-02", "2024-02-16", "The Inactive Users By Application Metric is deprecated and will stop returning data on February 16, 2024. Please use the existing Inactive Users API.")
|
|
80
|
+
@deprecatedDefinition("Rv1MigrationDeprecation", "<ChangeLogCategory>", "2026-04-03", "2026-07-07", "This API is deprecated and will stop returning data on July 7, 2026. Use POST /deviceManagement/reports/getConfigurationPolicyDeviceSummaryReport instead.")
|
|
81
|
+
// Metadata item DeprecatedDefinition_Rv1MigrationDeprecation was already defined with a different value.
|
|
80
82
|
@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.")
|
|
81
83
|
@privatePreviewDefinition("remoteTenantGroupsAPI", "2025-12-02", "2028-12-07", "<theOwner>")
|
|
82
84
|
@deprecatedDefinition("Removal", "<ChangeLogCategory>", "2023-12-05", "2025-12-05", "The users enum value is deprecated. Use specificPeople instead.")
|
|
@@ -158,6 +160,10 @@ namespace reference.`microsoft.graph` {
|
|
|
158
160
|
state: string | null;
|
|
159
161
|
}
|
|
160
162
|
|
|
163
|
+
@complex model accessPackageAssignmentRequestParameters {
|
|
164
|
+
bypassApproval: boolean;
|
|
165
|
+
}
|
|
166
|
+
|
|
161
167
|
@complex model accessPackageAssignmentRequestRequirements {
|
|
162
168
|
existingAnswers: accessPackageAnswer[] | null;
|
|
163
169
|
isApprovalRequired: boolean | null;
|
|
@@ -569,6 +575,14 @@ namespace reference.`microsoft.graph` {
|
|
|
569
575
|
shareUserExperienceAnalyticsData: adminConsentState;
|
|
570
576
|
}
|
|
571
577
|
|
|
578
|
+
@complex model agentBlueprintApiBasedEndpointConfigurationDetails {
|
|
579
|
+
callbackUri: string | null;
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
@complex model agentBlueprintBotBasedEndpointConfigurationDetails {
|
|
583
|
+
botId: string | null;
|
|
584
|
+
}
|
|
585
|
+
|
|
572
586
|
@complex model agentCapabilities {
|
|
573
587
|
extensions: agentExtension[] | null;
|
|
574
588
|
pushNotifications: boolean;
|
|
@@ -582,6 +596,16 @@ namespace reference.`microsoft.graph` {
|
|
|
582
596
|
signature: string;
|
|
583
597
|
}
|
|
584
598
|
|
|
599
|
+
@complex model agentConversationConfiguration {
|
|
600
|
+
messageNotificationMode: agentMessageNotificationMode;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
@complex model agentEndpointConfiguration {
|
|
604
|
+
apiBased: agentBlueprintApiBasedEndpointConfigurationDetails | null;
|
|
605
|
+
botBased: agentBlueprintBotBasedEndpointConfigurationDetails | null;
|
|
606
|
+
configurationType: agentEndpointConfigurationType;
|
|
607
|
+
}
|
|
608
|
+
|
|
585
609
|
@complex model agentExtension {
|
|
586
610
|
description: string | null;
|
|
587
611
|
params: agentExtensionParams | null;
|
|
@@ -621,6 +645,13 @@ namespace reference.`microsoft.graph` {
|
|
|
621
645
|
tags: string[];
|
|
622
646
|
}
|
|
623
647
|
|
|
648
|
+
@complex model agentTeamworkConfiguration {
|
|
649
|
+
channelConfiguration: agentConversationConfiguration | null;
|
|
650
|
+
groupChatConfiguration: agentConversationConfiguration | null;
|
|
651
|
+
meetingChatConfiguration: agentConversationConfiguration | null;
|
|
652
|
+
oneOnOneChatConfiguration: agentConversationConfiguration | null;
|
|
653
|
+
}
|
|
654
|
+
|
|
624
655
|
@complex model aggregationOption {
|
|
625
656
|
bucketDefinition: bucketAggregationDefinition;
|
|
626
657
|
field: string;
|
|
@@ -1416,6 +1447,9 @@ namespace reference.`microsoft.graph` {
|
|
|
1416
1447
|
displayName: string | null;
|
|
1417
1448
|
}
|
|
1418
1449
|
|
|
1450
|
+
@complex model appGalleryIntegrationRequestUpdateTypeOption {
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1419
1453
|
@complex model appHostedMediaConfig extends mediaConfig {
|
|
1420
1454
|
blob: string | null;
|
|
1421
1455
|
}
|
|
@@ -1505,6 +1539,12 @@ namespace reference.`microsoft.graph` {
|
|
|
1505
1539
|
headquarters: string | null;
|
|
1506
1540
|
}
|
|
1507
1541
|
|
|
1542
|
+
@complex model applicationResourcePermission {
|
|
1543
|
+
id: string;
|
|
1544
|
+
name: string | null;
|
|
1545
|
+
type: applicationPermissionType;
|
|
1546
|
+
}
|
|
1547
|
+
|
|
1508
1548
|
@complex model applicationRiskFactorCertificateInfo {
|
|
1509
1549
|
hasBadCommonName: boolean | null;
|
|
1510
1550
|
hasInsecureSignature: boolean | null;
|
|
@@ -1626,6 +1666,11 @@ namespace reference.`microsoft.graph` {
|
|
|
1626
1666
|
@references servicePrincipal: servicePrincipal | null;
|
|
1627
1667
|
}
|
|
1628
1668
|
|
|
1669
|
+
@complex model applicationsRequiredResourceAccess {
|
|
1670
|
+
permissions: applicationResourcePermission[];
|
|
1671
|
+
resourceAppId: string;
|
|
1672
|
+
}
|
|
1673
|
+
|
|
1629
1674
|
@complex model applicationTemplateCategory {
|
|
1630
1675
|
displayName: string;
|
|
1631
1676
|
value: string;
|
|
@@ -2176,6 +2221,12 @@ namespace reference.`microsoft.graph` {
|
|
|
2176
2221
|
tollNumbers: string[] | null;
|
|
2177
2222
|
}
|
|
2178
2223
|
|
|
2224
|
+
@complex model audioMetadata {
|
|
2225
|
+
bitDepth: int32;
|
|
2226
|
+
channels: int32;
|
|
2227
|
+
sampleRateHz: int32;
|
|
2228
|
+
}
|
|
2229
|
+
|
|
2179
2230
|
@complex model auditActivityInitiator {
|
|
2180
2231
|
app: appIdentity | null;
|
|
2181
2232
|
linkableIdentifiers: linkableIdentifiers | null;
|
|
@@ -2341,6 +2392,7 @@ namespace reference.`microsoft.graph` {
|
|
|
2341
2392
|
|
|
2342
2393
|
@complex model authenticationBehaviors {
|
|
2343
2394
|
blockAzureADGraphAccess: boolean | null;
|
|
2395
|
+
coopEnforcement: boolean | null;
|
|
2344
2396
|
removeUnverifiedEmailClaim: boolean | null;
|
|
2345
2397
|
requireClientServicePrincipal: boolean | null;
|
|
2346
2398
|
}
|
|
@@ -3430,6 +3482,20 @@ namespace reference.`microsoft.graph` {
|
|
|
3430
3482
|
messageBodyContentType: chatMessageBodyContentType | null;
|
|
3431
3483
|
}
|
|
3432
3484
|
|
|
3485
|
+
@complex model chatMessageCitation {
|
|
3486
|
+
excerpt: string | null;
|
|
3487
|
+
iconType: string | null;
|
|
3488
|
+
id: int32 | null;
|
|
3489
|
+
sensitivityLabel: chatMessageCitationSensitivityLabel | null;
|
|
3490
|
+
title: string | null;
|
|
3491
|
+
webUrl: string | null;
|
|
3492
|
+
}
|
|
3493
|
+
|
|
3494
|
+
@complex model chatMessageCitationSensitivityLabel {
|
|
3495
|
+
description: string | null;
|
|
3496
|
+
displayName: string | null;
|
|
3497
|
+
}
|
|
3498
|
+
|
|
3433
3499
|
@open
|
|
3434
3500
|
@complex model chatMessageFromIdentitySet extends identitySet {
|
|
3435
3501
|
}
|
|
@@ -4016,6 +4082,10 @@ namespace reference.`microsoft.graph` {
|
|
|
4016
4082
|
@complex model cloudPcPoolCapabilityConfiguration {
|
|
4017
4083
|
}
|
|
4018
4084
|
|
|
4085
|
+
@complex model cloudPcProvisioningConfiguration {
|
|
4086
|
+
domainJoinType: cloudPcDomainJoinType;
|
|
4087
|
+
}
|
|
4088
|
+
|
|
4019
4089
|
@complex model cloudPcProvisioningPolicyAutopatch {
|
|
4020
4090
|
autopatchGroupId: string | null;
|
|
4021
4091
|
}
|
|
@@ -4711,6 +4781,20 @@ namespace reference.`microsoft.graph` {
|
|
|
4711
4781
|
value: string | null;
|
|
4712
4782
|
}
|
|
4713
4783
|
|
|
4784
|
+
/**
|
|
4785
|
+
* Represents an individual health check result for an NDES connector, containing the metric name and its current status.
|
|
4786
|
+
*/
|
|
4787
|
+
@complex model connectorHealthCheck {
|
|
4788
|
+
/**
|
|
4789
|
+
* The name of the health check metric being evaluated.
|
|
4790
|
+
*/
|
|
4791
|
+
metricName: connectorHealthCheckMetricName;
|
|
4792
|
+
/**
|
|
4793
|
+
* The current health status for this specific metric, based on error rate thresholds computed from recent connector uploads.
|
|
4794
|
+
*/
|
|
4795
|
+
status: ndesConnectorHealthStatus;
|
|
4796
|
+
}
|
|
4797
|
+
|
|
4714
4798
|
/**
|
|
4715
4799
|
* Represent connector status
|
|
4716
4800
|
*/
|
|
@@ -5064,6 +5148,10 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
5064
5148
|
* Remote help - response we provide back to the helper after successfully creating an ACS session
|
|
5065
5149
|
*/
|
|
5066
5150
|
@complex model createRemoteHelpSessionResponse {
|
|
5151
|
+
/**
|
|
5152
|
+
* The current state of session recording. Null when the tenant is not flighted for session recording.
|
|
5153
|
+
*/
|
|
5154
|
+
remoteHelpRecordingState: remoteHelpRecordingState | null;
|
|
5067
5155
|
/**
|
|
5068
5156
|
* The unique identifier for a session
|
|
5069
5157
|
*/
|
|
@@ -5162,6 +5250,10 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
5162
5250
|
status: crossTenantMigrationServiceStatus;
|
|
5163
5251
|
}
|
|
5164
5252
|
|
|
5253
|
+
@complex model crossTenantRoleEnabledGroupSyncInbound {
|
|
5254
|
+
isSyncAllowed: boolean;
|
|
5255
|
+
}
|
|
5256
|
+
|
|
5165
5257
|
@complex model crossTenantUserSyncInbound {
|
|
5166
5258
|
isSyncAllowed: boolean | null;
|
|
5167
5259
|
}
|
|
@@ -5547,6 +5639,18 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
5547
5639
|
unifiedRoles: unifiedRole[];
|
|
5548
5640
|
}
|
|
5549
5641
|
|
|
5642
|
+
@complex model delegatedAdministrationRoleAssignment {
|
|
5643
|
+
groupDisplayName: string | null;
|
|
5644
|
+
roleTemplates: roleTemplate[];
|
|
5645
|
+
@references group: group | null;
|
|
5646
|
+
}
|
|
5647
|
+
|
|
5648
|
+
@complex model delegatedAdministrationRoleAssignmentSnapshot {
|
|
5649
|
+
groupDisplayName: string | null;
|
|
5650
|
+
groupId: string;
|
|
5651
|
+
roleTemplates: roleTemplate[];
|
|
5652
|
+
}
|
|
5653
|
+
|
|
5550
5654
|
@complex model delegatedAdminRelationshipCustomerParticipant {
|
|
5551
5655
|
displayName: string | null;
|
|
5552
5656
|
tenantId: string;
|
|
@@ -8145,6 +8249,10 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
8145
8249
|
objectId: string | null;
|
|
8146
8250
|
}
|
|
8147
8251
|
|
|
8252
|
+
@complex model driveSettings {
|
|
8253
|
+
itemDefaultSensitivityLabelId: string | null;
|
|
8254
|
+
}
|
|
8255
|
+
|
|
8148
8256
|
@complex model dropInPlaceMode extends placeMode {
|
|
8149
8257
|
}
|
|
8150
8258
|
|
|
@@ -8522,6 +8630,11 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
8522
8630
|
smdpPlusServerAddress: string;
|
|
8523
8631
|
}
|
|
8524
8632
|
|
|
8633
|
+
@complex model embeddingInput {
|
|
8634
|
+
data: string;
|
|
8635
|
+
modelType: string;
|
|
8636
|
+
}
|
|
8637
|
+
|
|
8525
8638
|
@complex model emergencyCallerInfo {
|
|
8526
8639
|
displayName: string | null;
|
|
8527
8640
|
location: location | null;
|
|
@@ -9100,14 +9213,10 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
9100
9213
|
itemMajorVersionLimit: int32 | null;
|
|
9101
9214
|
}
|
|
9102
9215
|
|
|
9103
|
-
@complex model fileStorageContainerTypeAgentSettings {
|
|
9104
|
-
chatEmbedAllowedHosts: string[];
|
|
9105
|
-
}
|
|
9106
|
-
|
|
9107
9216
|
@complex model fileStorageContainerTypeRegistrationSettings {
|
|
9108
|
-
agent: fileStorageContainerTypeAgentSettings | null;
|
|
9109
9217
|
isDiscoverabilityEnabled: boolean | null;
|
|
9110
9218
|
isItemVersioningEnabled: boolean | null;
|
|
9219
|
+
isOfficeRestricted: boolean;
|
|
9111
9220
|
isSearchEnabled: boolean | null;
|
|
9112
9221
|
isSharingRestricted: boolean | null;
|
|
9113
9222
|
itemMajorVersionLimit: int64 | null;
|
|
@@ -9117,10 +9226,10 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
9117
9226
|
}
|
|
9118
9227
|
|
|
9119
9228
|
@complex model fileStorageContainerTypeSettings {
|
|
9120
|
-
agent: fileStorageContainerTypeAgentSettings | null;
|
|
9121
9229
|
consumingTenantOverridables: fileStorageContainerTypeSettingsOverride | null;
|
|
9122
9230
|
isDiscoverabilityEnabled: boolean | null;
|
|
9123
9231
|
isItemVersioningEnabled: boolean | null;
|
|
9232
|
+
isOfficeRestricted: boolean;
|
|
9124
9233
|
isSearchEnabled: boolean | null;
|
|
9125
9234
|
isSharingRestricted: boolean | null;
|
|
9126
9235
|
itemMajorVersionLimit: int64 | null;
|
|
@@ -9996,6 +10105,11 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
9996
10105
|
themeColor: rgbColor | null;
|
|
9997
10106
|
}
|
|
9998
10107
|
|
|
10108
|
+
@complex model investigationActionUrl {
|
|
10109
|
+
displayName: string;
|
|
10110
|
+
url: string | null;
|
|
10111
|
+
}
|
|
10112
|
+
|
|
9999
10113
|
@graphDeprecated("Deprecation")
|
|
10000
10114
|
@complex model investigationSecurityState {
|
|
10001
10115
|
name: string | null;
|
|
@@ -10125,6 +10239,10 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
10125
10239
|
associatedDomainsDirectDownloadAllowed: boolean | null;
|
|
10126
10240
|
cellularSliceConfigurationId: string | null;
|
|
10127
10241
|
contentFilterConfigurationId: string | null;
|
|
10242
|
+
/**
|
|
10243
|
+
* The unique identifier of the DDM app configuration to associate with the app.
|
|
10244
|
+
*/
|
|
10245
|
+
ddmAppConfigId: guid | null;
|
|
10128
10246
|
dnsProxyConfigurationId: string | null;
|
|
10129
10247
|
/**
|
|
10130
10248
|
* When true, indicates that the app should not be backed up to iCloud. When false, indicates that the app may be backed up to iCloud. Default is false.
|
|
@@ -10223,6 +10341,10 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
10223
10341
|
* The unique identifier of the content filter to associate with the app.
|
|
10224
10342
|
*/
|
|
10225
10343
|
contentFilterConfigurationId: string | null;
|
|
10344
|
+
/**
|
|
10345
|
+
* The unique identifier of the DDM app configuration to associate with the app.
|
|
10346
|
+
*/
|
|
10347
|
+
ddmAppConfigId: guid | null;
|
|
10226
10348
|
/**
|
|
10227
10349
|
* The unique identifier of the DNS proxy to associate with the app.
|
|
10228
10350
|
*/
|
|
@@ -11243,7 +11365,6 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
11243
11365
|
mapping: correlatedObjectLinkMapping | null;
|
|
11244
11366
|
total: int64 | null;
|
|
11245
11367
|
uncorrelated: int64 | null;
|
|
11246
|
-
`unknown`: int64 | null;
|
|
11247
11368
|
unresolvedTarget: int64 | null;
|
|
11248
11369
|
}
|
|
11249
11370
|
|
|
@@ -11511,6 +11632,10 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
11511
11632
|
* Specifies whether the device automatically updates the app. Possible values are: 'alwaysOn', 'alwaysOff', 'storeSettings'. By default, this value is set to 'storeSettings'.
|
|
11512
11633
|
*/
|
|
11513
11634
|
automaticAppUpdates: ddmAppAutomaticAppUpdates | null;
|
|
11635
|
+
/**
|
|
11636
|
+
* The unique identifier of the DDM app configuration to associate with the app.
|
|
11637
|
+
*/
|
|
11638
|
+
ddmAppConfigId: guid | null;
|
|
11514
11639
|
/**
|
|
11515
11640
|
* If true, the device installs an iOS or iPadOS app that runs on a Mac with Apple Silicon. This is only used when the app is a VPP app. Default is false.
|
|
11516
11641
|
*/
|
|
@@ -12485,11 +12610,28 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
12485
12610
|
uri: string;
|
|
12486
12611
|
}
|
|
12487
12612
|
|
|
12613
|
+
@complex model mediaMetadata {
|
|
12614
|
+
audioMetadata: audioMetadata | null;
|
|
12615
|
+
byteSize: int64;
|
|
12616
|
+
`duration`: int32;
|
|
12617
|
+
isRealTime: boolean;
|
|
12618
|
+
mimeType: string;
|
|
12619
|
+
modality: contentModality;
|
|
12620
|
+
streamingMetadata: streamingMetadata | null;
|
|
12621
|
+
videoMetadata: videoMetadata | null;
|
|
12622
|
+
}
|
|
12623
|
+
|
|
12488
12624
|
@complex model mediaPrompt extends prompt {
|
|
12489
12625
|
loop: int32 | null;
|
|
12490
12626
|
mediaInfo: mediaInfo;
|
|
12491
12627
|
}
|
|
12492
12628
|
|
|
12629
|
+
@complex model mediaSegment {
|
|
12630
|
+
endTimeSec: int32;
|
|
12631
|
+
frameIndices: int32[];
|
|
12632
|
+
startTimeSec: int32;
|
|
12633
|
+
}
|
|
12634
|
+
|
|
12493
12635
|
@complex model mediaSource {
|
|
12494
12636
|
contentCategory: mediaSourceContentCategory | null;
|
|
12495
12637
|
}
|
|
@@ -12581,11 +12723,10 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
12581
12723
|
}
|
|
12582
12724
|
|
|
12583
12725
|
@complex model member {
|
|
12584
|
-
contactId: string | null;
|
|
12585
12726
|
displayName: string | null;
|
|
12586
12727
|
key: string | null;
|
|
12587
|
-
|
|
12588
|
-
|
|
12728
|
+
memberId: string | null;
|
|
12729
|
+
type: recipientType;
|
|
12589
12730
|
}
|
|
12590
12731
|
|
|
12591
12732
|
@complex model membersAddedEventMessageDetail extends eventMessageDetail {
|
|
@@ -12971,6 +13112,11 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
12971
13112
|
troubleshootingErrorDetails: deviceManagementTroubleshootingErrorDetails | null;
|
|
12972
13113
|
}
|
|
12973
13114
|
|
|
13115
|
+
@complex model mobileDriversLicenseConfiguration {
|
|
13116
|
+
acceptedRegions: string[];
|
|
13117
|
+
documentStandard: string | null;
|
|
13118
|
+
}
|
|
13119
|
+
|
|
12974
13120
|
@complex model modifiedProperty {
|
|
12975
13121
|
displayName: string | null;
|
|
12976
13122
|
newValue: string | null;
|
|
@@ -12982,6 +13128,20 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
12982
13128
|
to: string | null;
|
|
12983
13129
|
}
|
|
12984
13130
|
|
|
13131
|
+
@complex model multiTenantApplicationsToProvision {
|
|
13132
|
+
appId: string;
|
|
13133
|
+
displayName: string;
|
|
13134
|
+
objectId: string;
|
|
13135
|
+
requiredResourceAccesses: applicationsRequiredResourceAccess[];
|
|
13136
|
+
}
|
|
13137
|
+
|
|
13138
|
+
@complex model multiTenantApplicationsToProvisionSnapshot {
|
|
13139
|
+
appId: string;
|
|
13140
|
+
displayName: string;
|
|
13141
|
+
objectId: string;
|
|
13142
|
+
requiredResourceAccesses: applicationsRequiredResourceAccess[];
|
|
13143
|
+
}
|
|
13144
|
+
|
|
12985
13145
|
@complex model multiTenantOrganizationJoinRequestTransitionDetails {
|
|
12986
13146
|
desiredMemberState: multiTenantOrganizationMemberState | null;
|
|
12987
13147
|
details: string | null;
|
|
@@ -13036,6 +13196,13 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
13036
13196
|
networkType: networkType | null;
|
|
13037
13197
|
}
|
|
13038
13198
|
|
|
13199
|
+
@complex model nistClassification {
|
|
13200
|
+
category: string;
|
|
13201
|
+
description: string | null;
|
|
13202
|
+
function: string | null;
|
|
13203
|
+
name: string;
|
|
13204
|
+
}
|
|
13205
|
+
|
|
13039
13206
|
@complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
13040
13207
|
}
|
|
13041
13208
|
|
|
@@ -13536,6 +13703,7 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
13536
13703
|
isAccessibleViaZTNAClient: boolean | null;
|
|
13537
13704
|
isBackendCertificateValidationEnabled: boolean | null;
|
|
13538
13705
|
isContinuousAccessEvaluationEnabled: boolean | null;
|
|
13706
|
+
isDeviceAccessEnabled: boolean;
|
|
13539
13707
|
isDnsResolutionEnabled: boolean | null;
|
|
13540
13708
|
isHttpOnlyCookieEnabled: boolean | null;
|
|
13541
13709
|
isOnPremPublishingEnabled: boolean | null;
|
|
@@ -14561,6 +14729,8 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
14561
14729
|
}
|
|
14562
14730
|
|
|
14563
14731
|
@complex model policyTipAction extends dlpActionInfo {
|
|
14732
|
+
complianceUrl: string | null;
|
|
14733
|
+
matchedConditionsDescription: string | null;
|
|
14564
14734
|
policyTip: string | null;
|
|
14565
14735
|
}
|
|
14566
14736
|
|
|
@@ -15211,6 +15381,11 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
15211
15381
|
details: detailsInfo | null;
|
|
15212
15382
|
}
|
|
15213
15383
|
|
|
15384
|
+
@complex model provisionResponse {
|
|
15385
|
+
challenge: string;
|
|
15386
|
+
deviceId: string;
|
|
15387
|
+
}
|
|
15388
|
+
|
|
15214
15389
|
/**
|
|
15215
15390
|
* Proxied Domain
|
|
15216
15391
|
*/
|
|
@@ -15534,6 +15709,20 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
15534
15709
|
userPrincipalName: string | null;
|
|
15535
15710
|
}
|
|
15536
15711
|
|
|
15712
|
+
@complex model relatedTenantsRefreshStatus {
|
|
15713
|
+
isFirstRefresh: boolean;
|
|
15714
|
+
mostRecentRefreshRequestStatus: string;
|
|
15715
|
+
mostRecentRefreshTime: string;
|
|
15716
|
+
}
|
|
15717
|
+
|
|
15718
|
+
@complex model relationshipPolicy {
|
|
15719
|
+
delegatedAdministrationRoleAssignments: delegatedAdministrationRoleAssignmentSnapshot[];
|
|
15720
|
+
governedTenantCanTerminate: boolean;
|
|
15721
|
+
multiTenantApplicationsToProvision: multiTenantApplicationsToProvisionSnapshot[];
|
|
15722
|
+
policyId: string;
|
|
15723
|
+
version: int32 | null;
|
|
15724
|
+
}
|
|
15725
|
+
|
|
15537
15726
|
@complex model reminder {
|
|
15538
15727
|
changeKey: string | null;
|
|
15539
15728
|
eventEndTime: dateTimeTimeZone | null;
|
|
@@ -16084,6 +16273,11 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
16084
16273
|
unknownFail: int64 | null;
|
|
16085
16274
|
}
|
|
16086
16275
|
|
|
16276
|
+
@complex model roleTemplate {
|
|
16277
|
+
id: string;
|
|
16278
|
+
name: string;
|
|
16279
|
+
}
|
|
16280
|
+
|
|
16087
16281
|
@complex model root {
|
|
16088
16282
|
}
|
|
16089
16283
|
|
|
@@ -16259,6 +16453,12 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
16259
16453
|
id: string | null;
|
|
16260
16454
|
}
|
|
16261
16455
|
|
|
16456
|
+
@complex model sapAssignmentRequestCallbackData extends customExtensionData {
|
|
16457
|
+
detail: string | null;
|
|
16458
|
+
requestNumber: string | null;
|
|
16459
|
+
state: string | null;
|
|
16460
|
+
}
|
|
16461
|
+
|
|
16262
16462
|
@complex model scheduleEntity {
|
|
16263
16463
|
endDateTime: offsetDateTime | null;
|
|
16264
16464
|
startDateTime: offsetDateTime | null;
|
|
@@ -17205,6 +17405,12 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
17205
17405
|
upgradeAvailable: boolean | null;
|
|
17206
17406
|
}
|
|
17207
17407
|
|
|
17408
|
+
@complex model streamingMetadata {
|
|
17409
|
+
frameDropRate: float64;
|
|
17410
|
+
latencyMs: int32;
|
|
17411
|
+
networkJitterMs: int32;
|
|
17412
|
+
}
|
|
17413
|
+
|
|
17208
17414
|
@open
|
|
17209
17415
|
@complex model stringDictionary extends Dictionary {
|
|
17210
17416
|
}
|
|
@@ -17443,6 +17649,21 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
17443
17649
|
timeEnded: offsetDateTime;
|
|
17444
17650
|
}
|
|
17445
17651
|
|
|
17652
|
+
@complex model syntheticMediaDetectionDetail {
|
|
17653
|
+
confidence: float64;
|
|
17654
|
+
modality: contentModality;
|
|
17655
|
+
modelName: string;
|
|
17656
|
+
modelTasks: string[];
|
|
17657
|
+
segment: mediaSegment;
|
|
17658
|
+
}
|
|
17659
|
+
|
|
17660
|
+
@complex model syntheticMediaDetectionInfo {
|
|
17661
|
+
detectionId: guid;
|
|
17662
|
+
detectorBot: string;
|
|
17663
|
+
isParticipantTrusted: boolean;
|
|
17664
|
+
syntheticConfidence: float64;
|
|
17665
|
+
}
|
|
17666
|
+
|
|
17446
17667
|
@complex model systemCredentialPreferences {
|
|
17447
17668
|
excludeTargets: excludeTarget[];
|
|
17448
17669
|
includeTargets: includeTarget[];
|
|
@@ -18886,9 +19107,16 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
18886
19107
|
claimBindings: claimBinding[];
|
|
18887
19108
|
claimBindingSource: claimBindingSource;
|
|
18888
19109
|
claimValidation: claimValidation;
|
|
19110
|
+
manifestUrl: string | null;
|
|
19111
|
+
methodType: verifiedIdMethodType;
|
|
18889
19112
|
type: string;
|
|
18890
19113
|
}
|
|
18891
19114
|
|
|
19115
|
+
@complex model verifiedIdSelfServiceIssuance {
|
|
19116
|
+
isEnabled: boolean;
|
|
19117
|
+
issuanceUrl: string | null;
|
|
19118
|
+
}
|
|
19119
|
+
|
|
18892
19120
|
@complex model verifiedIdUsageConfiguration {
|
|
18893
19121
|
isEnabledForTestOnly: boolean;
|
|
18894
19122
|
purpose: verifiedIdUsageConfigurationPurpose;
|
|
@@ -18917,6 +19145,12 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
18917
19145
|
width: int32 | null;
|
|
18918
19146
|
}
|
|
18919
19147
|
|
|
19148
|
+
@complex model videoMetadata {
|
|
19149
|
+
bitrateKbps: int32;
|
|
19150
|
+
codec: string;
|
|
19151
|
+
frameRate: float64;
|
|
19152
|
+
}
|
|
19153
|
+
|
|
18920
19154
|
@complex model virtualEventExternalInformation {
|
|
18921
19155
|
applicationId: string | null;
|
|
18922
19156
|
externalEventId: string | null;
|
|
@@ -21648,6 +21882,7 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
21648
21882
|
history: requestActivity[] | null;
|
|
21649
21883
|
isValidationOnly: boolean | null;
|
|
21650
21884
|
justification: string | null;
|
|
21885
|
+
parameters: accessPackageAssignmentRequestParameters | null;
|
|
21651
21886
|
requestState: string | null;
|
|
21652
21887
|
requestStatus: string | null;
|
|
21653
21888
|
requestType: string | null;
|
|
@@ -22282,10 +22517,18 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
22282
22517
|
@references members: agentInstance[];
|
|
22283
22518
|
}
|
|
22284
22519
|
|
|
22520
|
+
@entity model agentCommunicationConfiguration extends entity {
|
|
22521
|
+
endpointConfiguration: agentEndpointConfiguration | null;
|
|
22522
|
+
isOverridableAtAgentIdLevel: boolean;
|
|
22523
|
+
teamworkConfiguration: agentTeamworkConfiguration | null;
|
|
22524
|
+
}
|
|
22525
|
+
|
|
22285
22526
|
@open
|
|
22286
22527
|
@entity model agentIdentity extends servicePrincipal {
|
|
22287
22528
|
agentIdentityBlueprintId: string;
|
|
22288
22529
|
@computed createdDateTime: offsetDateTime | null;
|
|
22530
|
+
managerApplications: guid;
|
|
22531
|
+
@contains communicationConfiguration: agentCommunicationConfiguration | null;
|
|
22289
22532
|
@references inheritedAppRoleAssignments: appRoleAssignment[];
|
|
22290
22533
|
@references inheritedOauth2PermissionGrants: oAuth2PermissionGrant[];
|
|
22291
22534
|
@references sponsors: directoryObject[];
|
|
@@ -22293,12 +22536,14 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
22293
22536
|
|
|
22294
22537
|
@open
|
|
22295
22538
|
@entity model agentIdentityBlueprint extends application {
|
|
22539
|
+
@contains communicationConfiguration: agentCommunicationConfiguration | null;
|
|
22296
22540
|
@contains inheritablePermissions: inheritablePermission[];
|
|
22297
22541
|
@references sponsors: directoryObject[];
|
|
22298
22542
|
}
|
|
22299
22543
|
|
|
22300
22544
|
@open
|
|
22301
22545
|
@entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
|
|
22546
|
+
managerApplications: guid;
|
|
22302
22547
|
@references sponsors: directoryObject[];
|
|
22303
22548
|
}
|
|
22304
22549
|
|
|
@@ -25087,6 +25332,10 @@ capabilities, skills, security, and other manifest-defined fields.
|
|
|
25087
25332
|
* Defines a managed app behavior, either warn or block, if the specified Android SafetyNet Attestation requirement fails.
|
|
25088
25333
|
*/
|
|
25089
25334
|
appActionIfAndroidSafetyNetDeviceAttestationFailed: managedAppRemediationAction;
|
|
25335
|
+
/**
|
|
25336
|
+
* Defines a managed app behavior, either warn, block, or wipe, if Developer Options are enabled on the Android device. If the admin does not set this action, the default is null, which indicates this setting is not configured.
|
|
25337
|
+
*/
|
|
25338
|
+
appActionIfDeveloperOptionsEnabled: managedAppRemediationAction | null;
|
|
25090
25339
|
/**
|
|
25091
25340
|
* Defines a managed app behavior, either warn, block or wipe, if the screen lock is required on android device but is not set.
|
|
25092
25341
|
*/
|
|
@@ -27355,6 +27604,7 @@ capabilities, skills, security, and other manifest-defined fields.
|
|
|
27355
27604
|
@contains phoneMethods: phoneAuthenticationMethod[];
|
|
27356
27605
|
@contains platformCredentialMethods: platformCredentialAuthenticationMethod[];
|
|
27357
27606
|
@contains qrCodePinMethod: qrCodePinAuthenticationMethod | null;
|
|
27607
|
+
@contains resourceAccountKeyAuthenticationMethods: resourceAccountKeyAuthenticationMethod[];
|
|
27358
27608
|
@contains softwareOathMethods: softwareOathAuthenticationMethod[];
|
|
27359
27609
|
@contains temporaryAccessPassMethods: temporaryAccessPassAuthenticationMethod[];
|
|
27360
27610
|
@contains windowsHelloForBusinessMethods: windowsHelloForBusinessAuthenticationMethod[];
|
|
@@ -27705,6 +27955,50 @@ capabilities, skills, security, and other manifest-defined fields.
|
|
|
27705
27955
|
@entity model b2bManagementPolicy extends stsPolicy {
|
|
27706
27956
|
}
|
|
27707
27957
|
|
|
27958
|
+
@entity model b2bRegistrationMetrics extends entity {
|
|
27959
|
+
@references initial: b2BRegistrationMetricsInitial;
|
|
27960
|
+
@contains investigationHints: investigationActionStep[];
|
|
27961
|
+
@references recent: b2BRegistrationMetricsRecent;
|
|
27962
|
+
}
|
|
27963
|
+
|
|
27964
|
+
@abstract
|
|
27965
|
+
@entity model b2BRegistrationMetricsBase extends entity {
|
|
27966
|
+
inboundTotalUsers: decimal;
|
|
27967
|
+
outboundTotalUsers: decimal;
|
|
27968
|
+
watermarkDateTime: offsetDateTime;
|
|
27969
|
+
}
|
|
27970
|
+
|
|
27971
|
+
@entity model b2BRegistrationMetricsInitial extends b2BRegistrationMetricsBase {
|
|
27972
|
+
@computed createdDateTime: offsetDateTime;
|
|
27973
|
+
}
|
|
27974
|
+
|
|
27975
|
+
@entity model b2BRegistrationMetricsRecent extends b2BRegistrationMetricsBase {
|
|
27976
|
+
updateDateTime: offsetDateTime;
|
|
27977
|
+
}
|
|
27978
|
+
|
|
27979
|
+
@entity model b2BSignInActivityMetrics extends entity {
|
|
27980
|
+
@references initial: b2BSignInActivityMetricsInitial;
|
|
27981
|
+
@contains investigationHints: investigationActionStep[];
|
|
27982
|
+
@references recent: b2BSignInActivityMetricsRecent;
|
|
27983
|
+
}
|
|
27984
|
+
|
|
27985
|
+
@abstract
|
|
27986
|
+
@entity model b2BSignInActivityMetricsBase extends entity {
|
|
27987
|
+
inboundMonthlyTotalApplications: decimal;
|
|
27988
|
+
inboundMonthlyTotalUsers: decimal;
|
|
27989
|
+
outboundMonthlyTotalApplications: decimal;
|
|
27990
|
+
outboundMonthlyTotalUsers: decimal;
|
|
27991
|
+
watermarkDateTime: offsetDateTime;
|
|
27992
|
+
}
|
|
27993
|
+
|
|
27994
|
+
@entity model b2BSignInActivityMetricsInitial extends b2BSignInActivityMetricsBase {
|
|
27995
|
+
@computed createdDateTime: offsetDateTime;
|
|
27996
|
+
}
|
|
27997
|
+
|
|
27998
|
+
@entity model b2BSignInActivityMetricsRecent extends b2BSignInActivityMetricsBase {
|
|
27999
|
+
updateDateTime: offsetDateTime;
|
|
28000
|
+
}
|
|
28001
|
+
|
|
27708
28002
|
@entity model b2cAuthenticationMethodsPolicy extends entity {
|
|
27709
28003
|
isEmailPasswordAuthenticationEnabled: boolean;
|
|
27710
28004
|
isPhoneOneTimePasswordAuthenticationEnabled: boolean;
|
|
@@ -27816,6 +28110,31 @@ capabilities, skills, security, and other manifest-defined fields.
|
|
|
27816
28110
|
title: string | null;
|
|
27817
28111
|
}
|
|
27818
28112
|
|
|
28113
|
+
@entity model billingMetrics extends entity {
|
|
28114
|
+
@references initial: billingMetricsInitial;
|
|
28115
|
+
@contains investigationHints: investigationActionStep[];
|
|
28116
|
+
@references recent: billingMetricsRecent;
|
|
28117
|
+
}
|
|
28118
|
+
|
|
28119
|
+
@entity model billingMetricsBase extends entity {
|
|
28120
|
+
foreignAssociatedTenantBillingManagementActiveCount: decimal;
|
|
28121
|
+
foreignAssociatedTenantCount: decimal;
|
|
28122
|
+
foreignAssociatedTenantProvisioningActiveCount: decimal;
|
|
28123
|
+
localAssociatedTenantBillingManagementActiveCount: decimal;
|
|
28124
|
+
localAssociatedTenantCount: decimal;
|
|
28125
|
+
localAssociatedTenantIds: string[];
|
|
28126
|
+
localAssociatedTenantProvisioningActiveCount: decimal;
|
|
28127
|
+
watermarkDateTime: offsetDateTime;
|
|
28128
|
+
}
|
|
28129
|
+
|
|
28130
|
+
@entity model billingMetricsInitial extends billingMetricsBase {
|
|
28131
|
+
@computed createdDateTime: offsetDateTime;
|
|
28132
|
+
}
|
|
28133
|
+
|
|
28134
|
+
@entity model billingMetricsRecent extends billingMetricsBase {
|
|
28135
|
+
updateDateTime: offsetDateTime;
|
|
28136
|
+
}
|
|
28137
|
+
|
|
27819
28138
|
@entity model bitlocker extends entity {
|
|
27820
28139
|
@contains recoveryKeys: bitlockerRecoveryKey[];
|
|
27821
28140
|
}
|
|
@@ -28571,11 +28890,13 @@ capabilities, skills, security, and other manifest-defined fields.
|
|
|
28571
28890
|
body: chatMessageBody;
|
|
28572
28891
|
channelIdentity: channelIdentity | null;
|
|
28573
28892
|
chatId: string | null;
|
|
28893
|
+
citations: chatMessageCitation[] | null;
|
|
28574
28894
|
@computed createdDateTime: offsetDateTime | null;
|
|
28575
28895
|
deletedDateTime: offsetDateTime | null;
|
|
28576
28896
|
etag: string | null;
|
|
28577
28897
|
eventDetail: eventMessageDetail | null;
|
|
28578
28898
|
from: chatMessageFromIdentitySet | null;
|
|
28899
|
+
hasReplies: boolean;
|
|
28579
28900
|
importance: chatMessageImportance;
|
|
28580
28901
|
@computed lastEditedDateTime: offsetDateTime | null;
|
|
28581
28902
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
@@ -29049,6 +29370,7 @@ capabilities, skills, security, and other manifest-defined fields.
|
|
|
29049
29370
|
powerState: cloudPcPowerState | null;
|
|
29050
29371
|
productType: cloudPcProductType | null;
|
|
29051
29372
|
provisionedDateTime: offsetDateTime | null;
|
|
29373
|
+
provisioningConfiguration: cloudPcProvisioningConfiguration | null;
|
|
29052
29374
|
provisioningPolicyId: string | null;
|
|
29053
29375
|
provisioningPolicyName: string | null;
|
|
29054
29376
|
provisioningType: cloudPcProvisioningType | null;
|
|
@@ -30175,6 +30497,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
30175
30497
|
}
|
|
30176
30498
|
|
|
30177
30499
|
@entity model copilotPackage extends entity {
|
|
30500
|
+
agentIdentityId: string | null;
|
|
30178
30501
|
appId: string | null;
|
|
30179
30502
|
assetId: string | null;
|
|
30180
30503
|
availableTo: packageStatus;
|
|
@@ -30198,12 +30521,32 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
30198
30521
|
|
|
30199
30522
|
@entity model copilotPackageDetail extends copilotPackage {
|
|
30200
30523
|
acquireUsersAndGroups: packageAccessEntity[];
|
|
30524
|
+
/**
|
|
30525
|
+
* The number of distinct users who actively used the package during the reporting period.
|
|
30526
|
+
*/
|
|
30527
|
+
activeUsers: int32 | null;
|
|
30201
30528
|
allowedUsersAndGroups: packageAccessEntity[];
|
|
30202
30529
|
categories: string[];
|
|
30203
30530
|
elementDetails: packageElementDetail[];
|
|
30531
|
+
/**
|
|
30532
|
+
* The fraction of sessions that resulted in an exception, expressed as a value between 0 and 1.
|
|
30533
|
+
*/
|
|
30534
|
+
exceptionRate: float64 | null;
|
|
30535
|
+
/**
|
|
30536
|
+
* The date and time when the package was last used, in ISO 8601 format and UTC.
|
|
30537
|
+
*/
|
|
30538
|
+
@computed lastUsedDateTime: offsetDateTime | null;
|
|
30204
30539
|
longDescription: string | null;
|
|
30205
30540
|
sensitivity: string | null;
|
|
30206
30541
|
sharedWithUsersAndGroups: packageAccessEntity[];
|
|
30542
|
+
/**
|
|
30543
|
+
* Total hours worked by the agent.
|
|
30544
|
+
*/
|
|
30545
|
+
totalRunTimeInHours: float64 | null;
|
|
30546
|
+
/**
|
|
30547
|
+
* The total number of sessions served by the package during the reporting period.
|
|
30548
|
+
*/
|
|
30549
|
+
totalSessions: int32 | null;
|
|
30207
30550
|
}
|
|
30208
30551
|
|
|
30209
30552
|
@entity model copilotPeopleAdminSetting extends entity {
|
|
@@ -30365,6 +30708,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
30365
30708
|
displayName: string | null;
|
|
30366
30709
|
externalCloudAuthorizedApplicationId: string | null;
|
|
30367
30710
|
groupSyncInbound: crossTenantGroupSyncInbound | null;
|
|
30711
|
+
roleEnabledGroupSyncInbound: crossTenantRoleEnabledGroupSyncInbound | null;
|
|
30368
30712
|
@computed @key tenantId: string;
|
|
30369
30713
|
userSyncInbound: crossTenantUserSyncInbound | null;
|
|
30370
30714
|
}
|
|
@@ -30999,6 +31343,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
30999
31343
|
}
|
|
31000
31344
|
|
|
31001
31345
|
@entity model deletedItemContainer extends entity {
|
|
31346
|
+
@contains lifecyclePolicies: reference.`microsoft.graph.identityGovernance`.lifecyclePolicy[];
|
|
31002
31347
|
@contains workflows: reference.`microsoft.graph.identityGovernance`.workflow[];
|
|
31003
31348
|
}
|
|
31004
31349
|
|
|
@@ -31679,7 +32024,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
31679
32024
|
/**
|
|
31680
32025
|
* Singleton entity that acts as a container for all device app management functionality.
|
|
31681
32026
|
*/
|
|
31682
|
-
@entity model deviceAppManagement extends entity {
|
|
32027
|
+
@entity model deviceAppManagement extends MsGraph.SharedModels.entity {
|
|
31683
32028
|
/**
|
|
31684
32029
|
* Whether the account is enabled for syncing applications from the Microsoft Store for Business.
|
|
31685
32030
|
*/
|
|
@@ -32253,7 +32598,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
32253
32598
|
*/
|
|
32254
32599
|
@computed lastModifiedDateTime: offsetDateTime;
|
|
32255
32600
|
/**
|
|
32256
|
-
* Indicates the
|
|
32601
|
+
* Indicates the device platform on which the device compliance script will be executed. Possible values are: windows10AndLater (default), linux. The default value is windows10AndLater.
|
|
32257
32602
|
*/
|
|
32258
32603
|
platform: deviceComplianceScriptPlatformType | null;
|
|
32259
32604
|
/**
|
|
@@ -32265,7 +32610,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
32265
32610
|
*/
|
|
32266
32611
|
roleScopeTagIds: string[] | null;
|
|
32267
32612
|
/**
|
|
32268
|
-
*
|
|
32613
|
+
* Indicate whether PowerShell script(s) should run as 32-bit
|
|
32269
32614
|
*/
|
|
32270
32615
|
runAs32Bit: boolean;
|
|
32271
32616
|
/**
|
|
@@ -32779,6 +33124,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
32779
33124
|
successCount: int32;
|
|
32780
33125
|
}
|
|
32781
33126
|
|
|
33127
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
32782
33128
|
@entity model deviceConfigurationUserStateSummary extends entity {
|
|
32783
33129
|
/**
|
|
32784
33130
|
* Number of compliant users
|
|
@@ -33749,6 +34095,8 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
33749
34095
|
/**
|
|
33750
34096
|
* The device configuration user state summary for this account.
|
|
33751
34097
|
*/
|
|
34098
|
+
|
|
34099
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
33752
34100
|
@contains deviceConfigurationUserStateSummaries: deviceConfigurationUserStateSummary | null;
|
|
33753
34101
|
/**
|
|
33754
34102
|
* The list of device custom attribute shell scripts associated with the tenant.
|
|
@@ -36065,7 +36413,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
36065
36413
|
@contains sharedEmailDomains: sharedEmailDomain[];
|
|
36066
36414
|
@contains subscriptions: companySubscription[];
|
|
36067
36415
|
@contains templates: template | null;
|
|
36068
|
-
@contains tenantGovernance:
|
|
36416
|
+
@contains tenantGovernance: tenantGovernance | null;
|
|
36069
36417
|
}
|
|
36070
36418
|
|
|
36071
36419
|
@entity model directoryAudit extends entity {
|
|
@@ -36140,17 +36488,16 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
36140
36488
|
|
|
36141
36489
|
@entity model distributionList extends outlookItem {
|
|
36142
36490
|
displayName: string | null;
|
|
36143
|
-
members: member[];
|
|
36144
36491
|
notes: string | null;
|
|
36145
36492
|
personIdentifier: string | null;
|
|
36146
|
-
@contains
|
|
36493
|
+
@contains members: distributionListMember[];
|
|
36147
36494
|
@contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
|
|
36148
36495
|
}
|
|
36149
36496
|
|
|
36150
36497
|
@entity model distributionListMember extends entity {
|
|
36151
|
-
contactId: string | null;
|
|
36152
36498
|
displayName: string | null;
|
|
36153
|
-
|
|
36499
|
+
memberId: string | null;
|
|
36500
|
+
type: recipientType;
|
|
36154
36501
|
@references contact: contact | null;
|
|
36155
36502
|
}
|
|
36156
36503
|
|
|
@@ -36264,6 +36611,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
36264
36611
|
driveType: string | null;
|
|
36265
36612
|
owner: identitySet | null;
|
|
36266
36613
|
quota: quota | null;
|
|
36614
|
+
settings: driveSettings | null;
|
|
36267
36615
|
sharePointIds: sharepointIds | null;
|
|
36268
36616
|
system: systemFacet | null;
|
|
36269
36617
|
@contains activities: itemActivityOLD[];
|
|
@@ -37594,8 +37942,8 @@ within the time frame of their original request.
|
|
|
37594
37942
|
connectorType: connectorType;
|
|
37595
37943
|
createdBy: string | null;
|
|
37596
37944
|
@computed createdDateTime: offsetDateTime | null;
|
|
37597
|
-
description: string
|
|
37598
|
-
displayName: string
|
|
37945
|
+
description: string;
|
|
37946
|
+
displayName: string;
|
|
37599
37947
|
modifiedBy: string | null;
|
|
37600
37948
|
modifiedDateTime: offsetDateTime | null;
|
|
37601
37949
|
}
|
|
@@ -37731,6 +38079,7 @@ within the time frame of their original request.
|
|
|
37731
38079
|
containerTypeId: guid;
|
|
37732
38080
|
@computed createdDateTime: offsetDateTime;
|
|
37733
38081
|
customProperties: fileStorageContainerCustomPropertyDictionary | null;
|
|
38082
|
+
dataLocationCode: string | null;
|
|
37734
38083
|
description: string | null;
|
|
37735
38084
|
displayName: string;
|
|
37736
38085
|
externalGroupId: guid | null;
|
|
@@ -37879,6 +38228,15 @@ within the time frame of their original request.
|
|
|
37879
38228
|
insightCreatedDateTime: offsetDateTime | null;
|
|
37880
38229
|
}
|
|
37881
38230
|
|
|
38231
|
+
@entity model governanceInvitation extends entity {
|
|
38232
|
+
@computed createdDateTime: offsetDateTime;
|
|
38233
|
+
expirationDateTime: offsetDateTime;
|
|
38234
|
+
governedTenantId: string;
|
|
38235
|
+
governedTenantName: string;
|
|
38236
|
+
governingTenantId: string;
|
|
38237
|
+
governingTenantName: string;
|
|
38238
|
+
}
|
|
38239
|
+
|
|
37882
38240
|
@open
|
|
37883
38241
|
@entity model governancePolicyTemplate extends entity {
|
|
37884
38242
|
displayName: string | null;
|
|
@@ -37886,6 +38244,29 @@ within the time frame of their original request.
|
|
|
37886
38244
|
settings: businessFlowSettings | null;
|
|
37887
38245
|
}
|
|
37888
38246
|
|
|
38247
|
+
@entity model governanceRelationship extends entity {
|
|
38248
|
+
createdType: relationshipCreationType;
|
|
38249
|
+
creationDateTime: offsetDateTime;
|
|
38250
|
+
governedTenantId: string;
|
|
38251
|
+
governedTenantName: string;
|
|
38252
|
+
governingTenantId: string;
|
|
38253
|
+
governingTenantName: string;
|
|
38254
|
+
policySnapshot: relationshipPolicy;
|
|
38255
|
+
status: relationshipStatus;
|
|
38256
|
+
}
|
|
38257
|
+
|
|
38258
|
+
@entity model governanceRequest extends entity {
|
|
38259
|
+
expirationDateTime: offsetDateTime;
|
|
38260
|
+
governedTenantId: string;
|
|
38261
|
+
governedTenantName: string;
|
|
38262
|
+
governingTenantId: string;
|
|
38263
|
+
governingTenantName: string;
|
|
38264
|
+
policySnapshot: relationshipPolicy;
|
|
38265
|
+
requestDateTime: offsetDateTime;
|
|
38266
|
+
status: requestStatus;
|
|
38267
|
+
@references governancePolicyTemplate: tenantGovernancePolicyTemplate | null;
|
|
38268
|
+
}
|
|
38269
|
+
|
|
37889
38270
|
@open
|
|
37890
38271
|
@entity model governanceResource extends entity {
|
|
37891
38272
|
displayName: string | null;
|
|
@@ -39321,6 +39702,7 @@ within the time frame of their original request.
|
|
|
39321
39702
|
resourceType: string;
|
|
39322
39703
|
status: recommendationStatus;
|
|
39323
39704
|
subjectId: string;
|
|
39705
|
+
@contains tags: recommendationTag[];
|
|
39324
39706
|
}
|
|
39325
39707
|
|
|
39326
39708
|
/**
|
|
@@ -39769,6 +40151,12 @@ within the time frame of their original request.
|
|
|
39769
40151
|
tenantLicenseStatus: string | null;
|
|
39770
40152
|
}
|
|
39771
40153
|
|
|
40154
|
+
@entity model investigationActionStep extends MsGraph.SharedModels.entity {
|
|
40155
|
+
actionUrl: investigationActionUrl | null;
|
|
40156
|
+
@computed @key stepNumber: string;
|
|
40157
|
+
text: string | null;
|
|
40158
|
+
}
|
|
40159
|
+
|
|
39772
40160
|
@entity model invitation extends entity {
|
|
39773
40161
|
invitedUserDisplayName: string | null;
|
|
39774
40162
|
invitedUserEmailAddress: string;
|
|
@@ -43678,6 +44066,7 @@ within the time frame of their original request.
|
|
|
43678
44066
|
parentMailboxUrl: string | null;
|
|
43679
44067
|
totalItemCount: int32 | null;
|
|
43680
44068
|
type: string | null;
|
|
44069
|
+
wellKnownName: string | null;
|
|
43681
44070
|
@contains childFolders: mailboxFolder[];
|
|
43682
44071
|
@contains items: mailboxItem[];
|
|
43683
44072
|
@contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
|
|
@@ -44696,6 +45085,8 @@ within the time frame of their original request.
|
|
|
44696
45085
|
/**
|
|
44697
45086
|
* Security baseline states for this device.
|
|
44698
45087
|
*/
|
|
45088
|
+
|
|
45089
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
44699
45090
|
@contains securityBaselineStates: securityBaselineState[];
|
|
44700
45091
|
/**
|
|
44701
45092
|
* The primary users associated with the managed device.
|
|
@@ -46103,6 +46494,10 @@ within the time frame of their original request.
|
|
|
46103
46494
|
* Indicates the size of the file after encryption, in bytes.
|
|
46104
46495
|
*/
|
|
46105
46496
|
sizeEncrypted: int64;
|
|
46497
|
+
/**
|
|
46498
|
+
* Indicates optional error details when uploadState is indicating an error. For example, when uploadState has commitFileFailed value, this field may have the error code of apkIsInvalid. Read-only.
|
|
46499
|
+
*/
|
|
46500
|
+
uploadErrorCode: mobileAppContentFileUploadErrorCode | null;
|
|
46106
46501
|
/**
|
|
46107
46502
|
* Indicates the state of the current upload request. Possible values are: success, transientError, error, unknown, azureStorageUriRequestSuccess, azureStorageUriRequestPending, azureStorageUriRequestFailed, azureStorageUriRequestTimedOut, azureStorageUriRenewalSuccess, azureStorageUriRenewalPending, azureStorageUriRenewalFailed, azureStorageUriRenewalTimedOut, commitFileSuccess, commitFilePending, commitFileFailed, commitFileTimedOut. Default value is success. This property is read-only.
|
|
46108
46503
|
*/
|
|
@@ -46562,6 +46957,26 @@ within the time frame of their original request.
|
|
|
46562
46957
|
userId: string | null;
|
|
46563
46958
|
}
|
|
46564
46959
|
|
|
46960
|
+
@entity model multiTenantApplicationMetrics extends entity {
|
|
46961
|
+
@references initial: multiTenantApplicationMetricsInitial;
|
|
46962
|
+
@contains investigationHints: investigationActionStep[];
|
|
46963
|
+
@references recent: multiTenantApplicationMetricsRecent;
|
|
46964
|
+
}
|
|
46965
|
+
|
|
46966
|
+
@entity model multiTenantApplicationMetricsBase extends entity {
|
|
46967
|
+
inboundMonthlyTotalApplications: decimal;
|
|
46968
|
+
outboundMonthlyTotalApplications: decimal;
|
|
46969
|
+
watermarkDateTime: offsetDateTime;
|
|
46970
|
+
}
|
|
46971
|
+
|
|
46972
|
+
@entity model multiTenantApplicationMetricsInitial extends multiTenantApplicationMetricsBase {
|
|
46973
|
+
@computed createdDateTime: offsetDateTime;
|
|
46974
|
+
}
|
|
46975
|
+
|
|
46976
|
+
@entity model multiTenantApplicationMetricsRecent extends multiTenantApplicationMetricsBase {
|
|
46977
|
+
updateDateTime: offsetDateTime;
|
|
46978
|
+
}
|
|
46979
|
+
|
|
46565
46980
|
@entity model multiTenantOrganization extends entity {
|
|
46566
46981
|
@computed createdDateTime: offsetDateTime | null;
|
|
46567
46982
|
description: string | null;
|
|
@@ -46649,6 +47064,14 @@ within the time frame of their original request.
|
|
|
46649
47064
|
* Timestamp when on-prem certificate connector was enrolled in Intune.
|
|
46650
47065
|
*/
|
|
46651
47066
|
enrolledDateTime: offsetDateTime;
|
|
47067
|
+
/**
|
|
47068
|
+
* The collection of individual health check results for this connector. Each entry represents an independent health metric with its current status. Empty when the connector is disconnected or when health has not been evaluated yet. Read-only.
|
|
47069
|
+
*/
|
|
47070
|
+
healthChecks: connectorHealthCheck[] | null;
|
|
47071
|
+
/**
|
|
47072
|
+
* The overall health status of the connector, representing the worst status across all individual health checks. This value is pre-computed on each connector upload and may be overridden to disconnected at read time if the connector has not connected recently. Read-only.
|
|
47073
|
+
*/
|
|
47074
|
+
healthStatus: ndesConnectorHealthStatus | null;
|
|
46652
47075
|
/**
|
|
46653
47076
|
* Last connection time for the Ndes Connector
|
|
46654
47077
|
*/
|
|
@@ -47685,6 +48108,7 @@ within the time frame of their original request.
|
|
|
47685
48108
|
removedState: removedState | null;
|
|
47686
48109
|
restrictedExperience: onlineMeetingRestricted | null;
|
|
47687
48110
|
rosterSequenceNumber: int64 | null;
|
|
48111
|
+
syntheticMediaDetection: syntheticMediaDetectionInfo | null;
|
|
47688
48112
|
}
|
|
47689
48113
|
|
|
47690
48114
|
@entity model participantJoiningNotification extends entity {
|
|
@@ -48042,8 +48466,11 @@ within the time frame of their original request.
|
|
|
48042
48466
|
status: placeOperationStatus;
|
|
48043
48467
|
}
|
|
48044
48468
|
|
|
48045
|
-
@entity model planner extends entity {
|
|
48469
|
+
@entity model planner extends MsGraph.SharedModels.entity {
|
|
48046
48470
|
@contains buckets: plannerBucket[];
|
|
48471
|
+
|
|
48472
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
48473
|
+
@contains goals: plannerGoal[];
|
|
48047
48474
|
@contains plans: plannerPlan[];
|
|
48048
48475
|
@contains rosters: plannerRoster[];
|
|
48049
48476
|
@contains tasks: plannerTask[];
|
|
@@ -48071,6 +48498,18 @@ within the time frame of their original request.
|
|
|
48071
48498
|
@entity model plannerDelta extends entity {
|
|
48072
48499
|
}
|
|
48073
48500
|
|
|
48501
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
48502
|
+
@entity model plannerGoal extends plannerDelta {
|
|
48503
|
+
displayName: string;
|
|
48504
|
+
finishDate: offsetDateTime | null;
|
|
48505
|
+
notes: itemBody | null;
|
|
48506
|
+
planId: string;
|
|
48507
|
+
priority: int32 | null;
|
|
48508
|
+
startDate: offsetDateTime | null;
|
|
48509
|
+
status: plannerGoalStatus;
|
|
48510
|
+
@references tasks: plannerTask[];
|
|
48511
|
+
}
|
|
48512
|
+
|
|
48074
48513
|
@entity model plannerGroup extends entity {
|
|
48075
48514
|
@references plans: plannerPlan[];
|
|
48076
48515
|
}
|
|
@@ -48101,6 +48540,9 @@ within the time frame of their original request.
|
|
|
48101
48540
|
title: string;
|
|
48102
48541
|
@references buckets: plannerBucket[];
|
|
48103
48542
|
@contains details: plannerPlanDetails | null;
|
|
48543
|
+
|
|
48544
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
48545
|
+
@references goals: plannerGoal[];
|
|
48104
48546
|
@contains historyItems: plannerHistoryItem[];
|
|
48105
48547
|
@references tasks: plannerTask[];
|
|
48106
48548
|
}
|
|
@@ -48158,6 +48600,9 @@ within the time frame of their original request.
|
|
|
48158
48600
|
@computed createdDateTime: offsetDateTime | null;
|
|
48159
48601
|
creationSource: plannerTaskCreation | null;
|
|
48160
48602
|
dueDateTime: offsetDateTime | null;
|
|
48603
|
+
|
|
48604
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
48605
|
+
goalIds: string[];
|
|
48161
48606
|
hasChat: boolean;
|
|
48162
48607
|
hasDescription: boolean | null;
|
|
48163
48608
|
isArchived: boolean | null;
|
|
@@ -49333,9 +49778,13 @@ within the time frame of their original request.
|
|
|
49333
49778
|
actionSteps: actionStep[] | null;
|
|
49334
49779
|
benefits: string | null;
|
|
49335
49780
|
category: recommendationCategory;
|
|
49781
|
+
categoryGroup: recommendationCategoryGroup;
|
|
49782
|
+
completedBySystemDateTime: offsetDateTime | null;
|
|
49783
|
+
completedByUserDateTime: offsetDateTime | null;
|
|
49336
49784
|
@computed createdDateTime: offsetDateTime;
|
|
49337
49785
|
currentScore: float64 | null;
|
|
49338
49786
|
displayName: string;
|
|
49787
|
+
failedReviewDateTime: offsetDateTime | null;
|
|
49339
49788
|
featureAreas: recommendationFeatureAreas[] | null;
|
|
49340
49789
|
impactStartDateTime: offsetDateTime | null;
|
|
49341
49790
|
impactType: string | null;
|
|
@@ -49344,18 +49793,28 @@ within the time frame of their original request.
|
|
|
49344
49793
|
lastModifiedBy: string | null;
|
|
49345
49794
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
49346
49795
|
maxScore: float64 | null;
|
|
49796
|
+
needsMoreActionResourceCount: int32 | null;
|
|
49797
|
+
nistClassifications: nistClassification[];
|
|
49347
49798
|
postponeUntilDateTime: offsetDateTime | null;
|
|
49348
49799
|
priority: recommendationPriority;
|
|
49349
49800
|
recommendationType: recommendationType | null;
|
|
49350
49801
|
releaseType: string | null;
|
|
49802
|
+
remediatedDateTime: offsetDateTime | null;
|
|
49351
49803
|
remediationImpact: string | null;
|
|
49352
49804
|
requiredLicenses: requiredLicenses | null;
|
|
49353
49805
|
status: recommendationStatus;
|
|
49806
|
+
@computed statusModifiedDateTime: offsetDateTime | null;
|
|
49354
49807
|
@contains impactedResources: impactedResource[];
|
|
49808
|
+
@contains tags: recommendationTag[];
|
|
49355
49809
|
}
|
|
49356
49810
|
|
|
49357
49811
|
@entity model recommendationConfiguration extends entity {
|
|
49358
49812
|
isNotificationEnabled: boolean;
|
|
49813
|
+
@computed lastRefreshedDateTime: offsetDateTime | null;
|
|
49814
|
+
}
|
|
49815
|
+
|
|
49816
|
+
@entity model recommendationTag extends entity {
|
|
49817
|
+
displayName: string;
|
|
49359
49818
|
}
|
|
49360
49819
|
|
|
49361
49820
|
@open
|
|
@@ -49424,6 +49883,23 @@ within the time frame of their original request.
|
|
|
49424
49883
|
translationPreferences: translationPreferences | null;
|
|
49425
49884
|
}
|
|
49426
49885
|
|
|
49886
|
+
@entity model relatedTenant extends entity {
|
|
49887
|
+
@computed createdDateTime: offsetDateTime;
|
|
49888
|
+
/**
|
|
49889
|
+
* Indicates whether this tenant is a Microsoft infrastructure tenant.
|
|
49890
|
+
*/
|
|
49891
|
+
isMicrosoftInfrastructure: boolean;
|
|
49892
|
+
@references appB2BSignInActivityMetrics: b2BSignInActivityMetrics | null;
|
|
49893
|
+
@references b2BRegistrationMetrics: b2bRegistrationMetrics | null;
|
|
49894
|
+
@references b2BSignInActivityMetrics: b2BSignInActivityMetrics | null;
|
|
49895
|
+
@references billingMetrics: billingMetrics | null;
|
|
49896
|
+
@references multiTenantApplicationMetrics: multiTenantApplicationMetrics | null;
|
|
49897
|
+
}
|
|
49898
|
+
|
|
49899
|
+
@entity model relatedTenantsRefreshRequest extends entity {
|
|
49900
|
+
location: string;
|
|
49901
|
+
}
|
|
49902
|
+
|
|
49427
49903
|
@entity model relyingPartyDetailedSummary extends entity {
|
|
49428
49904
|
failedSignInCount: int64;
|
|
49429
49905
|
migrationStatus: migrationStatus;
|
|
@@ -49608,6 +50084,11 @@ within the time frame of their original request.
|
|
|
49608
50084
|
isPartnerConsentPending: boolean;
|
|
49609
50085
|
}
|
|
49610
50086
|
|
|
50087
|
+
@entity model resourceAccountKeyAuthenticationMethod extends authenticationMethod {
|
|
50088
|
+
displayName: string | null;
|
|
50089
|
+
@references device: device | null;
|
|
50090
|
+
}
|
|
50091
|
+
|
|
49611
50092
|
/**
|
|
49612
50093
|
* Describes the resourceOperation resource (entity) of the Microsoft Graph API (REST), which supports Intune workflows related to role-based access control (RBAC).
|
|
49613
50094
|
*/
|
|
@@ -49789,6 +50270,9 @@ within the time frame of their original request.
|
|
|
49789
50270
|
riskState: riskState;
|
|
49790
50271
|
}
|
|
49791
50272
|
|
|
50273
|
+
@entity model riskyAgentDiscoveredAgentIdentity extends riskyAgent {
|
|
50274
|
+
}
|
|
50275
|
+
|
|
49792
50276
|
@entity model riskyAgentIdentity extends riskyAgent {
|
|
49793
50277
|
@references agentIdentity: agentIdentity | null;
|
|
49794
50278
|
}
|
|
@@ -50494,6 +50978,8 @@ within the time frame of their original request.
|
|
|
50494
50978
|
/**
|
|
50495
50979
|
* The security baseline per category compliance state summary for the security baseline of the account.
|
|
50496
50980
|
*/
|
|
50981
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
50982
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
50497
50983
|
@entity model securityBaselineCategoryStateSummary extends securityBaselineStateSummary {
|
|
50498
50984
|
/**
|
|
50499
50985
|
* The category name
|
|
@@ -50504,6 +50990,7 @@ within the time frame of their original request.
|
|
|
50504
50990
|
/**
|
|
50505
50991
|
* The security baseline compliance state summary of the security baseline for a device.
|
|
50506
50992
|
*/
|
|
50993
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
50507
50994
|
@entity model securityBaselineDeviceState extends entity {
|
|
50508
50995
|
/**
|
|
50509
50996
|
* Display name of the device
|
|
@@ -50530,6 +51017,7 @@ within the time frame of their original request.
|
|
|
50530
51017
|
/**
|
|
50531
51018
|
* The security baseline compliance state of a setting for a device
|
|
50532
51019
|
*/
|
|
51020
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
50533
51021
|
@entity model securityBaselineSettingState extends entity {
|
|
50534
51022
|
/**
|
|
50535
51023
|
* The policies that contribute to this setting instance
|
|
@@ -50568,6 +51056,7 @@ within the time frame of their original request.
|
|
|
50568
51056
|
/**
|
|
50569
51057
|
* Security baseline state for a device.
|
|
50570
51058
|
*/
|
|
51059
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
50571
51060
|
@entity model securityBaselineState extends entity {
|
|
50572
51061
|
/**
|
|
50573
51062
|
* The display name of the security baseline
|
|
@@ -50588,12 +51077,15 @@ within the time frame of their original request.
|
|
|
50588
51077
|
/**
|
|
50589
51078
|
* The security baseline state for different settings for a device
|
|
50590
51079
|
*/
|
|
51080
|
+
|
|
51081
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
50591
51082
|
@contains settingStates: securityBaselineSettingState[];
|
|
50592
51083
|
}
|
|
50593
51084
|
|
|
50594
51085
|
/**
|
|
50595
51086
|
* The security baseline compliance state summary for the security baseline of the account.
|
|
50596
51087
|
*/
|
|
51088
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
50597
51089
|
@entity model securityBaselineStateSummary extends entity {
|
|
50598
51090
|
/**
|
|
50599
51091
|
* Number of conflict devices
|
|
@@ -50628,14 +51120,20 @@ within the time frame of their original request.
|
|
|
50628
51120
|
/**
|
|
50629
51121
|
* The security baseline per category device state summary
|
|
50630
51122
|
*/
|
|
51123
|
+
|
|
51124
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
50631
51125
|
@contains categoryDeviceStateSummaries: securityBaselineCategoryStateSummary[];
|
|
50632
51126
|
/**
|
|
50633
51127
|
* The security baseline device states
|
|
50634
51128
|
*/
|
|
51129
|
+
|
|
51130
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
50635
51131
|
@contains deviceStates: securityBaselineDeviceState[];
|
|
50636
51132
|
/**
|
|
50637
51133
|
* The security baseline device state summary
|
|
50638
51134
|
*/
|
|
51135
|
+
|
|
51136
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
50639
51137
|
@contains deviceStateSummary: securityBaselineStateSummary | null;
|
|
50640
51138
|
}
|
|
50641
51139
|
|
|
@@ -50914,6 +51412,7 @@ within the time frame of their original request.
|
|
|
50914
51412
|
@contains federatedIdentityCredentials: federatedIdentityCredential[];
|
|
50915
51413
|
@references homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
50916
51414
|
@contains licenseDetails: licenseDetails[];
|
|
51415
|
+
@contains lifecycle: reference.`microsoft.graph.identityGovernance`.identityLifecycle | null;
|
|
50917
51416
|
@references memberOf: directoryObject[];
|
|
50918
51417
|
@references oauth2PermissionGrants: oAuth2PermissionGrant[];
|
|
50919
51418
|
@references ownedObjects: directoryObject[];
|
|
@@ -52297,7 +52796,7 @@ within the time frame of their original request.
|
|
|
52297
52796
|
@contains teamDefinition: team | null;
|
|
52298
52797
|
}
|
|
52299
52798
|
|
|
52300
|
-
@entity model teamwork extends entity {
|
|
52799
|
+
@entity model teamwork extends MsGraph.SharedModels.entity {
|
|
52301
52800
|
isTeamsEnabled: boolean;
|
|
52302
52801
|
region: string | null;
|
|
52303
52802
|
@contains deletedChats: deletedChat[];
|
|
@@ -52469,6 +52968,31 @@ within the time frame of their original request.
|
|
|
52469
52968
|
@contains protectionScopes: tenantProtectionScopeContainer;
|
|
52470
52969
|
}
|
|
52471
52970
|
|
|
52971
|
+
@entity model tenantGovernance extends entity {
|
|
52972
|
+
@contains governanceInvitations: governanceInvitation[];
|
|
52973
|
+
@contains governancePolicyTemplates: tenantGovernancePolicyTemplate[];
|
|
52974
|
+
@contains governanceRelationships: governanceRelationship[];
|
|
52975
|
+
@contains governanceRequests: governanceRequest[];
|
|
52976
|
+
@contains relatedTenants: relatedTenant[];
|
|
52977
|
+
@contains settings: tenantGovernanceSetting | null;
|
|
52978
|
+
}
|
|
52979
|
+
|
|
52980
|
+
@entity model tenantGovernancePolicyTemplate extends entity {
|
|
52981
|
+
@computed createdDateTime: offsetDateTime;
|
|
52982
|
+
delegatedAdministrationRoleAssignments: delegatedAdministrationRoleAssignment[];
|
|
52983
|
+
description: string;
|
|
52984
|
+
displayName: string;
|
|
52985
|
+
governedTenantCanTerminate: boolean;
|
|
52986
|
+
@computed lastModifiedDateTime: offsetDateTime;
|
|
52987
|
+
multiTenantApplicationsToProvision: multiTenantApplicationsToProvision[];
|
|
52988
|
+
version: string;
|
|
52989
|
+
}
|
|
52990
|
+
|
|
52991
|
+
@entity model tenantGovernanceSetting extends entity {
|
|
52992
|
+
canReceiveInvitations: boolean;
|
|
52993
|
+
isRelatedTenantsEnabled: boolean;
|
|
52994
|
+
}
|
|
52995
|
+
|
|
52472
52996
|
@entity model tenantProtectionScopeContainer extends entity {
|
|
52473
52997
|
}
|
|
52474
52998
|
|
|
@@ -52612,6 +53136,7 @@ within the time frame of their original request.
|
|
|
52612
53136
|
|
|
52613
53137
|
@entity model textClassificationRequest extends entity {
|
|
52614
53138
|
contentMetaData: classificationRequestContentMetaData | null;
|
|
53139
|
+
embeddings: embeddingInput[] | null;
|
|
52615
53140
|
fileExtension: string | null;
|
|
52616
53141
|
matchTolerancesToInclude: mlClassificationMatchTolerance | null;
|
|
52617
53142
|
scopesToRun: sensitiveTypeScope | null;
|
|
@@ -53456,6 +53981,7 @@ within the time frame of their original request.
|
|
|
53456
53981
|
@contains security: reference.`microsoft.graph.security`.security | null;
|
|
53457
53982
|
@contains settings: userSettings | null;
|
|
53458
53983
|
@contains solutions: userSolutionRoot | null;
|
|
53984
|
+
@references sponsorOf: directoryObject[];
|
|
53459
53985
|
@references sponsors: directoryObject[];
|
|
53460
53986
|
@contains teamwork: userTeamwork | null;
|
|
53461
53987
|
@contains todo: todo | null;
|
|
@@ -55624,8 +56150,10 @@ within the time frame of their original request.
|
|
|
55624
56150
|
description: string;
|
|
55625
56151
|
faceCheckConfiguration: faceCheckConfiguration;
|
|
55626
56152
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
56153
|
+
mobileDriversLicenseConfiguration: mobileDriversLicenseConfiguration | null;
|
|
55627
56154
|
name: string;
|
|
55628
56155
|
priority: int32 | null;
|
|
56156
|
+
selfServiceIssuance: verifiedIdSelfServiceIssuance | null;
|
|
55629
56157
|
state: verifiedIdProfileState;
|
|
55630
56158
|
verifiedIdProfileConfiguration: verifiedIdProfileConfiguration;
|
|
55631
56159
|
verifiedIdUsageConfigurations: verifiedIdUsageConfiguration[];
|
|
@@ -60636,7 +61164,11 @@ within the time frame of their original request.
|
|
|
60636
61164
|
*/
|
|
60637
61165
|
@entity model windowsManagedAppProtection extends managedAppPolicy {
|
|
60638
61166
|
/**
|
|
60639
|
-
*
|
|
61167
|
+
* When allowedInboundDataTransferSources is set to selectedApps, this property indicates the location from which data is allowed to be received into the org context. Data from the selected source will be treated as org data and subject to Intune app protection policy.
|
|
61168
|
+
*/
|
|
61169
|
+
allowedInboundDataTransferSourceApps: windowsManagedAppDataTransferLocations;
|
|
61170
|
+
/**
|
|
61171
|
+
* Indicates the sources from which data is allowed to be transferred. Some possible values are allApps, none, or selectedApps.
|
|
60640
61172
|
*/
|
|
60641
61173
|
allowedInboundDataTransferSources: windowsManagedAppDataTransferLevel;
|
|
60642
61174
|
/**
|
|
@@ -60644,7 +61176,11 @@ within the time frame of their original request.
|
|
|
60644
61176
|
*/
|
|
60645
61177
|
allowedOutboundClipboardSharingLevel: windowsManagedAppClipboardSharingLevel;
|
|
60646
61178
|
/**
|
|
60647
|
-
*
|
|
61179
|
+
* When allowedOutboundDataTransferDestinations is set to selectedApps, this property indicates the location to which org data is allowed to be transferred. Data shared with the selected destination is not protected by Intune app protection policy.
|
|
61180
|
+
*/
|
|
61181
|
+
allowedOutboundDataTransferDestinationApps: windowsManagedAppDataTransferLocations;
|
|
61182
|
+
/**
|
|
61183
|
+
* Indicates the destinations to which data is allowed to be transferred. Some possible values are allApps, none, or selectedApps.
|
|
60648
61184
|
*/
|
|
60649
61185
|
allowedOutboundDataTransferDestinations: windowsManagedAppDataTransferLevel;
|
|
60650
61186
|
/**
|
|
@@ -63156,12 +63692,19 @@ within the time frame of their original request.
|
|
|
63156
63692
|
unknownFutureValue: 3,
|
|
63157
63693
|
}
|
|
63158
63694
|
|
|
63695
|
+
enum agentEndpointConfigurationType {
|
|
63696
|
+
apiBased: 0,
|
|
63697
|
+
botBased: 1,
|
|
63698
|
+
unknownFutureValue: 2,
|
|
63699
|
+
}
|
|
63700
|
+
|
|
63159
63701
|
enum agentIdentityType {
|
|
63160
63702
|
agentIdentity: 0,
|
|
63161
63703
|
agentUser: 1,
|
|
63162
63704
|
unknownFutureValue: 2,
|
|
63163
63705
|
agentIdentityBlueprintPrincipal: 3,
|
|
63164
63706
|
user: 4,
|
|
63707
|
+
discoveredAgentIdentity: 5,
|
|
63165
63708
|
}
|
|
63166
63709
|
|
|
63167
63710
|
enum agentIdRiskLevel {
|
|
@@ -63172,6 +63715,12 @@ within the time frame of their original request.
|
|
|
63172
63715
|
unknownFutureValue: 8,
|
|
63173
63716
|
}
|
|
63174
63717
|
|
|
63718
|
+
enum agentMessageNotificationMode {
|
|
63719
|
+
atMentionedMessagesOnly: 0,
|
|
63720
|
+
allMessages: 1,
|
|
63721
|
+
unknownFutureValue: 2,
|
|
63722
|
+
}
|
|
63723
|
+
|
|
63175
63724
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
63176
63725
|
enum agentStatus {
|
|
63177
63726
|
active: 0,
|
|
@@ -64894,6 +65443,18 @@ within the time frame of their original request.
|
|
|
64894
65443
|
unknownFutureValue: 127,
|
|
64895
65444
|
}
|
|
64896
65445
|
|
|
65446
|
+
enum applicationPermissionType {
|
|
65447
|
+
/**
|
|
65448
|
+
* Represents a type of permission that is for an app only scenario. No user is involved.
|
|
65449
|
+
*/
|
|
65450
|
+
role: 0,
|
|
65451
|
+
/**
|
|
65452
|
+
* Represents a type of permission that is for an app and user scenario.
|
|
65453
|
+
*/
|
|
65454
|
+
scope: 1,
|
|
65455
|
+
unknownFutureValue: 2,
|
|
65456
|
+
}
|
|
65457
|
+
|
|
64897
65458
|
/**
|
|
64898
65459
|
* Possible types of Application
|
|
64899
65460
|
*/
|
|
@@ -68451,6 +69012,29 @@ within the time frame of their original request.
|
|
|
68451
69012
|
applicationProxy: 0,
|
|
68452
69013
|
}
|
|
68453
69014
|
|
|
69015
|
+
/**
|
|
69016
|
+
* The name of the health check metric being evaluated for an NDES connector.
|
|
69017
|
+
*/
|
|
69018
|
+
enum connectorHealthCheckMetricName {
|
|
69019
|
+
/**
|
|
69020
|
+
* Measures connectivity between the connector and the Certificate Authority.
|
|
69021
|
+
*/
|
|
69022
|
+
caConnectivity: 0,
|
|
69023
|
+
/**
|
|
69024
|
+
* Measures whether the connector has the required Enroll permission on the certificate template for issuance.
|
|
69025
|
+
*/
|
|
69026
|
+
caIssuancePermissions: 1,
|
|
69027
|
+
/**
|
|
69028
|
+
* Measures whether the connector has the required permissions to revoke certificates on the CA.
|
|
69029
|
+
*/
|
|
69030
|
+
caRevocationPermissions: 2,
|
|
69031
|
+
/**
|
|
69032
|
+
* Measures whether the configured certificate template is valid and accessible.
|
|
69033
|
+
*/
|
|
69034
|
+
certificateTemplate: 3,
|
|
69035
|
+
unknownFutureValue: 4,
|
|
69036
|
+
}
|
|
69037
|
+
|
|
68454
69038
|
/**
|
|
68455
69039
|
* Connector health state for connector status
|
|
68456
69040
|
*/
|
|
@@ -68592,6 +69176,15 @@ within the time frame of their original request.
|
|
|
68592
69176
|
email: 1,
|
|
68593
69177
|
}
|
|
68594
69178
|
|
|
69179
|
+
enum contentModality {
|
|
69180
|
+
audio: 0,
|
|
69181
|
+
video: 1,
|
|
69182
|
+
image: 2,
|
|
69183
|
+
text: 3,
|
|
69184
|
+
multimodal: 4,
|
|
69185
|
+
unknownFutureValue: 5,
|
|
69186
|
+
}
|
|
69187
|
+
|
|
68595
69188
|
enum contentModelType {
|
|
68596
69189
|
teachingMethod: 0,
|
|
68597
69190
|
layoutMethod: 1,
|
|
@@ -69438,6 +70031,13 @@ within the time frame of their original request.
|
|
|
69438
70031
|
unknownFutureValue: 11,
|
|
69439
70032
|
}
|
|
69440
70033
|
|
|
70034
|
+
enum detectionSeverity {
|
|
70035
|
+
low: 0,
|
|
70036
|
+
medium: 1,
|
|
70037
|
+
high: 2,
|
|
70038
|
+
unknownFutureValue: 3,
|
|
70039
|
+
}
|
|
70040
|
+
|
|
69441
70041
|
/**
|
|
69442
70042
|
* Enum type used for DeviceActionCategory
|
|
69443
70043
|
*/
|
|
@@ -71104,6 +71704,10 @@ within the time frame of their original request.
|
|
|
71104
71704
|
* Indicates the settings that can be deployed through the Android channel.
|
|
71105
71705
|
*/
|
|
71106
71706
|
android: 65536,
|
|
71707
|
+
/**
|
|
71708
|
+
* Setting can be deployed through the Intune Open Extensibility channel for scenarios such as Windows Recovery Environment (WinRE) configuration policies.
|
|
71709
|
+
*/
|
|
71710
|
+
intuneOpenExtensibility: 131072,
|
|
71107
71711
|
}
|
|
71108
71712
|
|
|
71109
71713
|
/**
|
|
@@ -73743,6 +74347,176 @@ within the time frame of their original request.
|
|
|
73743
74347
|
IgnoreLookupReferenceResolutionFailure: 2,
|
|
73744
74348
|
}
|
|
73745
74349
|
|
|
74350
|
+
/**
|
|
74351
|
+
* Indicates the detailed error condition for an eSIM profile operation.
|
|
74352
|
+
*/
|
|
74353
|
+
enum eSimProfileErrorDetail {
|
|
74354
|
+
/**
|
|
74355
|
+
* No error.
|
|
74356
|
+
*/
|
|
74357
|
+
none: 0,
|
|
74358
|
+
/**
|
|
74359
|
+
* The eSIM card encountered a general failure.
|
|
74360
|
+
*/
|
|
74361
|
+
cardGeneralFailure: 1,
|
|
74362
|
+
/**
|
|
74363
|
+
* The confirmation code provided was incorrect.
|
|
74364
|
+
*/
|
|
74365
|
+
confirmationCodeIncorrect: 2,
|
|
74366
|
+
/**
|
|
74367
|
+
* The confirmation code was missing.
|
|
74368
|
+
*/
|
|
74369
|
+
confirmationCodeMissing: 3,
|
|
74370
|
+
/**
|
|
74371
|
+
* The maximum number of retries for the confirmation code was exceeded.
|
|
74372
|
+
*/
|
|
74373
|
+
confirmationCodeMaxRetriesExceeded: 4,
|
|
74374
|
+
/**
|
|
74375
|
+
* The operation is forbidden by policy.
|
|
74376
|
+
*/
|
|
74377
|
+
forbiddenByPolicy: 5,
|
|
74378
|
+
/**
|
|
74379
|
+
* The matching ID provided was invalid.
|
|
74380
|
+
*/
|
|
74381
|
+
invalidMatchingId: 6,
|
|
74382
|
+
/**
|
|
74383
|
+
* No eligible eSIM profile was found for this device.
|
|
74384
|
+
*/
|
|
74385
|
+
noEligibleProfileForThisDevice: 7,
|
|
74386
|
+
/**
|
|
74387
|
+
* There was not enough space on the eSIM card.
|
|
74388
|
+
*/
|
|
74389
|
+
notEnoughSpaceOnCard: 8,
|
|
74390
|
+
/**
|
|
74391
|
+
* The operation was aborted.
|
|
74392
|
+
*/
|
|
74393
|
+
operationAborted: 9,
|
|
74394
|
+
/**
|
|
74395
|
+
* The eSIM profile EID did not match the device.
|
|
74396
|
+
*/
|
|
74397
|
+
profileEidMismatch: 10,
|
|
74398
|
+
/**
|
|
74399
|
+
* The eSIM profile is not available for a new binding.
|
|
74400
|
+
*/
|
|
74401
|
+
profileNotAvailableForNewBinding: 11,
|
|
74402
|
+
/**
|
|
74403
|
+
* The eSIM profile has not been released by the operator.
|
|
74404
|
+
*/
|
|
74405
|
+
profileNotReleasedByOperator: 12,
|
|
74406
|
+
/**
|
|
74407
|
+
* The remote server encountered a general failure.
|
|
74408
|
+
*/
|
|
74409
|
+
remoteServerGeneralFailure: 13,
|
|
74410
|
+
/**
|
|
74411
|
+
* The remote server was unreachable.
|
|
74412
|
+
*/
|
|
74413
|
+
remoteServerUnreachable: 14,
|
|
74414
|
+
/**
|
|
74415
|
+
* A timeout occurred while waiting for user consent.
|
|
74416
|
+
*/
|
|
74417
|
+
timeoutWaitingForUserConsent: 15,
|
|
74418
|
+
/**
|
|
74419
|
+
* The operation is prohibited by the eSIM profile class.
|
|
74420
|
+
*/
|
|
74421
|
+
operationProhibitedByProfileClass: 16,
|
|
74422
|
+
/**
|
|
74423
|
+
* The provisioning profile is not present.
|
|
74424
|
+
*/
|
|
74425
|
+
provisioningProfileNotPresent: 17,
|
|
74426
|
+
/**
|
|
74427
|
+
* There is no corresponding request for this operation.
|
|
74428
|
+
*/
|
|
74429
|
+
noCorrespondingRequest: 18,
|
|
74430
|
+
/**
|
|
74431
|
+
* A timeout occurred while waiting for a response.
|
|
74432
|
+
*/
|
|
74433
|
+
timeoutWaitingForResponse: 19,
|
|
74434
|
+
/**
|
|
74435
|
+
* The ICCID already exists on the device.
|
|
74436
|
+
*/
|
|
74437
|
+
iccidAlreadyExists: 20,
|
|
74438
|
+
/**
|
|
74439
|
+
* An error occurred while processing the eSIM profile.
|
|
74440
|
+
*/
|
|
74441
|
+
profileProcessingError: 21,
|
|
74442
|
+
/**
|
|
74443
|
+
* The remote server is not trusted.
|
|
74444
|
+
*/
|
|
74445
|
+
remoteServerNotTrusted: 22,
|
|
74446
|
+
/**
|
|
74447
|
+
* The maximum number of retries for profile download was exceeded.
|
|
74448
|
+
*/
|
|
74449
|
+
profileDownloadMaxRetriesExceeded: 23,
|
|
74450
|
+
/**
|
|
74451
|
+
* The WinHTTP name could not be resolved.
|
|
74452
|
+
*/
|
|
74453
|
+
winhttpNameNotResolved: 24,
|
|
74454
|
+
/**
|
|
74455
|
+
* The WinHTTP operation was cancelled.
|
|
74456
|
+
*/
|
|
74457
|
+
winhttpOperationCancelled: 25,
|
|
74458
|
+
/**
|
|
74459
|
+
* The status is unspecified.
|
|
74460
|
+
*/
|
|
74461
|
+
statusUnspecified: 26,
|
|
74462
|
+
/**
|
|
74463
|
+
* The operation is in progress.
|
|
74464
|
+
*/
|
|
74465
|
+
inProgress: 27,
|
|
74466
|
+
/**
|
|
74467
|
+
* The operation is pending user action.
|
|
74468
|
+
*/
|
|
74469
|
+
pendingUserAction: 28,
|
|
74470
|
+
/**
|
|
74471
|
+
* An error occurred while setup was in progress.
|
|
74472
|
+
*/
|
|
74473
|
+
errorSetupInProgress: 29,
|
|
74474
|
+
/**
|
|
74475
|
+
* The user denied the operation.
|
|
74476
|
+
*/
|
|
74477
|
+
errorUserDenied: 30,
|
|
74478
|
+
/**
|
|
74479
|
+
* An internal error occurred.
|
|
74480
|
+
*/
|
|
74481
|
+
internalError: 31,
|
|
74482
|
+
/**
|
|
74483
|
+
* The ICCID was not found.
|
|
74484
|
+
*/
|
|
74485
|
+
errorIccIdNotFound: 32,
|
|
74486
|
+
/**
|
|
74487
|
+
* Multiple active eSIMs are present but no slot is available.
|
|
74488
|
+
*/
|
|
74489
|
+
errorMultipleActiveEsimsNoAvailableSlot: 33,
|
|
74490
|
+
unknownFutureValue: 34,
|
|
74491
|
+
}
|
|
74492
|
+
|
|
74493
|
+
/**
|
|
74494
|
+
* Indicates the state of an eSIM profile on a managed device.
|
|
74495
|
+
*/
|
|
74496
|
+
enum eSimProfileState {
|
|
74497
|
+
/**
|
|
74498
|
+
* Unknown state.
|
|
74499
|
+
*/
|
|
74500
|
+
`unknown`: 0,
|
|
74501
|
+
/**
|
|
74502
|
+
* The eSIM profile is being installed.
|
|
74503
|
+
*/
|
|
74504
|
+
installing: 1,
|
|
74505
|
+
/**
|
|
74506
|
+
* The eSIM profile has been successfully installed.
|
|
74507
|
+
*/
|
|
74508
|
+
installed: 2,
|
|
74509
|
+
/**
|
|
74510
|
+
* The eSIM profile is being deleted.
|
|
74511
|
+
*/
|
|
74512
|
+
deleting: 3,
|
|
74513
|
+
/**
|
|
74514
|
+
* An error occurred while processing the eSIM profile.
|
|
74515
|
+
*/
|
|
74516
|
+
error: 4,
|
|
74517
|
+
unknownFutureValue: 5,
|
|
74518
|
+
}
|
|
74519
|
+
|
|
73746
74520
|
enum evaluationScopeType {
|
|
73747
74521
|
tenant: 0,
|
|
73748
74522
|
agent: 1,
|
|
@@ -73950,6 +74724,7 @@ within the time frame of their original request.
|
|
|
73950
74724
|
itemMajorVersionLimit: 4,
|
|
73951
74725
|
maxStoragePerContainerInBytes: 5,
|
|
73952
74726
|
unknownFutureValue: 6,
|
|
74727
|
+
isOfficeRestricted: 7,
|
|
73953
74728
|
}
|
|
73954
74729
|
|
|
73955
74730
|
/**
|
|
@@ -77538,6 +78313,22 @@ within the time frame of their original request.
|
|
|
77538
78313
|
userRequestedInstall: 5,
|
|
77539
78314
|
}
|
|
77540
78315
|
|
|
78316
|
+
/**
|
|
78317
|
+
* Optional error codes that can be provided when uploadState of mobileAppContentFile is indicating an error.
|
|
78318
|
+
*/
|
|
78319
|
+
enum mobileAppContentFileUploadErrorCode {
|
|
78320
|
+
apkIsInvalid: 1,
|
|
78321
|
+
apkIsMissingSignerCertificates: 2,
|
|
78322
|
+
apkHasInvalidPackageName: 3,
|
|
78323
|
+
apkPackageNameMismatch: 4,
|
|
78324
|
+
apkHasInvalidVersionCode: 5,
|
|
78325
|
+
apkHasVersionCodeMismatch: 6,
|
|
78326
|
+
apkHasInvalidMinSdk: 7,
|
|
78327
|
+
apkMinSdkMismatch: 8,
|
|
78328
|
+
apkVersionNameMismatch: 9,
|
|
78329
|
+
unknownFutureValue: 10,
|
|
78330
|
+
}
|
|
78331
|
+
|
|
77541
78332
|
/**
|
|
77542
78333
|
* Contains properties for upload request states.
|
|
77543
78334
|
*/
|
|
@@ -77807,6 +78598,33 @@ within the time frame of their original request.
|
|
|
77807
78598
|
unknownFutureValue: 2,
|
|
77808
78599
|
}
|
|
77809
78600
|
|
|
78601
|
+
/**
|
|
78602
|
+
* The health status of an NDES connector or individual health check metric.
|
|
78603
|
+
*/
|
|
78604
|
+
enum ndesConnectorHealthStatus {
|
|
78605
|
+
/**
|
|
78606
|
+
* Health has not been evaluated yet for this connector.
|
|
78607
|
+
*/
|
|
78608
|
+
`unknown`: 0,
|
|
78609
|
+
/**
|
|
78610
|
+
* All health checks are passing. Error rates are below the attention threshold for all metrics.
|
|
78611
|
+
*/
|
|
78612
|
+
noActionRequired: 1,
|
|
78613
|
+
/**
|
|
78614
|
+
* One or more health checks have error rates between the attention and action thresholds.
|
|
78615
|
+
*/
|
|
78616
|
+
attentionRequired: 2,
|
|
78617
|
+
/**
|
|
78618
|
+
* One or more health checks have error rates above the action threshold. Investigation is required.
|
|
78619
|
+
*/
|
|
78620
|
+
actionRequired: 3,
|
|
78621
|
+
/**
|
|
78622
|
+
* The connector has not connected within the staleness threshold. Applied at read time based on lastConnectionDateTime.
|
|
78623
|
+
*/
|
|
78624
|
+
disconnected: 4,
|
|
78625
|
+
unknownFutureValue: 5,
|
|
78626
|
+
}
|
|
78627
|
+
|
|
77810
78628
|
/**
|
|
77811
78629
|
* The current status of the Ndes Connector.
|
|
77812
78630
|
*/
|
|
@@ -78947,6 +79765,15 @@ within the time frame of their original request.
|
|
|
78947
79765
|
unknownFutureValue: 3,
|
|
78948
79766
|
}
|
|
78949
79767
|
|
|
79768
|
+
enum plannerGoalStatus {
|
|
79769
|
+
notStarted: 0,
|
|
79770
|
+
onTrack: 1,
|
|
79771
|
+
behind: 2,
|
|
79772
|
+
atRisk: 3,
|
|
79773
|
+
closed: 4,
|
|
79774
|
+
unknownFutureValue: 5,
|
|
79775
|
+
}
|
|
79776
|
+
|
|
78950
79777
|
enum plannerPlanAccessLevel {
|
|
78951
79778
|
readAccess: 0,
|
|
78952
79779
|
readWriteAccess: 1,
|
|
@@ -81315,6 +82142,16 @@ within the time frame of their original request.
|
|
|
81315
82142
|
mdiSecureScore: 3,
|
|
81316
82143
|
}
|
|
81317
82144
|
|
|
82145
|
+
enum recommendationCategoryGroup {
|
|
82146
|
+
strengthenAuthentication: 0,
|
|
82147
|
+
detectAndRespondToThreats: 1,
|
|
82148
|
+
enforceLeastPrivilege: 2,
|
|
82149
|
+
governAppsCredentialsAndAgents: 3,
|
|
82150
|
+
hardenInfrastructure: 4,
|
|
82151
|
+
defenderForIdentity: 5,
|
|
82152
|
+
unknownFutureValue: 6,
|
|
82153
|
+
}
|
|
82154
|
+
|
|
81318
82155
|
enum recommendationFeatureAreas {
|
|
81319
82156
|
users: 0,
|
|
81320
82157
|
groups: 1,
|
|
@@ -81326,11 +82163,12 @@ within the time frame of their original request.
|
|
|
81326
82163
|
unknownFutureValue: 7,
|
|
81327
82164
|
}
|
|
81328
82165
|
|
|
81329
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
81330
82166
|
enum recommendationPriority {
|
|
81331
82167
|
low: 0,
|
|
81332
82168
|
medium: 1,
|
|
81333
82169
|
high: 2,
|
|
82170
|
+
critical: 3,
|
|
82171
|
+
unknownFutureValue: 4,
|
|
81334
82172
|
}
|
|
81335
82173
|
|
|
81336
82174
|
enum recommendationStatus {
|
|
@@ -81344,6 +82182,7 @@ within the time frame of their original request.
|
|
|
81344
82182
|
thirdParty: 7,
|
|
81345
82183
|
planned: 8,
|
|
81346
82184
|
alternateMitigation: 9,
|
|
82185
|
+
needsMoreAction: 10,
|
|
81347
82186
|
}
|
|
81348
82187
|
|
|
81349
82188
|
enum recommendationType {
|
|
@@ -81511,6 +82350,34 @@ within the time frame of their original request.
|
|
|
81511
82350
|
unknownFutureValue: 3,
|
|
81512
82351
|
}
|
|
81513
82352
|
|
|
82353
|
+
enum relationshipCreationType {
|
|
82354
|
+
/**
|
|
82355
|
+
* Represents a relationship between two tenants that was created by an explicit approval from the governed tenant admin.
|
|
82356
|
+
*/
|
|
82357
|
+
approvedByAdmin: 0,
|
|
82358
|
+
/**
|
|
82359
|
+
* Represents a relationship between the add-on tenant and the tenant from which it was created.
|
|
82360
|
+
*/
|
|
82361
|
+
addOnTenant: 1,
|
|
82362
|
+
unknownFutureValue: 2,
|
|
82363
|
+
}
|
|
82364
|
+
|
|
82365
|
+
enum relationshipStatus {
|
|
82366
|
+
/**
|
|
82367
|
+
* Represents a relationship that is currently active.
|
|
82368
|
+
*/
|
|
82369
|
+
active: 0,
|
|
82370
|
+
/**
|
|
82371
|
+
* Represents a relationship that has been terminated.
|
|
82372
|
+
*/
|
|
82373
|
+
terminated: 1,
|
|
82374
|
+
/**
|
|
82375
|
+
* Represents a relationship that has been requested to be terminated by governing tenant.
|
|
82376
|
+
*/
|
|
82377
|
+
terminationRequestedByGoverningTenant: 2,
|
|
82378
|
+
unknownFutureValue: 3,
|
|
82379
|
+
}
|
|
82380
|
+
|
|
81514
82381
|
enum releaseType {
|
|
81515
82382
|
preview: 0,
|
|
81516
82383
|
generallyAvailable: 1,
|
|
@@ -81714,6 +82581,14 @@ within the time frame of their original request.
|
|
|
81714
82581
|
* Indicates remote device action to restore the Managed Home Screen kiosk app.
|
|
81715
82582
|
*/
|
|
81716
82583
|
restoreManagedHomeScreen: 42,
|
|
82584
|
+
/**
|
|
82585
|
+
* Indicates remote device action to trigger an AppleCare-authorized enhanced log collection session on a supervised Apple device.
|
|
82586
|
+
*/
|
|
82587
|
+
triggerEnhancedLogCollection: 44,
|
|
82588
|
+
/**
|
|
82589
|
+
* Indicates remote device action to cancel an in-progress enhanced log collection session on a supervised Apple device.
|
|
82590
|
+
*/
|
|
82591
|
+
cancelEnhancedLogCollection: 45,
|
|
81717
82592
|
}
|
|
81718
82593
|
|
|
81719
82594
|
/**
|
|
@@ -81750,6 +82625,25 @@ within the time frame of their original request.
|
|
|
81750
82625
|
enabled: 2,
|
|
81751
82626
|
}
|
|
81752
82627
|
|
|
82628
|
+
/**
|
|
82629
|
+
* Enumeration indicating the state of session recording
|
|
82630
|
+
*/
|
|
82631
|
+
enum remoteHelpRecordingState {
|
|
82632
|
+
/**
|
|
82633
|
+
* Recording is not enabled for this session.
|
|
82634
|
+
*/
|
|
82635
|
+
notEnabled: 0,
|
|
82636
|
+
/**
|
|
82637
|
+
* Recording is in progress.
|
|
82638
|
+
*/
|
|
82639
|
+
recording: 1,
|
|
82640
|
+
/**
|
|
82641
|
+
* Recording failed.
|
|
82642
|
+
*/
|
|
82643
|
+
failed: 2,
|
|
82644
|
+
unknownFutureValue: 3,
|
|
82645
|
+
}
|
|
82646
|
+
|
|
81753
82647
|
enum replyRestriction {
|
|
81754
82648
|
everyone: 0,
|
|
81755
82649
|
authorAndModerators: 1,
|
|
@@ -81764,6 +82658,22 @@ within the time frame of their original request.
|
|
|
81764
82658
|
unknownFutureValue: 4,
|
|
81765
82659
|
}
|
|
81766
82660
|
|
|
82661
|
+
enum requestStatus {
|
|
82662
|
+
/**
|
|
82663
|
+
* Represents a governance request that is pending
|
|
82664
|
+
*/
|
|
82665
|
+
pending: 0,
|
|
82666
|
+
/**
|
|
82667
|
+
* Represents a governance request that was accepted
|
|
82668
|
+
*/
|
|
82669
|
+
accepted: 1,
|
|
82670
|
+
/**
|
|
82671
|
+
* Represents a governance request that was rejected
|
|
82672
|
+
*/
|
|
82673
|
+
rejected: 2,
|
|
82674
|
+
unknownFutureValue: 3,
|
|
82675
|
+
}
|
|
82676
|
+
|
|
81767
82677
|
enum requiredLicenses {
|
|
81768
82678
|
notApplicable: 0,
|
|
81769
82679
|
microsoftEntraIdFree: 1,
|
|
@@ -81773,6 +82683,7 @@ within the time frame of their original request.
|
|
|
81773
82683
|
microsoftEntraWorkloadId: 5,
|
|
81774
82684
|
unknownFutureValue: 6,
|
|
81775
82685
|
aatp: 7,
|
|
82686
|
+
microsoftEntraSuite: 8,
|
|
81776
82687
|
}
|
|
81777
82688
|
|
|
81778
82689
|
/**
|
|
@@ -82195,6 +83106,10 @@ within the time frame of their original request.
|
|
|
82195
83106
|
* App was removed in order to install a superseding app.
|
|
82196
83107
|
*/
|
|
82197
83108
|
appRemovedBySupersedence: 3005,
|
|
83109
|
+
/**
|
|
83110
|
+
* App cannot be installed. One or more of the application's dependencies are in use.
|
|
83111
|
+
*/
|
|
83112
|
+
dependencyAppInUse: 3006,
|
|
82198
83113
|
/**
|
|
82199
83114
|
* Application failed to uninstall. See error code property for more details.
|
|
82200
83115
|
*/
|
|
@@ -82211,6 +83126,18 @@ within the time frame of their original request.
|
|
|
82211
83126
|
* Application content was downloaded to the device.
|
|
82212
83127
|
*/
|
|
82213
83128
|
contentDownloaded: 5002,
|
|
83129
|
+
/**
|
|
83130
|
+
* App enforcement is pending because the app is currently in use.
|
|
83131
|
+
*/
|
|
83132
|
+
inUse: 5005,
|
|
83133
|
+
/**
|
|
83134
|
+
* App enforcement was deferred by the user because the app is currently in use.
|
|
83135
|
+
*/
|
|
83136
|
+
deferred: 5006,
|
|
83137
|
+
/**
|
|
83138
|
+
* App enforcement was automatically deferred because the app is currently in use and a user response was not available.
|
|
83139
|
+
*/
|
|
83140
|
+
autoDeferred: 5007,
|
|
82214
83141
|
}
|
|
82215
83142
|
|
|
82216
83143
|
enum retentionPeriodChangeStatus {
|
|
@@ -84355,6 +85282,7 @@ within the time frame of their original request.
|
|
|
84355
85282
|
pasteFromClipboard: 64,
|
|
84356
85283
|
print: 128,
|
|
84357
85284
|
accessDebugTools: 256,
|
|
85285
|
+
contentFiltering: 512,
|
|
84358
85286
|
}
|
|
84359
85287
|
|
|
84360
85288
|
enum userDefaultAuthenticationMethod {
|
|
@@ -84828,6 +85756,14 @@ within the time frame of their original request.
|
|
|
84828
85756
|
unknownFutureValue: 9,
|
|
84829
85757
|
}
|
|
84830
85758
|
|
|
85759
|
+
enum verifiedIdMethodType {
|
|
85760
|
+
identityVerificationPartner: 0,
|
|
85761
|
+
tenantCustomCredential: 1,
|
|
85762
|
+
verifiedEmployee: 2,
|
|
85763
|
+
unknownFutureValue: 3,
|
|
85764
|
+
notConfigured: 4,
|
|
85765
|
+
}
|
|
85766
|
+
|
|
84831
85767
|
enum verifiedIdProfileState {
|
|
84832
85768
|
enabled: 0,
|
|
84833
85769
|
disabled: 1,
|
|
@@ -84839,6 +85775,7 @@ within the time frame of their original request.
|
|
|
84839
85775
|
onboarding: 1,
|
|
84840
85776
|
all: 2,
|
|
84841
85777
|
unknownFutureValue: 3,
|
|
85778
|
+
verification: 4,
|
|
84842
85779
|
}
|
|
84843
85780
|
|
|
84844
85781
|
enum virtualAppointmentMessageType {
|
|
@@ -87514,7 +88451,6 @@ within the time frame of their original request.
|
|
|
87514
88451
|
/**
|
|
87515
88452
|
* Data can be transferred from/to these classes of apps
|
|
87516
88453
|
*/
|
|
87517
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
87518
88454
|
enum windowsManagedAppDataTransferLevel {
|
|
87519
88455
|
/**
|
|
87520
88456
|
* All apps.
|
|
@@ -87524,6 +88460,27 @@ within the time frame of their original request.
|
|
|
87524
88460
|
* No apps.
|
|
87525
88461
|
*/
|
|
87526
88462
|
none: 1,
|
|
88463
|
+
/**
|
|
88464
|
+
* Selected apps only. Allowed locations are specified by the child property.
|
|
88465
|
+
*/
|
|
88466
|
+
selectedApps: 2,
|
|
88467
|
+
unknownFutureValue: 3,
|
|
88468
|
+
}
|
|
88469
|
+
|
|
88470
|
+
/**
|
|
88471
|
+
* Windows MAM data transfer locations
|
|
88472
|
+
*/
|
|
88473
|
+
@graphFlags
|
|
88474
|
+
enum windowsManagedAppDataTransferLocations {
|
|
88475
|
+
/**
|
|
88476
|
+
* No locations selected.
|
|
88477
|
+
*/
|
|
88478
|
+
none: 0,
|
|
88479
|
+
/**
|
|
88480
|
+
* OneDrive for Business. Data transferred to or from this location is subject to app protection policy.
|
|
88481
|
+
*/
|
|
88482
|
+
oneDriveForBusiness: 1,
|
|
88483
|
+
unknownFutureValue: 2,
|
|
87527
88484
|
}
|
|
87528
88485
|
|
|
87529
88486
|
/**
|
|
@@ -90059,6 +91016,10 @@ namespace reference.`microsoft.graph.healthMonitoring` {
|
|
|
90059
91016
|
unknownFutureValue: 4,
|
|
90060
91017
|
conditionalAccessBlockedSignIn: 5,
|
|
90061
91018
|
samlSignInFailure: 6,
|
|
91019
|
+
internetAppBlockedByPolicy: 7,
|
|
91020
|
+
privateAppBlockedByConnector: 8,
|
|
91021
|
+
remoteNetworkTunnelConnectivity: 9,
|
|
91022
|
+
remoteNetworkBgpConnectivity: 10,
|
|
90062
91023
|
}
|
|
90063
91024
|
|
|
90064
91025
|
enum category {
|
|
@@ -90081,6 +91042,7 @@ namespace reference.`microsoft.graph.healthMonitoring` {
|
|
|
90081
91042
|
unknownFutureValue: 3,
|
|
90082
91043
|
conditionalAccess: 4,
|
|
90083
91044
|
saml: 5,
|
|
91045
|
+
gsa: 6,
|
|
90084
91046
|
}
|
|
90085
91047
|
|
|
90086
91048
|
}
|
|
@@ -90111,6 +91073,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90111
91073
|
@complex model activationScope {
|
|
90112
91074
|
}
|
|
90113
91075
|
|
|
91076
|
+
@complex model allExcludingGroupsSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
91077
|
+
@references excludedGroups: reference.`microsoft.graph`.group[];
|
|
91078
|
+
}
|
|
91079
|
+
|
|
91080
|
+
@complex model allExcludingSpecificObjectsSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
91081
|
+
@references excludedObjects: reference.`microsoft.graph`.directoryObject[];
|
|
91082
|
+
}
|
|
91083
|
+
|
|
90114
91084
|
@complex model attributeChangeTrigger extends workflowExecutionTrigger {
|
|
90115
91085
|
triggerAttributes: triggerAttribute[];
|
|
90116
91086
|
}
|
|
@@ -90160,6 +91130,20 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90160
91130
|
targetSubject: workflowSubject | null;
|
|
90161
91131
|
}
|
|
90162
91132
|
|
|
91133
|
+
@complex model deleteOnlyEnforcementAction extends lifecyclePolicyEnforcementAction {
|
|
91134
|
+
}
|
|
91135
|
+
|
|
91136
|
+
@complex model directoryObjectWorkflowSubject extends workflowSubject {
|
|
91137
|
+
@references directoryObject: reference.`microsoft.graph`.directoryObject;
|
|
91138
|
+
}
|
|
91139
|
+
|
|
91140
|
+
@complex model disableOnlyEnforcementAction extends lifecyclePolicyEnforcementAction {
|
|
91141
|
+
}
|
|
91142
|
+
|
|
91143
|
+
@complex model disableThenDeleteEnforcementAction extends lifecyclePolicyEnforcementAction {
|
|
91144
|
+
deletionGracePeriodInDays: int32;
|
|
91145
|
+
}
|
|
91146
|
+
|
|
90163
91147
|
@complex model groupBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
90164
91148
|
@references groups: reference.`microsoft.graph`.group[];
|
|
90165
91149
|
}
|
|
@@ -90168,6 +91152,16 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90168
91152
|
minimumRequiredSponsors: int32;
|
|
90169
91153
|
}
|
|
90170
91154
|
|
|
91155
|
+
@abstract
|
|
91156
|
+
@complex model lifecyclePolicyEnforcementAction {
|
|
91157
|
+
}
|
|
91158
|
+
|
|
91159
|
+
@complex model lifecyclePolicyNotificationSettings {
|
|
91160
|
+
additionalRecipients: string[];
|
|
91161
|
+
isEnabled: boolean;
|
|
91162
|
+
offsetsAfterNonComplianceInDays: int32[];
|
|
91163
|
+
}
|
|
91164
|
+
|
|
90171
91165
|
@complex model membershipChangeTrigger extends workflowExecutionTrigger {
|
|
90172
91166
|
changeType: membershipChangeType;
|
|
90173
91167
|
}
|
|
@@ -90228,6 +91222,18 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90228
91222
|
totalUsers: int32;
|
|
90229
91223
|
}
|
|
90230
91224
|
|
|
91225
|
+
@complex model selectedObjectsSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
91226
|
+
@references inScopeObjects: reference.`microsoft.graph`.directoryObject[];
|
|
91227
|
+
}
|
|
91228
|
+
|
|
91229
|
+
@complex model subjectSummary {
|
|
91230
|
+
failedSubjects: int32;
|
|
91231
|
+
failedTasks: int32;
|
|
91232
|
+
successfulSubjects: int32;
|
|
91233
|
+
totalSubjects: int32;
|
|
91234
|
+
totalTasks: int32;
|
|
91235
|
+
}
|
|
91236
|
+
|
|
90231
91237
|
@complex model taskReportSummary {
|
|
90232
91238
|
failedTasks: int32;
|
|
90233
91239
|
successfulTasks: int32;
|
|
@@ -90333,6 +91339,23 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90333
91339
|
@complex model workflowSubject {
|
|
90334
91340
|
}
|
|
90335
91341
|
|
|
91342
|
+
@entity model agentIdentityLifecycle extends identityLifecycle {
|
|
91343
|
+
}
|
|
91344
|
+
|
|
91345
|
+
@entity model agentIdentityLifecyclePolicy extends lifecyclePolicy {
|
|
91346
|
+
}
|
|
91347
|
+
|
|
91348
|
+
@entity model attestationComplianceIssue extends complianceIssue {
|
|
91349
|
+
attestationBlockReasons: string[];
|
|
91350
|
+
}
|
|
91351
|
+
|
|
91352
|
+
@entity model complianceIssue extends reference.`microsoft.graph`.entity {
|
|
91353
|
+
description: string;
|
|
91354
|
+
governingPolicyReferenceId: string;
|
|
91355
|
+
issueCode: string;
|
|
91356
|
+
ruleType: string | null;
|
|
91357
|
+
}
|
|
91358
|
+
|
|
90336
91359
|
@entity model customTaskExtension extends reference.`microsoft.graph`.customCalloutExtension {
|
|
90337
91360
|
callbackConfiguration: reference.`microsoft.graph`.customExtensionCallbackConfiguration | null;
|
|
90338
91361
|
@computed createdDateTime: offsetDateTime | null;
|
|
@@ -90342,6 +91365,17 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90342
91365
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
90343
91366
|
}
|
|
90344
91367
|
|
|
91368
|
+
@abstract
|
|
91369
|
+
@entity model identityLifecycle extends reference.`microsoft.graph`.entity {
|
|
91370
|
+
@computed lastAttestationDateTime: offsetDateTime | null;
|
|
91371
|
+
@contains complianceIssues: complianceIssue[];
|
|
91372
|
+
@references effectiveGoverningPolicy: lifecyclePolicy | null;
|
|
91373
|
+
}
|
|
91374
|
+
|
|
91375
|
+
@entity model inactivityRule extends lifecyclePolicyRule {
|
|
91376
|
+
lastActivityThresholdInDays: int32;
|
|
91377
|
+
}
|
|
91378
|
+
|
|
90345
91379
|
@entity model insights extends reference.`microsoft.graph`.entity {
|
|
90346
91380
|
}
|
|
90347
91381
|
|
|
@@ -90351,16 +91385,51 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90351
91385
|
workflowScheduleIntervalInHours: int32;
|
|
90352
91386
|
}
|
|
90353
91387
|
|
|
91388
|
+
@abstract
|
|
91389
|
+
@entity model lifecyclePolicy extends reference.`microsoft.graph`.entity {
|
|
91390
|
+
@computed createdDateTime: offsetDateTime;
|
|
91391
|
+
description: string | null;
|
|
91392
|
+
displayName: string;
|
|
91393
|
+
enforcementAction: lifecyclePolicyEnforcementAction;
|
|
91394
|
+
gracePeriodInDays: int32 | null;
|
|
91395
|
+
isEnabled: boolean;
|
|
91396
|
+
@computed lastModifiedDateTime: offsetDateTime;
|
|
91397
|
+
notificationSchedule: lifecyclePolicyNotificationSettings | null;
|
|
91398
|
+
policySource: lifecyclePolicySource;
|
|
91399
|
+
scope: reference.`microsoft.graph`.subjectSet | null;
|
|
91400
|
+
versionNumber: int32;
|
|
91401
|
+
@references createdBy: reference.`microsoft.graph`.directoryObject | null;
|
|
91402
|
+
@references lastModifiedBy: reference.`microsoft.graph`.directoryObject | null;
|
|
91403
|
+
@contains rules: lifecyclePolicyRule[];
|
|
91404
|
+
@contains versions: lifecyclePolicy[];
|
|
91405
|
+
}
|
|
91406
|
+
|
|
91407
|
+
@entity model lifecyclePolicyPriorityConfiguration extends reference.`microsoft.graph`.entity {
|
|
91408
|
+
orderedPolicyIds: string[];
|
|
91409
|
+
subjectType: subjectType;
|
|
91410
|
+
}
|
|
91411
|
+
|
|
91412
|
+
@abstract
|
|
91413
|
+
@entity model lifecyclePolicyRule extends reference.`microsoft.graph`.entity {
|
|
91414
|
+
isEnabled: boolean;
|
|
91415
|
+
}
|
|
91416
|
+
|
|
90354
91417
|
@entity model lifecycleWorkflowsContainer extends reference.`microsoft.graph`.entity {
|
|
90355
91418
|
@contains customTaskExtensions: customTaskExtension[];
|
|
90356
91419
|
@contains deletedItems: reference.`microsoft.graph`.deletedItemContainer | null;
|
|
90357
91420
|
@contains insights: insights | null;
|
|
91421
|
+
@contains lifecyclePolicies: lifecyclePolicy[];
|
|
91422
|
+
@contains lifecyclePolicyPriorityConfigurations: lifecyclePolicyPriorityConfiguration[];
|
|
90358
91423
|
@contains settings: lifecycleManagementSettings;
|
|
90359
91424
|
@contains taskDefinitions: taskDefinition[];
|
|
90360
91425
|
@contains workflows: workflow[];
|
|
90361
91426
|
@contains workflowTemplates: workflowTemplate[];
|
|
90362
91427
|
}
|
|
90363
91428
|
|
|
91429
|
+
@entity model periodicAttestationRule extends lifecyclePolicyRule {
|
|
91430
|
+
attestationIntervalInDays: int32;
|
|
91431
|
+
}
|
|
91432
|
+
|
|
90364
91433
|
@entity model run extends reference.`microsoft.graph`.entity {
|
|
90365
91434
|
activatedOnScope: activationScope | null;
|
|
90366
91435
|
completedDateTime: offsetDateTime | null;
|
|
@@ -90381,6 +91450,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90381
91450
|
@contains userProcessingResults: userProcessingResult[];
|
|
90382
91451
|
}
|
|
90383
91452
|
|
|
91453
|
+
@entity model sponsorPresenceRule extends lifecyclePolicyRule {
|
|
91454
|
+
minimumSponsorCount: int32;
|
|
91455
|
+
}
|
|
91456
|
+
|
|
90384
91457
|
@entity model subjectProcessingResult extends reference.`microsoft.graph`.entity {
|
|
90385
91458
|
completedDateTime: offsetDateTime | null;
|
|
90386
91459
|
failedTasksCount: int32;
|
|
@@ -90388,6 +91461,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90388
91461
|
scheduledDateTime: offsetDateTime;
|
|
90389
91462
|
startedDateTime: offsetDateTime | null;
|
|
90390
91463
|
subject: workflowSubject;
|
|
91464
|
+
subjectType: subjectType;
|
|
90391
91465
|
totalTasksCount: int32;
|
|
90392
91466
|
totalUnprocessedTasksCount: int32;
|
|
90393
91467
|
workflowExecutionType: workflowExecutionType;
|
|
@@ -90487,6 +91561,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90487
91561
|
isEnabled: boolean;
|
|
90488
91562
|
isSchedulingEnabled: boolean;
|
|
90489
91563
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
91564
|
+
targetSubjectType: subjectType;
|
|
90490
91565
|
@references administrationScopeTargets: reference.`microsoft.graph`.directoryObject[];
|
|
90491
91566
|
@references createdBy: reference.`microsoft.graph`.user | null;
|
|
90492
91567
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
@@ -90518,6 +91593,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90518
91593
|
unknownFutureValue: 2,
|
|
90519
91594
|
}
|
|
90520
91595
|
|
|
91596
|
+
enum complianceState {
|
|
91597
|
+
compliant: 0,
|
|
91598
|
+
warning: 1,
|
|
91599
|
+
warningNotify: 2,
|
|
91600
|
+
nonCompliant: 3,
|
|
91601
|
+
unknownFutureValue: 5,
|
|
91602
|
+
}
|
|
91603
|
+
|
|
90521
91604
|
enum customTaskExtensionOperationStatus {
|
|
90522
91605
|
completed: 0,
|
|
90523
91606
|
failed: 1,
|
|
@@ -90531,6 +91614,12 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90531
91614
|
unknownFutureValue: 3,
|
|
90532
91615
|
}
|
|
90533
91616
|
|
|
91617
|
+
enum lifecyclePolicySource {
|
|
91618
|
+
userCreated: 0,
|
|
91619
|
+
systemDefault: 1,
|
|
91620
|
+
unknownFutureValue: 2,
|
|
91621
|
+
}
|
|
91622
|
+
|
|
90534
91623
|
@graphFlags
|
|
90535
91624
|
enum lifecycleTaskCategory {
|
|
90536
91625
|
joiner: 1,
|
|
@@ -90581,6 +91670,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90581
91670
|
unknownFutureValue: 4,
|
|
90582
91671
|
}
|
|
90583
91672
|
|
|
91673
|
+
@graphFlags
|
|
91674
|
+
enum subjectType {
|
|
91675
|
+
user: 1,
|
|
91676
|
+
agentIdentity: 2,
|
|
91677
|
+
unknownFutureValue: 8,
|
|
91678
|
+
provisioningObject: 16,
|
|
91679
|
+
}
|
|
91680
|
+
|
|
90584
91681
|
enum valueType {
|
|
90585
91682
|
`enum`: 0,
|
|
90586
91683
|
`string`: 1,
|
|
@@ -92709,7 +93806,7 @@ namespace reference.`microsoft.graph.networkaccess` {
|
|
|
92709
93806
|
protocol: networkingProtocol;
|
|
92710
93807
|
}
|
|
92711
93808
|
|
|
92712
|
-
@entity model networkAccessRoot extends
|
|
93809
|
+
@entity model networkAccessRoot extends MsGraph.SharedModels.entity {
|
|
92713
93810
|
@contains alerts: alert[];
|
|
92714
93811
|
@contains cloudFirewallPolicies: cloudFirewallPolicy[];
|
|
92715
93812
|
@contains connectivity: connectivity | null;
|
|
@@ -94743,6 +95840,19 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94743
95840
|
@complex model cortanaBriefingAuditRecord extends auditData {
|
|
94744
95841
|
}
|
|
94745
95842
|
|
|
95843
|
+
@complex model createAlertInput {
|
|
95844
|
+
category: string;
|
|
95845
|
+
description: string;
|
|
95846
|
+
entityDefinitions: entityDefinition[];
|
|
95847
|
+
isExcludedFromCorrelation: boolean;
|
|
95848
|
+
linkToIncident: int64 | null;
|
|
95849
|
+
mitreTechniques: string[];
|
|
95850
|
+
recommendedActions: string | null;
|
|
95851
|
+
sentinelWorkspace: string | null;
|
|
95852
|
+
severity: alertSeverity;
|
|
95853
|
+
title: string;
|
|
95854
|
+
}
|
|
95855
|
+
|
|
94746
95856
|
/**
|
|
94747
95857
|
* Audit data for Critical Asset Management Classification events.
|
|
94748
95858
|
*/
|
|
@@ -95083,6 +96193,13 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95083
96193
|
@complex model enableUserIncidentTaskResponseAction extends incidentTaskResponseAction {
|
|
95084
96194
|
}
|
|
95085
96195
|
|
|
96196
|
+
@complex model entityDefinition {
|
|
96197
|
+
entityIdentifier: string;
|
|
96198
|
+
entityType: manualAlertEntityType;
|
|
96199
|
+
identifierValue: string;
|
|
96200
|
+
role: entityDefinitionInputRole;
|
|
96201
|
+
}
|
|
96202
|
+
|
|
95086
96203
|
@abstract
|
|
95087
96204
|
@complex model entityMapping {
|
|
95088
96205
|
}
|
|
@@ -98229,6 +99346,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
98229
99346
|
|
|
98230
99347
|
@entity model caseManagementRoot extends reference.`microsoft.graph`.entity {
|
|
98231
99348
|
@contains cases: reference.`microsoft.graph.security.caseManagement`.case[];
|
|
99349
|
+
@contains caseTypeConfigurations: reference.`microsoft.graph.security.caseManagement`.caseTypeConfiguration[];
|
|
98232
99350
|
}
|
|
98233
99351
|
|
|
98234
99352
|
@entity model caseOperation extends reference.`microsoft.graph`.entity {
|
|
@@ -101383,6 +102501,13 @@ namespace reference.`microsoft.graph.security.caseManagement` {
|
|
|
101383
102501
|
@complex model customFieldValues {
|
|
101384
102502
|
}
|
|
101385
102503
|
|
|
102504
|
+
@complex model customStatusDefinition {
|
|
102505
|
+
customStatusId: string;
|
|
102506
|
+
displayName: string;
|
|
102507
|
+
isFinal: boolean;
|
|
102508
|
+
sortOrder: int32;
|
|
102509
|
+
}
|
|
102510
|
+
|
|
101386
102511
|
@complex model exposureCaseAutomation {
|
|
101387
102512
|
ruleId: string | null;
|
|
101388
102513
|
}
|
|
@@ -101503,10 +102628,29 @@ namespace reference.`microsoft.graph.security.caseManagement` {
|
|
|
101503
102628
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
101504
102629
|
}
|
|
101505
102630
|
|
|
102631
|
+
@entity model caseTypeConfiguration extends reference.`microsoft.graph`.entity {
|
|
102632
|
+
defaultStatusId: string;
|
|
102633
|
+
displayName: string;
|
|
102634
|
+
@contains customFields: customFieldDefinition[];
|
|
102635
|
+
@contains statuses: statusDefinition[];
|
|
102636
|
+
}
|
|
102637
|
+
|
|
101506
102638
|
@entity model comment extends activity {
|
|
101507
102639
|
message: string | null;
|
|
101508
102640
|
}
|
|
101509
102641
|
|
|
102642
|
+
@abstract
|
|
102643
|
+
@entity model customFieldDefinition extends reference.`microsoft.graph`.entity {
|
|
102644
|
+
description: string | null;
|
|
102645
|
+
displayName: string;
|
|
102646
|
+
isDisabled: boolean;
|
|
102647
|
+
isRequired: boolean;
|
|
102648
|
+
}
|
|
102649
|
+
|
|
102650
|
+
@entity model dateTimeCustomFieldDefinition extends customFieldDefinition {
|
|
102651
|
+
defaultDateTime: offsetDateTime | null;
|
|
102652
|
+
}
|
|
102653
|
+
|
|
101510
102654
|
@entity model exposureCase extends case {
|
|
101511
102655
|
assignedTo: string | null;
|
|
101512
102656
|
automation: exposureCaseAutomation | null;
|
|
@@ -101569,6 +102713,15 @@ namespace reference.`microsoft.graph.security.caseManagement` {
|
|
|
101569
102713
|
@entity model incidentRelation extends relation {
|
|
101570
102714
|
}
|
|
101571
102715
|
|
|
102716
|
+
@entity model numberCustomFieldDefinition extends customFieldDefinition {
|
|
102717
|
+
defaultValue: int32 | null;
|
|
102718
|
+
}
|
|
102719
|
+
|
|
102720
|
+
@entity model optionsCustomFieldDefinition extends customFieldDefinition {
|
|
102721
|
+
defaultValues: string[];
|
|
102722
|
+
options: string[];
|
|
102723
|
+
}
|
|
102724
|
+
|
|
101572
102725
|
@entity model recommendationRelation extends relation {
|
|
101573
102726
|
recommendationType: string | null;
|
|
101574
102727
|
resourceGroupName: string | null;
|
|
@@ -101580,6 +102733,16 @@ namespace reference.`microsoft.graph.security.caseManagement` {
|
|
|
101580
102733
|
relatedResourceId: string | null;
|
|
101581
102734
|
}
|
|
101582
102735
|
|
|
102736
|
+
@entity model statusDefinition extends reference.`microsoft.graph`.entity {
|
|
102737
|
+
customStatuses: customStatusDefinition[];
|
|
102738
|
+
displayName: string;
|
|
102739
|
+
sortOrder: int32;
|
|
102740
|
+
}
|
|
102741
|
+
|
|
102742
|
+
@entity model stringCustomFieldDefinition extends customFieldDefinition {
|
|
102743
|
+
defaultValue: string | null;
|
|
102744
|
+
}
|
|
102745
|
+
|
|
101583
102746
|
@entity model task extends caseManagementEntity {
|
|
101584
102747
|
assignedTo: string | null;
|
|
101585
102748
|
category: caseTaskCategory;
|
|
@@ -102405,311 +103568,6 @@ namespace reference.`microsoft.graph.teamsAdministration` {
|
|
|
102405
103568
|
unknownFutureValue: 1,
|
|
102406
103569
|
}
|
|
102407
103570
|
|
|
102408
|
-
}
|
|
102409
|
-
@publicNamespace("microsoft.graph.tenantgovernanceservices")
|
|
102410
|
-
namespace reference.`microsoft.graph.tenantGovernanceServices` {
|
|
102411
|
-
@complex model actionUrl {
|
|
102412
|
-
displayName: string;
|
|
102413
|
-
url: string | null;
|
|
102414
|
-
}
|
|
102415
|
-
|
|
102416
|
-
@complex model delegatedAdministrationRoleAssignment {
|
|
102417
|
-
groupDisplayName: string | null;
|
|
102418
|
-
roleTemplates: roleTemplate[];
|
|
102419
|
-
@references group: reference.`microsoft.graph`.group | null;
|
|
102420
|
-
}
|
|
102421
|
-
|
|
102422
|
-
@complex model delegatedAdministrationRoleAssignmentSnapshot {
|
|
102423
|
-
groupDisplayName: string | null;
|
|
102424
|
-
groupId: string;
|
|
102425
|
-
roleTemplates: roleTemplate[];
|
|
102426
|
-
}
|
|
102427
|
-
|
|
102428
|
-
@complex model multiTenantApplicationsToProvision {
|
|
102429
|
-
appId: string;
|
|
102430
|
-
displayName: string;
|
|
102431
|
-
objectId: string;
|
|
102432
|
-
requiredResourceAccesses: requiredResourceAccess[];
|
|
102433
|
-
}
|
|
102434
|
-
|
|
102435
|
-
@complex model multiTenantApplicationsToProvisionSnapshot {
|
|
102436
|
-
appId: string;
|
|
102437
|
-
displayName: string;
|
|
102438
|
-
objectId: string;
|
|
102439
|
-
requiredResourceAccesses: requiredResourceAccess[];
|
|
102440
|
-
}
|
|
102441
|
-
|
|
102442
|
-
@complex model relatedTenantsRefreshStatus {
|
|
102443
|
-
isFirstRefresh: boolean;
|
|
102444
|
-
mostRecentRefreshRequestStatus: string;
|
|
102445
|
-
mostRecentRefreshTime: string;
|
|
102446
|
-
}
|
|
102447
|
-
|
|
102448
|
-
@complex model relationshipPolicy {
|
|
102449
|
-
delegatedAdministrationRoleAssignments: delegatedAdministrationRoleAssignmentSnapshot[];
|
|
102450
|
-
governedTenantCanTerminate: boolean;
|
|
102451
|
-
multiTenantApplicationsToProvision: multiTenantApplicationsToProvisionSnapshot[];
|
|
102452
|
-
policyId: string;
|
|
102453
|
-
version: int32 | null;
|
|
102454
|
-
}
|
|
102455
|
-
|
|
102456
|
-
@complex model requiredResourceAccess {
|
|
102457
|
-
permissions: resourcePermission[];
|
|
102458
|
-
resourceAppId: string;
|
|
102459
|
-
}
|
|
102460
|
-
|
|
102461
|
-
@complex model resourcePermission {
|
|
102462
|
-
id: string;
|
|
102463
|
-
name: string | null;
|
|
102464
|
-
type: permissionType;
|
|
102465
|
-
}
|
|
102466
|
-
|
|
102467
|
-
@complex model roleTemplate {
|
|
102468
|
-
id: string;
|
|
102469
|
-
name: string;
|
|
102470
|
-
}
|
|
102471
|
-
|
|
102472
|
-
@entity model actionStep extends MsGraph.SharedModels.entity {
|
|
102473
|
-
actionUrl: actionUrl | null;
|
|
102474
|
-
@computed @key stepNumber: string;
|
|
102475
|
-
text: string | null;
|
|
102476
|
-
}
|
|
102477
|
-
|
|
102478
|
-
@entity model b2bRegistrationMetrics extends reference.`microsoft.graph`.entity {
|
|
102479
|
-
@references initial: b2BRegistrationMetricsInitial;
|
|
102480
|
-
@contains investigationHints: actionStep[];
|
|
102481
|
-
@references recent: b2BRegistrationMetricsRecent;
|
|
102482
|
-
}
|
|
102483
|
-
|
|
102484
|
-
@abstract
|
|
102485
|
-
@entity model b2BRegistrationMetricsBase extends reference.`microsoft.graph`.entity {
|
|
102486
|
-
inboundTotalUsers: decimal;
|
|
102487
|
-
outboundTotalUsers: decimal;
|
|
102488
|
-
watermarkDateTime: offsetDateTime;
|
|
102489
|
-
}
|
|
102490
|
-
|
|
102491
|
-
@entity model b2BRegistrationMetricsInitial extends b2BRegistrationMetricsBase {
|
|
102492
|
-
@computed createdDateTime: offsetDateTime;
|
|
102493
|
-
}
|
|
102494
|
-
|
|
102495
|
-
@entity model b2BRegistrationMetricsRecent extends b2BRegistrationMetricsBase {
|
|
102496
|
-
updateDateTime: offsetDateTime;
|
|
102497
|
-
}
|
|
102498
|
-
|
|
102499
|
-
@entity model b2BSignInActivityMetrics extends reference.`microsoft.graph`.entity {
|
|
102500
|
-
@references initial: b2BSignInActivityMetricsInitial;
|
|
102501
|
-
@contains investigationHints: actionStep[];
|
|
102502
|
-
@references recent: b2BSignInActivityMetricsRecent;
|
|
102503
|
-
}
|
|
102504
|
-
|
|
102505
|
-
@abstract
|
|
102506
|
-
@entity model b2BSignInActivityMetricsBase extends reference.`microsoft.graph`.entity {
|
|
102507
|
-
inboundMonthlyTotalApplications: decimal;
|
|
102508
|
-
inboundMonthlyTotalUsers: decimal;
|
|
102509
|
-
outboundMonthlyTotalApplications: decimal;
|
|
102510
|
-
outboundMonthlyTotalUsers: decimal;
|
|
102511
|
-
watermarkDateTime: offsetDateTime;
|
|
102512
|
-
}
|
|
102513
|
-
|
|
102514
|
-
@entity model b2BSignInActivityMetricsInitial extends b2BSignInActivityMetricsBase {
|
|
102515
|
-
@computed createdDateTime: offsetDateTime;
|
|
102516
|
-
}
|
|
102517
|
-
|
|
102518
|
-
@entity model b2BSignInActivityMetricsRecent extends b2BSignInActivityMetricsBase {
|
|
102519
|
-
updateDateTime: offsetDateTime;
|
|
102520
|
-
}
|
|
102521
|
-
|
|
102522
|
-
@entity model billingMetrics extends reference.`microsoft.graph`.entity {
|
|
102523
|
-
@references initial: billingMetricsInitial;
|
|
102524
|
-
@contains investigationHints: actionStep[];
|
|
102525
|
-
@references recent: billingMetricsRecent;
|
|
102526
|
-
}
|
|
102527
|
-
|
|
102528
|
-
@entity model billingMetricsBase extends reference.`microsoft.graph`.entity {
|
|
102529
|
-
foreignAssociatedTenantBillingManagementActiveCount: decimal;
|
|
102530
|
-
foreignAssociatedTenantCount: decimal;
|
|
102531
|
-
foreignAssociatedTenantProvisioningActiveCount: decimal;
|
|
102532
|
-
localAssociatedTenantBillingManagementActiveCount: decimal;
|
|
102533
|
-
localAssociatedTenantCount: decimal;
|
|
102534
|
-
localAssociatedTenantIds: string[];
|
|
102535
|
-
localAssociatedTenantProvisioningActiveCount: decimal;
|
|
102536
|
-
watermarkDateTime: offsetDateTime;
|
|
102537
|
-
}
|
|
102538
|
-
|
|
102539
|
-
@entity model billingMetricsInitial extends billingMetricsBase {
|
|
102540
|
-
@computed createdDateTime: offsetDateTime;
|
|
102541
|
-
}
|
|
102542
|
-
|
|
102543
|
-
@entity model billingMetricsRecent extends billingMetricsBase {
|
|
102544
|
-
updateDateTime: offsetDateTime;
|
|
102545
|
-
}
|
|
102546
|
-
|
|
102547
|
-
@entity model governanceInvitation extends reference.`microsoft.graph`.entity {
|
|
102548
|
-
@computed createdDateTime: offsetDateTime;
|
|
102549
|
-
expirationDateTime: offsetDateTime;
|
|
102550
|
-
governedTenantId: string;
|
|
102551
|
-
governedTenantName: string;
|
|
102552
|
-
governingTenantId: string;
|
|
102553
|
-
governingTenantName: string;
|
|
102554
|
-
}
|
|
102555
|
-
|
|
102556
|
-
@entity model governancePolicyTemplate extends reference.`microsoft.graph`.entity {
|
|
102557
|
-
@computed createdDateTime: offsetDateTime;
|
|
102558
|
-
delegatedAdministrationRoleAssignments: delegatedAdministrationRoleAssignment[];
|
|
102559
|
-
description: string;
|
|
102560
|
-
displayName: string;
|
|
102561
|
-
governedTenantCanTerminate: boolean;
|
|
102562
|
-
@computed lastModifiedDateTime: offsetDateTime;
|
|
102563
|
-
multiTenantApplicationsToProvision: multiTenantApplicationsToProvision[];
|
|
102564
|
-
version: string;
|
|
102565
|
-
}
|
|
102566
|
-
|
|
102567
|
-
@entity model governanceRelationship extends reference.`microsoft.graph`.entity {
|
|
102568
|
-
createdType: relationshipCreationType;
|
|
102569
|
-
creationDateTime: offsetDateTime;
|
|
102570
|
-
governedTenantId: string;
|
|
102571
|
-
governedTenantName: string;
|
|
102572
|
-
governingTenantId: string;
|
|
102573
|
-
governingTenantName: string;
|
|
102574
|
-
policySnapshot: relationshipPolicy;
|
|
102575
|
-
status: relationshipStatus;
|
|
102576
|
-
}
|
|
102577
|
-
|
|
102578
|
-
@entity model governanceRequest extends reference.`microsoft.graph`.entity {
|
|
102579
|
-
expirationDateTime: offsetDateTime;
|
|
102580
|
-
governedTenantId: string;
|
|
102581
|
-
governedTenantName: string;
|
|
102582
|
-
governingTenantId: string;
|
|
102583
|
-
governingTenantName: string;
|
|
102584
|
-
policySnapshot: relationshipPolicy;
|
|
102585
|
-
requestDateTime: offsetDateTime;
|
|
102586
|
-
status: requestStatus;
|
|
102587
|
-
@references governancePolicyTemplate: governancePolicyTemplate | null;
|
|
102588
|
-
}
|
|
102589
|
-
|
|
102590
|
-
@entity model longRunningOperation extends reference.`microsoft.graph`.entity {
|
|
102591
|
-
@computed createdDateTime: offsetDateTime | null;
|
|
102592
|
-
@computed lastActionDateTime: offsetDateTime | null;
|
|
102593
|
-
resourceLocation: string | null;
|
|
102594
|
-
status: longRunningOperationStatus;
|
|
102595
|
-
statusDetail: string | null;
|
|
102596
|
-
}
|
|
102597
|
-
|
|
102598
|
-
@entity model multiTenantApplicationMetrics extends reference.`microsoft.graph`.entity {
|
|
102599
|
-
@references initial: multiTenantApplicationMetricsInitial;
|
|
102600
|
-
@contains investigationHints: actionStep[];
|
|
102601
|
-
@references recent: multiTenantApplicationMetricsRecent;
|
|
102602
|
-
}
|
|
102603
|
-
|
|
102604
|
-
@entity model multiTenantApplicationMetricsBase extends reference.`microsoft.graph`.entity {
|
|
102605
|
-
inboundMonthlyTotalApplications: decimal;
|
|
102606
|
-
outboundMonthlyTotalApplications: decimal;
|
|
102607
|
-
watermarkDateTime: offsetDateTime;
|
|
102608
|
-
}
|
|
102609
|
-
|
|
102610
|
-
@entity model multiTenantApplicationMetricsInitial extends multiTenantApplicationMetricsBase {
|
|
102611
|
-
@computed createdDateTime: offsetDateTime;
|
|
102612
|
-
}
|
|
102613
|
-
|
|
102614
|
-
@entity model multiTenantApplicationMetricsRecent extends multiTenantApplicationMetricsBase {
|
|
102615
|
-
updateDateTime: offsetDateTime;
|
|
102616
|
-
}
|
|
102617
|
-
|
|
102618
|
-
@entity model relatedTenant extends reference.`microsoft.graph`.entity {
|
|
102619
|
-
@computed createdDateTime: offsetDateTime;
|
|
102620
|
-
/**
|
|
102621
|
-
* Indicates whether this tenant is a Microsoft infrastructure tenant.
|
|
102622
|
-
*/
|
|
102623
|
-
isMicrosoftInfrastructure: boolean;
|
|
102624
|
-
@references appB2BSignInActivityMetrics: b2BSignInActivityMetrics | null;
|
|
102625
|
-
@references b2BRegistrationMetrics: b2bRegistrationMetrics | null;
|
|
102626
|
-
@references b2BSignInActivityMetrics: b2BSignInActivityMetrics | null;
|
|
102627
|
-
@references billingMetrics: billingMetrics | null;
|
|
102628
|
-
@references multiTenantApplicationMetrics: multiTenantApplicationMetrics | null;
|
|
102629
|
-
}
|
|
102630
|
-
|
|
102631
|
-
@entity model relatedTenantsRefreshRequest extends reference.`microsoft.graph`.entity {
|
|
102632
|
-
location: string;
|
|
102633
|
-
}
|
|
102634
|
-
|
|
102635
|
-
@entity model tenantGovernance extends reference.`microsoft.graph`.entity {
|
|
102636
|
-
@contains governanceInvitations: governanceInvitation[];
|
|
102637
|
-
@contains governancePolicyTemplates: governancePolicyTemplate[];
|
|
102638
|
-
@contains governanceRelationships: governanceRelationship[];
|
|
102639
|
-
@contains governanceRequests: governanceRequest[];
|
|
102640
|
-
@contains relatedTenants: relatedTenant[];
|
|
102641
|
-
@contains settings: tenantGovernanceSetting | null;
|
|
102642
|
-
}
|
|
102643
|
-
|
|
102644
|
-
@entity model tenantGovernanceSetting extends reference.`microsoft.graph`.entity {
|
|
102645
|
-
canReceiveInvitations: boolean;
|
|
102646
|
-
isRelatedTenantsEnabled: boolean;
|
|
102647
|
-
}
|
|
102648
|
-
|
|
102649
|
-
enum longRunningOperationStatus {
|
|
102650
|
-
notStarted: 0,
|
|
102651
|
-
running: 1,
|
|
102652
|
-
succeeded: 2,
|
|
102653
|
-
failed: 3,
|
|
102654
|
-
unknownFutureValue: 4,
|
|
102655
|
-
}
|
|
102656
|
-
|
|
102657
|
-
enum permissionType {
|
|
102658
|
-
/**
|
|
102659
|
-
* Represents a type of permission that is for an app only scenario. No user is involved.
|
|
102660
|
-
*/
|
|
102661
|
-
role: 0,
|
|
102662
|
-
/**
|
|
102663
|
-
* Represents a type of permission that is for an app and user scenario.
|
|
102664
|
-
*/
|
|
102665
|
-
scope: 1,
|
|
102666
|
-
unknownFutureValue: 2,
|
|
102667
|
-
}
|
|
102668
|
-
|
|
102669
|
-
enum relationshipCreationType {
|
|
102670
|
-
/**
|
|
102671
|
-
* Represents a relationship between two tenants that was created by an explicit approval from the governed tenant admin.
|
|
102672
|
-
*/
|
|
102673
|
-
approvedByAdmin: 0,
|
|
102674
|
-
/**
|
|
102675
|
-
* Represents a relationship between the add-on tenant and the tenant from which it was created.
|
|
102676
|
-
*/
|
|
102677
|
-
addOnTenant: 1,
|
|
102678
|
-
unknownFutureValue: 2,
|
|
102679
|
-
}
|
|
102680
|
-
|
|
102681
|
-
enum relationshipStatus {
|
|
102682
|
-
/**
|
|
102683
|
-
* Represents a relationship that is currently active.
|
|
102684
|
-
*/
|
|
102685
|
-
active: 0,
|
|
102686
|
-
/**
|
|
102687
|
-
* Represents a relationship that has been terminated.
|
|
102688
|
-
*/
|
|
102689
|
-
terminated: 1,
|
|
102690
|
-
/**
|
|
102691
|
-
* Represents a relationship that has been requested to be terminated by governing tenant.
|
|
102692
|
-
*/
|
|
102693
|
-
terminationRequestedByGoverningTenant: 2,
|
|
102694
|
-
unknownFutureValue: 3,
|
|
102695
|
-
}
|
|
102696
|
-
|
|
102697
|
-
enum requestStatus {
|
|
102698
|
-
/**
|
|
102699
|
-
* Represents a governance request that is pending
|
|
102700
|
-
*/
|
|
102701
|
-
pending: 0,
|
|
102702
|
-
/**
|
|
102703
|
-
* Represents a governance request that was accepted
|
|
102704
|
-
*/
|
|
102705
|
-
accepted: 1,
|
|
102706
|
-
/**
|
|
102707
|
-
* Represents a governance request that was rejected
|
|
102708
|
-
*/
|
|
102709
|
-
rejected: 2,
|
|
102710
|
-
unknownFutureValue: 3,
|
|
102711
|
-
}
|
|
102712
|
-
|
|
102713
103571
|
}
|
|
102714
103572
|
@publicNamespace("microsoft.graph.termstore")
|
|
102715
103573
|
namespace reference.`microsoft.graph.termStore` {
|