@microsoft/typespec-msgraph-reference 1.0.10 → 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 +9 -0
- package/lib/Bleu/Beta/main.tsp +386 -10
- package/lib/Bleu/V1.0/main.tsp +2 -2
- package/lib/Delos/Beta/main.tsp +991 -9
- package/lib/Delos/V1.0/main.tsp +468 -1
- package/lib/Fairfax/Beta/main.tsp +137 -12
- package/lib/Fairfax/V1.0/main.tsp +83 -3
- package/lib/GovSG/Beta/main.tsp +1 -0
- package/lib/Mooncake/Beta/main.tsp +84 -10
- package/lib/Mooncake/V1.0/main.tsp +103 -3
- package/lib/Prod/Beta/main.tsp +1136 -386
- package/lib/Prod/V1.0/main.tsp +277 -2
- package/lib/USNat/Beta/main.tsp +48 -8
- package/lib/USNat/V1.0/main.tsp +81 -1
- package/lib/USSec/Beta/main.tsp +48 -8
- package/lib/USSec/V1.0/main.tsp +81 -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
|
*/
|
|
@@ -12486,58 +12611,25 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
12486
12611
|
}
|
|
12487
12612
|
|
|
12488
12613
|
@complex model mediaMetadata {
|
|
12489
|
-
|
|
12490
|
-
isRealTime: boolean;
|
|
12491
|
-
mimeType: string;
|
|
12614
|
+
audioMetadata: audioMetadata | null;
|
|
12492
12615
|
byteSize: int64;
|
|
12493
12616
|
`duration`: int32;
|
|
12494
|
-
|
|
12495
|
-
|
|
12617
|
+
isRealTime: boolean;
|
|
12618
|
+
mimeType: string;
|
|
12619
|
+
modality: contentModality;
|
|
12496
12620
|
streamingMetadata: streamingMetadata | null;
|
|
12621
|
+
videoMetadata: videoMetadata | null;
|
|
12497
12622
|
}
|
|
12498
12623
|
|
|
12499
|
-
@complex model
|
|
12500
|
-
|
|
12501
|
-
|
|
12502
|
-
bitrateKbps: int32;
|
|
12503
|
-
}
|
|
12504
|
-
|
|
12505
|
-
@complex model audioMetadata {
|
|
12506
|
-
sampleRateHz: int32;
|
|
12507
|
-
bitDepth: int32;
|
|
12508
|
-
channels: int32;
|
|
12509
|
-
}
|
|
12510
|
-
|
|
12511
|
-
@complex model streamingMetadata {
|
|
12512
|
-
latencyMs: int32;
|
|
12513
|
-
frameDropRate: float64;
|
|
12514
|
-
networkJitterMs: int32;
|
|
12515
|
-
}
|
|
12516
|
-
|
|
12517
|
-
@complex model syntheticMediaDetectionDetail {
|
|
12518
|
-
modelName: string;
|
|
12519
|
-
modality: contentModality;
|
|
12520
|
-
modelTasks: string[];
|
|
12521
|
-
segment: mediaSegment;
|
|
12522
|
-
confidence: float64;
|
|
12624
|
+
@complex model mediaPrompt extends prompt {
|
|
12625
|
+
loop: int32 | null;
|
|
12626
|
+
mediaInfo: mediaInfo;
|
|
12523
12627
|
}
|
|
12524
12628
|
|
|
12525
12629
|
@complex model mediaSegment {
|
|
12526
|
-
startTimeSec: int32;
|
|
12527
12630
|
endTimeSec: int32;
|
|
12528
12631
|
frameIndices: int32[];
|
|
12529
|
-
|
|
12530
|
-
|
|
12531
|
-
@complex model syntheticMediaDetectionInfo {
|
|
12532
|
-
detectionId: guid;
|
|
12533
|
-
syntheticConfidence: float64;
|
|
12534
|
-
detectorBot: string;
|
|
12535
|
-
isParticipantTrusted: boolean;
|
|
12536
|
-
}
|
|
12537
|
-
|
|
12538
|
-
@complex model mediaPrompt extends prompt {
|
|
12539
|
-
loop: int32 | null;
|
|
12540
|
-
mediaInfo: mediaInfo;
|
|
12632
|
+
startTimeSec: int32;
|
|
12541
12633
|
}
|
|
12542
12634
|
|
|
12543
12635
|
@complex model mediaSource {
|
|
@@ -12631,11 +12723,10 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
12631
12723
|
}
|
|
12632
12724
|
|
|
12633
12725
|
@complex model member {
|
|
12634
|
-
contactId: string | null;
|
|
12635
12726
|
displayName: string | null;
|
|
12636
12727
|
key: string | null;
|
|
12637
|
-
|
|
12638
|
-
|
|
12728
|
+
memberId: string | null;
|
|
12729
|
+
type: recipientType;
|
|
12639
12730
|
}
|
|
12640
12731
|
|
|
12641
12732
|
@complex model membersAddedEventMessageDetail extends eventMessageDetail {
|
|
@@ -13021,6 +13112,11 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
13021
13112
|
troubleshootingErrorDetails: deviceManagementTroubleshootingErrorDetails | null;
|
|
13022
13113
|
}
|
|
13023
13114
|
|
|
13115
|
+
@complex model mobileDriversLicenseConfiguration {
|
|
13116
|
+
acceptedRegions: string[];
|
|
13117
|
+
documentStandard: string | null;
|
|
13118
|
+
}
|
|
13119
|
+
|
|
13024
13120
|
@complex model modifiedProperty {
|
|
13025
13121
|
displayName: string | null;
|
|
13026
13122
|
newValue: string | null;
|
|
@@ -13032,6 +13128,20 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
13032
13128
|
to: string | null;
|
|
13033
13129
|
}
|
|
13034
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
|
+
|
|
13035
13145
|
@complex model multiTenantOrganizationJoinRequestTransitionDetails {
|
|
13036
13146
|
desiredMemberState: multiTenantOrganizationMemberState | null;
|
|
13037
13147
|
details: string | null;
|
|
@@ -13086,6 +13196,13 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
13086
13196
|
networkType: networkType | null;
|
|
13087
13197
|
}
|
|
13088
13198
|
|
|
13199
|
+
@complex model nistClassification {
|
|
13200
|
+
category: string;
|
|
13201
|
+
description: string | null;
|
|
13202
|
+
function: string | null;
|
|
13203
|
+
name: string;
|
|
13204
|
+
}
|
|
13205
|
+
|
|
13089
13206
|
@complex model noDeviceRegistrationMembership extends deviceRegistrationMembership {
|
|
13090
13207
|
}
|
|
13091
13208
|
|
|
@@ -13586,6 +13703,7 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
13586
13703
|
isAccessibleViaZTNAClient: boolean | null;
|
|
13587
13704
|
isBackendCertificateValidationEnabled: boolean | null;
|
|
13588
13705
|
isContinuousAccessEvaluationEnabled: boolean | null;
|
|
13706
|
+
isDeviceAccessEnabled: boolean;
|
|
13589
13707
|
isDnsResolutionEnabled: boolean | null;
|
|
13590
13708
|
isHttpOnlyCookieEnabled: boolean | null;
|
|
13591
13709
|
isOnPremPublishingEnabled: boolean | null;
|
|
@@ -15263,6 +15381,11 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
15263
15381
|
details: detailsInfo | null;
|
|
15264
15382
|
}
|
|
15265
15383
|
|
|
15384
|
+
@complex model provisionResponse {
|
|
15385
|
+
challenge: string;
|
|
15386
|
+
deviceId: string;
|
|
15387
|
+
}
|
|
15388
|
+
|
|
15266
15389
|
/**
|
|
15267
15390
|
* Proxied Domain
|
|
15268
15391
|
*/
|
|
@@ -15586,6 +15709,20 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
15586
15709
|
userPrincipalName: string | null;
|
|
15587
15710
|
}
|
|
15588
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
|
+
|
|
15589
15726
|
@complex model reminder {
|
|
15590
15727
|
changeKey: string | null;
|
|
15591
15728
|
eventEndTime: dateTimeTimeZone | null;
|
|
@@ -16136,6 +16273,11 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
16136
16273
|
unknownFail: int64 | null;
|
|
16137
16274
|
}
|
|
16138
16275
|
|
|
16276
|
+
@complex model roleTemplate {
|
|
16277
|
+
id: string;
|
|
16278
|
+
name: string;
|
|
16279
|
+
}
|
|
16280
|
+
|
|
16139
16281
|
@complex model root {
|
|
16140
16282
|
}
|
|
16141
16283
|
|
|
@@ -16311,6 +16453,12 @@ Each data source key can include a filter expression to narrow results and a lis
|
|
|
16311
16453
|
id: string | null;
|
|
16312
16454
|
}
|
|
16313
16455
|
|
|
16456
|
+
@complex model sapAssignmentRequestCallbackData extends customExtensionData {
|
|
16457
|
+
detail: string | null;
|
|
16458
|
+
requestNumber: string | null;
|
|
16459
|
+
state: string | null;
|
|
16460
|
+
}
|
|
16461
|
+
|
|
16314
16462
|
@complex model scheduleEntity {
|
|
16315
16463
|
endDateTime: offsetDateTime | null;
|
|
16316
16464
|
startDateTime: offsetDateTime | null;
|
|
@@ -17257,6 +17405,12 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
17257
17405
|
upgradeAvailable: boolean | null;
|
|
17258
17406
|
}
|
|
17259
17407
|
|
|
17408
|
+
@complex model streamingMetadata {
|
|
17409
|
+
frameDropRate: float64;
|
|
17410
|
+
latencyMs: int32;
|
|
17411
|
+
networkJitterMs: int32;
|
|
17412
|
+
}
|
|
17413
|
+
|
|
17260
17414
|
@open
|
|
17261
17415
|
@complex model stringDictionary extends Dictionary {
|
|
17262
17416
|
}
|
|
@@ -17495,6 +17649,21 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
17495
17649
|
timeEnded: offsetDateTime;
|
|
17496
17650
|
}
|
|
17497
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
|
+
|
|
17498
17667
|
@complex model systemCredentialPreferences {
|
|
17499
17668
|
excludeTargets: excludeTarget[];
|
|
17500
17669
|
includeTargets: includeTarget[];
|
|
@@ -18938,9 +19107,16 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
18938
19107
|
claimBindings: claimBinding[];
|
|
18939
19108
|
claimBindingSource: claimBindingSource;
|
|
18940
19109
|
claimValidation: claimValidation;
|
|
19110
|
+
manifestUrl: string | null;
|
|
19111
|
+
methodType: verifiedIdMethodType;
|
|
18941
19112
|
type: string;
|
|
18942
19113
|
}
|
|
18943
19114
|
|
|
19115
|
+
@complex model verifiedIdSelfServiceIssuance {
|
|
19116
|
+
isEnabled: boolean;
|
|
19117
|
+
issuanceUrl: string | null;
|
|
19118
|
+
}
|
|
19119
|
+
|
|
18944
19120
|
@complex model verifiedIdUsageConfiguration {
|
|
18945
19121
|
isEnabledForTestOnly: boolean;
|
|
18946
19122
|
purpose: verifiedIdUsageConfigurationPurpose;
|
|
@@ -18969,6 +19145,12 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
18969
19145
|
width: int32 | null;
|
|
18970
19146
|
}
|
|
18971
19147
|
|
|
19148
|
+
@complex model videoMetadata {
|
|
19149
|
+
bitrateKbps: int32;
|
|
19150
|
+
codec: string;
|
|
19151
|
+
frameRate: float64;
|
|
19152
|
+
}
|
|
19153
|
+
|
|
18972
19154
|
@complex model virtualEventExternalInformation {
|
|
18973
19155
|
applicationId: string | null;
|
|
18974
19156
|
externalEventId: string | null;
|
|
@@ -21700,6 +21882,7 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
21700
21882
|
history: requestActivity[] | null;
|
|
21701
21883
|
isValidationOnly: boolean | null;
|
|
21702
21884
|
justification: string | null;
|
|
21885
|
+
parameters: accessPackageAssignmentRequestParameters | null;
|
|
21703
21886
|
requestState: string | null;
|
|
21704
21887
|
requestStatus: string | null;
|
|
21705
21888
|
requestType: string | null;
|
|
@@ -22334,10 +22517,18 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
22334
22517
|
@references members: agentInstance[];
|
|
22335
22518
|
}
|
|
22336
22519
|
|
|
22520
|
+
@entity model agentCommunicationConfiguration extends entity {
|
|
22521
|
+
endpointConfiguration: agentEndpointConfiguration | null;
|
|
22522
|
+
isOverridableAtAgentIdLevel: boolean;
|
|
22523
|
+
teamworkConfiguration: agentTeamworkConfiguration | null;
|
|
22524
|
+
}
|
|
22525
|
+
|
|
22337
22526
|
@open
|
|
22338
22527
|
@entity model agentIdentity extends servicePrincipal {
|
|
22339
22528
|
agentIdentityBlueprintId: string;
|
|
22340
22529
|
@computed createdDateTime: offsetDateTime | null;
|
|
22530
|
+
managerApplications: guid;
|
|
22531
|
+
@contains communicationConfiguration: agentCommunicationConfiguration | null;
|
|
22341
22532
|
@references inheritedAppRoleAssignments: appRoleAssignment[];
|
|
22342
22533
|
@references inheritedOauth2PermissionGrants: oAuth2PermissionGrant[];
|
|
22343
22534
|
@references sponsors: directoryObject[];
|
|
@@ -22345,12 +22536,14 @@ This model is shared with the CCS retrieval API and search where it is already u
|
|
|
22345
22536
|
|
|
22346
22537
|
@open
|
|
22347
22538
|
@entity model agentIdentityBlueprint extends application {
|
|
22539
|
+
@contains communicationConfiguration: agentCommunicationConfiguration | null;
|
|
22348
22540
|
@contains inheritablePermissions: inheritablePermission[];
|
|
22349
22541
|
@references sponsors: directoryObject[];
|
|
22350
22542
|
}
|
|
22351
22543
|
|
|
22352
22544
|
@open
|
|
22353
22545
|
@entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
|
|
22546
|
+
managerApplications: guid;
|
|
22354
22547
|
@references sponsors: directoryObject[];
|
|
22355
22548
|
}
|
|
22356
22549
|
|
|
@@ -25139,6 +25332,10 @@ capabilities, skills, security, and other manifest-defined fields.
|
|
|
25139
25332
|
* Defines a managed app behavior, either warn or block, if the specified Android SafetyNet Attestation requirement fails.
|
|
25140
25333
|
*/
|
|
25141
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;
|
|
25142
25339
|
/**
|
|
25143
25340
|
* Defines a managed app behavior, either warn, block or wipe, if the screen lock is required on android device but is not set.
|
|
25144
25341
|
*/
|
|
@@ -27407,6 +27604,7 @@ capabilities, skills, security, and other manifest-defined fields.
|
|
|
27407
27604
|
@contains phoneMethods: phoneAuthenticationMethod[];
|
|
27408
27605
|
@contains platformCredentialMethods: platformCredentialAuthenticationMethod[];
|
|
27409
27606
|
@contains qrCodePinMethod: qrCodePinAuthenticationMethod | null;
|
|
27607
|
+
@contains resourceAccountKeyAuthenticationMethods: resourceAccountKeyAuthenticationMethod[];
|
|
27410
27608
|
@contains softwareOathMethods: softwareOathAuthenticationMethod[];
|
|
27411
27609
|
@contains temporaryAccessPassMethods: temporaryAccessPassAuthenticationMethod[];
|
|
27412
27610
|
@contains windowsHelloForBusinessMethods: windowsHelloForBusinessAuthenticationMethod[];
|
|
@@ -27757,6 +27955,50 @@ capabilities, skills, security, and other manifest-defined fields.
|
|
|
27757
27955
|
@entity model b2bManagementPolicy extends stsPolicy {
|
|
27758
27956
|
}
|
|
27759
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
|
+
|
|
27760
28002
|
@entity model b2cAuthenticationMethodsPolicy extends entity {
|
|
27761
28003
|
isEmailPasswordAuthenticationEnabled: boolean;
|
|
27762
28004
|
isPhoneOneTimePasswordAuthenticationEnabled: boolean;
|
|
@@ -27868,6 +28110,31 @@ capabilities, skills, security, and other manifest-defined fields.
|
|
|
27868
28110
|
title: string | null;
|
|
27869
28111
|
}
|
|
27870
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
|
+
|
|
27871
28138
|
@entity model bitlocker extends entity {
|
|
27872
28139
|
@contains recoveryKeys: bitlockerRecoveryKey[];
|
|
27873
28140
|
}
|
|
@@ -28623,11 +28890,13 @@ capabilities, skills, security, and other manifest-defined fields.
|
|
|
28623
28890
|
body: chatMessageBody;
|
|
28624
28891
|
channelIdentity: channelIdentity | null;
|
|
28625
28892
|
chatId: string | null;
|
|
28893
|
+
citations: chatMessageCitation[] | null;
|
|
28626
28894
|
@computed createdDateTime: offsetDateTime | null;
|
|
28627
28895
|
deletedDateTime: offsetDateTime | null;
|
|
28628
28896
|
etag: string | null;
|
|
28629
28897
|
eventDetail: eventMessageDetail | null;
|
|
28630
28898
|
from: chatMessageFromIdentitySet | null;
|
|
28899
|
+
hasReplies: boolean;
|
|
28631
28900
|
importance: chatMessageImportance;
|
|
28632
28901
|
@computed lastEditedDateTime: offsetDateTime | null;
|
|
28633
28902
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
@@ -29101,6 +29370,7 @@ capabilities, skills, security, and other manifest-defined fields.
|
|
|
29101
29370
|
powerState: cloudPcPowerState | null;
|
|
29102
29371
|
productType: cloudPcProductType | null;
|
|
29103
29372
|
provisionedDateTime: offsetDateTime | null;
|
|
29373
|
+
provisioningConfiguration: cloudPcProvisioningConfiguration | null;
|
|
29104
29374
|
provisioningPolicyId: string | null;
|
|
29105
29375
|
provisioningPolicyName: string | null;
|
|
29106
29376
|
provisioningType: cloudPcProvisioningType | null;
|
|
@@ -30227,6 +30497,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
30227
30497
|
}
|
|
30228
30498
|
|
|
30229
30499
|
@entity model copilotPackage extends entity {
|
|
30500
|
+
agentIdentityId: string | null;
|
|
30230
30501
|
appId: string | null;
|
|
30231
30502
|
assetId: string | null;
|
|
30232
30503
|
availableTo: packageStatus;
|
|
@@ -30250,12 +30521,32 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
30250
30521
|
|
|
30251
30522
|
@entity model copilotPackageDetail extends copilotPackage {
|
|
30252
30523
|
acquireUsersAndGroups: packageAccessEntity[];
|
|
30524
|
+
/**
|
|
30525
|
+
* The number of distinct users who actively used the package during the reporting period.
|
|
30526
|
+
*/
|
|
30527
|
+
activeUsers: int32 | null;
|
|
30253
30528
|
allowedUsersAndGroups: packageAccessEntity[];
|
|
30254
30529
|
categories: string[];
|
|
30255
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;
|
|
30256
30539
|
longDescription: string | null;
|
|
30257
30540
|
sensitivity: string | null;
|
|
30258
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;
|
|
30259
30550
|
}
|
|
30260
30551
|
|
|
30261
30552
|
@entity model copilotPeopleAdminSetting extends entity {
|
|
@@ -30417,6 +30708,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
30417
30708
|
displayName: string | null;
|
|
30418
30709
|
externalCloudAuthorizedApplicationId: string | null;
|
|
30419
30710
|
groupSyncInbound: crossTenantGroupSyncInbound | null;
|
|
30711
|
+
roleEnabledGroupSyncInbound: crossTenantRoleEnabledGroupSyncInbound | null;
|
|
30420
30712
|
@computed @key tenantId: string;
|
|
30421
30713
|
userSyncInbound: crossTenantUserSyncInbound | null;
|
|
30422
30714
|
}
|
|
@@ -31051,6 +31343,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
31051
31343
|
}
|
|
31052
31344
|
|
|
31053
31345
|
@entity model deletedItemContainer extends entity {
|
|
31346
|
+
@contains lifecyclePolicies: reference.`microsoft.graph.identityGovernance`.lifecyclePolicy[];
|
|
31054
31347
|
@contains workflows: reference.`microsoft.graph.identityGovernance`.workflow[];
|
|
31055
31348
|
}
|
|
31056
31349
|
|
|
@@ -31731,7 +32024,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
31731
32024
|
/**
|
|
31732
32025
|
* Singleton entity that acts as a container for all device app management functionality.
|
|
31733
32026
|
*/
|
|
31734
|
-
@entity model deviceAppManagement extends entity {
|
|
32027
|
+
@entity model deviceAppManagement extends MsGraph.SharedModels.entity {
|
|
31735
32028
|
/**
|
|
31736
32029
|
* Whether the account is enabled for syncing applications from the Microsoft Store for Business.
|
|
31737
32030
|
*/
|
|
@@ -32305,7 +32598,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
32305
32598
|
*/
|
|
32306
32599
|
@computed lastModifiedDateTime: offsetDateTime;
|
|
32307
32600
|
/**
|
|
32308
|
-
* 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.
|
|
32309
32602
|
*/
|
|
32310
32603
|
platform: deviceComplianceScriptPlatformType | null;
|
|
32311
32604
|
/**
|
|
@@ -32317,7 +32610,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
32317
32610
|
*/
|
|
32318
32611
|
roleScopeTagIds: string[] | null;
|
|
32319
32612
|
/**
|
|
32320
|
-
*
|
|
32613
|
+
* Indicate whether PowerShell script(s) should run as 32-bit
|
|
32321
32614
|
*/
|
|
32322
32615
|
runAs32Bit: boolean;
|
|
32323
32616
|
/**
|
|
@@ -32831,6 +33124,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
32831
33124
|
successCount: int32;
|
|
32832
33125
|
}
|
|
32833
33126
|
|
|
33127
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
32834
33128
|
@entity model deviceConfigurationUserStateSummary extends entity {
|
|
32835
33129
|
/**
|
|
32836
33130
|
* Number of compliant users
|
|
@@ -33801,6 +34095,8 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
33801
34095
|
/**
|
|
33802
34096
|
* The device configuration user state summary for this account.
|
|
33803
34097
|
*/
|
|
34098
|
+
|
|
34099
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
33804
34100
|
@contains deviceConfigurationUserStateSummaries: deviceConfigurationUserStateSummary | null;
|
|
33805
34101
|
/**
|
|
33806
34102
|
* The list of device custom attribute shell scripts associated with the tenant.
|
|
@@ -36117,7 +36413,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
36117
36413
|
@contains sharedEmailDomains: sharedEmailDomain[];
|
|
36118
36414
|
@contains subscriptions: companySubscription[];
|
|
36119
36415
|
@contains templates: template | null;
|
|
36120
|
-
@contains tenantGovernance:
|
|
36416
|
+
@contains tenantGovernance: tenantGovernance | null;
|
|
36121
36417
|
}
|
|
36122
36418
|
|
|
36123
36419
|
@entity model directoryAudit extends entity {
|
|
@@ -36192,12 +36488,19 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
36192
36488
|
|
|
36193
36489
|
@entity model distributionList extends outlookItem {
|
|
36194
36490
|
displayName: string | null;
|
|
36195
|
-
members: member[];
|
|
36196
36491
|
notes: string | null;
|
|
36197
36492
|
personIdentifier: string | null;
|
|
36493
|
+
@contains members: distributionListMember[];
|
|
36198
36494
|
@contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
|
|
36199
36495
|
}
|
|
36200
36496
|
|
|
36497
|
+
@entity model distributionListMember extends entity {
|
|
36498
|
+
displayName: string | null;
|
|
36499
|
+
memberId: string | null;
|
|
36500
|
+
type: recipientType;
|
|
36501
|
+
@references contact: contact | null;
|
|
36502
|
+
}
|
|
36503
|
+
|
|
36201
36504
|
@entity model dlpEvaluatePoliciesJobResponse extends jobResponseBase {
|
|
36202
36505
|
result: dlpPoliciesJobResult | null;
|
|
36203
36506
|
}
|
|
@@ -36308,6 +36611,7 @@ typically alternating request/response, implicitly forming a turn.Represents a c
|
|
|
36308
36611
|
driveType: string | null;
|
|
36309
36612
|
owner: identitySet | null;
|
|
36310
36613
|
quota: quota | null;
|
|
36614
|
+
settings: driveSettings | null;
|
|
36311
36615
|
sharePointIds: sharepointIds | null;
|
|
36312
36616
|
system: systemFacet | null;
|
|
36313
36617
|
@contains activities: itemActivityOLD[];
|
|
@@ -37638,8 +37942,8 @@ within the time frame of their original request.
|
|
|
37638
37942
|
connectorType: connectorType;
|
|
37639
37943
|
createdBy: string | null;
|
|
37640
37944
|
@computed createdDateTime: offsetDateTime | null;
|
|
37641
|
-
description: string
|
|
37642
|
-
displayName: string
|
|
37945
|
+
description: string;
|
|
37946
|
+
displayName: string;
|
|
37643
37947
|
modifiedBy: string | null;
|
|
37644
37948
|
modifiedDateTime: offsetDateTime | null;
|
|
37645
37949
|
}
|
|
@@ -37775,6 +38079,7 @@ within the time frame of their original request.
|
|
|
37775
38079
|
containerTypeId: guid;
|
|
37776
38080
|
@computed createdDateTime: offsetDateTime;
|
|
37777
38081
|
customProperties: fileStorageContainerCustomPropertyDictionary | null;
|
|
38082
|
+
dataLocationCode: string | null;
|
|
37778
38083
|
description: string | null;
|
|
37779
38084
|
displayName: string;
|
|
37780
38085
|
externalGroupId: guid | null;
|
|
@@ -37923,6 +38228,15 @@ within the time frame of their original request.
|
|
|
37923
38228
|
insightCreatedDateTime: offsetDateTime | null;
|
|
37924
38229
|
}
|
|
37925
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
|
+
|
|
37926
38240
|
@open
|
|
37927
38241
|
@entity model governancePolicyTemplate extends entity {
|
|
37928
38242
|
displayName: string | null;
|
|
@@ -37930,6 +38244,29 @@ within the time frame of their original request.
|
|
|
37930
38244
|
settings: businessFlowSettings | null;
|
|
37931
38245
|
}
|
|
37932
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
|
+
|
|
37933
38270
|
@open
|
|
37934
38271
|
@entity model governanceResource extends entity {
|
|
37935
38272
|
displayName: string | null;
|
|
@@ -39365,6 +39702,7 @@ within the time frame of their original request.
|
|
|
39365
39702
|
resourceType: string;
|
|
39366
39703
|
status: recommendationStatus;
|
|
39367
39704
|
subjectId: string;
|
|
39705
|
+
@contains tags: recommendationTag[];
|
|
39368
39706
|
}
|
|
39369
39707
|
|
|
39370
39708
|
/**
|
|
@@ -39813,6 +40151,12 @@ within the time frame of their original request.
|
|
|
39813
40151
|
tenantLicenseStatus: string | null;
|
|
39814
40152
|
}
|
|
39815
40153
|
|
|
40154
|
+
@entity model investigationActionStep extends MsGraph.SharedModels.entity {
|
|
40155
|
+
actionUrl: investigationActionUrl | null;
|
|
40156
|
+
@computed @key stepNumber: string;
|
|
40157
|
+
text: string | null;
|
|
40158
|
+
}
|
|
40159
|
+
|
|
39816
40160
|
@entity model invitation extends entity {
|
|
39817
40161
|
invitedUserDisplayName: string | null;
|
|
39818
40162
|
invitedUserEmailAddress: string;
|
|
@@ -43722,6 +44066,7 @@ within the time frame of their original request.
|
|
|
43722
44066
|
parentMailboxUrl: string | null;
|
|
43723
44067
|
totalItemCount: int32 | null;
|
|
43724
44068
|
type: string | null;
|
|
44069
|
+
wellKnownName: string | null;
|
|
43725
44070
|
@contains childFolders: mailboxFolder[];
|
|
43726
44071
|
@contains items: mailboxItem[];
|
|
43727
44072
|
@contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
|
|
@@ -44740,6 +45085,8 @@ within the time frame of their original request.
|
|
|
44740
45085
|
/**
|
|
44741
45086
|
* Security baseline states for this device.
|
|
44742
45087
|
*/
|
|
45088
|
+
|
|
45089
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
44743
45090
|
@contains securityBaselineStates: securityBaselineState[];
|
|
44744
45091
|
/**
|
|
44745
45092
|
* The primary users associated with the managed device.
|
|
@@ -46147,6 +46494,10 @@ within the time frame of their original request.
|
|
|
46147
46494
|
* Indicates the size of the file after encryption, in bytes.
|
|
46148
46495
|
*/
|
|
46149
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;
|
|
46150
46501
|
/**
|
|
46151
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.
|
|
46152
46503
|
*/
|
|
@@ -46606,6 +46957,26 @@ within the time frame of their original request.
|
|
|
46606
46957
|
userId: string | null;
|
|
46607
46958
|
}
|
|
46608
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
|
+
|
|
46609
46980
|
@entity model multiTenantOrganization extends entity {
|
|
46610
46981
|
@computed createdDateTime: offsetDateTime | null;
|
|
46611
46982
|
description: string | null;
|
|
@@ -46693,6 +47064,14 @@ within the time frame of their original request.
|
|
|
46693
47064
|
* Timestamp when on-prem certificate connector was enrolled in Intune.
|
|
46694
47065
|
*/
|
|
46695
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;
|
|
46696
47075
|
/**
|
|
46697
47076
|
* Last connection time for the Ndes Connector
|
|
46698
47077
|
*/
|
|
@@ -48087,8 +48466,11 @@ within the time frame of their original request.
|
|
|
48087
48466
|
status: placeOperationStatus;
|
|
48088
48467
|
}
|
|
48089
48468
|
|
|
48090
|
-
@entity model planner extends entity {
|
|
48469
|
+
@entity model planner extends MsGraph.SharedModels.entity {
|
|
48091
48470
|
@contains buckets: plannerBucket[];
|
|
48471
|
+
|
|
48472
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
48473
|
+
@contains goals: plannerGoal[];
|
|
48092
48474
|
@contains plans: plannerPlan[];
|
|
48093
48475
|
@contains rosters: plannerRoster[];
|
|
48094
48476
|
@contains tasks: plannerTask[];
|
|
@@ -48116,6 +48498,18 @@ within the time frame of their original request.
|
|
|
48116
48498
|
@entity model plannerDelta extends entity {
|
|
48117
48499
|
}
|
|
48118
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
|
+
|
|
48119
48513
|
@entity model plannerGroup extends entity {
|
|
48120
48514
|
@references plans: plannerPlan[];
|
|
48121
48515
|
}
|
|
@@ -48146,6 +48540,9 @@ within the time frame of their original request.
|
|
|
48146
48540
|
title: string;
|
|
48147
48541
|
@references buckets: plannerBucket[];
|
|
48148
48542
|
@contains details: plannerPlanDetails | null;
|
|
48543
|
+
|
|
48544
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
48545
|
+
@references goals: plannerGoal[];
|
|
48149
48546
|
@contains historyItems: plannerHistoryItem[];
|
|
48150
48547
|
@references tasks: plannerTask[];
|
|
48151
48548
|
}
|
|
@@ -48203,6 +48600,9 @@ within the time frame of their original request.
|
|
|
48203
48600
|
@computed createdDateTime: offsetDateTime | null;
|
|
48204
48601
|
creationSource: plannerTaskCreation | null;
|
|
48205
48602
|
dueDateTime: offsetDateTime | null;
|
|
48603
|
+
|
|
48604
|
+
@graphDeprecated("Tasks_And_Plans")
|
|
48605
|
+
goalIds: string[];
|
|
48206
48606
|
hasChat: boolean;
|
|
48207
48607
|
hasDescription: boolean | null;
|
|
48208
48608
|
isArchived: boolean | null;
|
|
@@ -49378,9 +49778,13 @@ within the time frame of their original request.
|
|
|
49378
49778
|
actionSteps: actionStep[] | null;
|
|
49379
49779
|
benefits: string | null;
|
|
49380
49780
|
category: recommendationCategory;
|
|
49781
|
+
categoryGroup: recommendationCategoryGroup;
|
|
49782
|
+
completedBySystemDateTime: offsetDateTime | null;
|
|
49783
|
+
completedByUserDateTime: offsetDateTime | null;
|
|
49381
49784
|
@computed createdDateTime: offsetDateTime;
|
|
49382
49785
|
currentScore: float64 | null;
|
|
49383
49786
|
displayName: string;
|
|
49787
|
+
failedReviewDateTime: offsetDateTime | null;
|
|
49384
49788
|
featureAreas: recommendationFeatureAreas[] | null;
|
|
49385
49789
|
impactStartDateTime: offsetDateTime | null;
|
|
49386
49790
|
impactType: string | null;
|
|
@@ -49389,18 +49793,28 @@ within the time frame of their original request.
|
|
|
49389
49793
|
lastModifiedBy: string | null;
|
|
49390
49794
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
49391
49795
|
maxScore: float64 | null;
|
|
49796
|
+
needsMoreActionResourceCount: int32 | null;
|
|
49797
|
+
nistClassifications: nistClassification[];
|
|
49392
49798
|
postponeUntilDateTime: offsetDateTime | null;
|
|
49393
49799
|
priority: recommendationPriority;
|
|
49394
49800
|
recommendationType: recommendationType | null;
|
|
49395
49801
|
releaseType: string | null;
|
|
49802
|
+
remediatedDateTime: offsetDateTime | null;
|
|
49396
49803
|
remediationImpact: string | null;
|
|
49397
49804
|
requiredLicenses: requiredLicenses | null;
|
|
49398
49805
|
status: recommendationStatus;
|
|
49806
|
+
@computed statusModifiedDateTime: offsetDateTime | null;
|
|
49399
49807
|
@contains impactedResources: impactedResource[];
|
|
49808
|
+
@contains tags: recommendationTag[];
|
|
49400
49809
|
}
|
|
49401
49810
|
|
|
49402
49811
|
@entity model recommendationConfiguration extends entity {
|
|
49403
49812
|
isNotificationEnabled: boolean;
|
|
49813
|
+
@computed lastRefreshedDateTime: offsetDateTime | null;
|
|
49814
|
+
}
|
|
49815
|
+
|
|
49816
|
+
@entity model recommendationTag extends entity {
|
|
49817
|
+
displayName: string;
|
|
49404
49818
|
}
|
|
49405
49819
|
|
|
49406
49820
|
@open
|
|
@@ -49469,6 +49883,23 @@ within the time frame of their original request.
|
|
|
49469
49883
|
translationPreferences: translationPreferences | null;
|
|
49470
49884
|
}
|
|
49471
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
|
+
|
|
49472
49903
|
@entity model relyingPartyDetailedSummary extends entity {
|
|
49473
49904
|
failedSignInCount: int64;
|
|
49474
49905
|
migrationStatus: migrationStatus;
|
|
@@ -49653,6 +50084,11 @@ within the time frame of their original request.
|
|
|
49653
50084
|
isPartnerConsentPending: boolean;
|
|
49654
50085
|
}
|
|
49655
50086
|
|
|
50087
|
+
@entity model resourceAccountKeyAuthenticationMethod extends authenticationMethod {
|
|
50088
|
+
displayName: string | null;
|
|
50089
|
+
@references device: device | null;
|
|
50090
|
+
}
|
|
50091
|
+
|
|
49656
50092
|
/**
|
|
49657
50093
|
* Describes the resourceOperation resource (entity) of the Microsoft Graph API (REST), which supports Intune workflows related to role-based access control (RBAC).
|
|
49658
50094
|
*/
|
|
@@ -49834,6 +50270,9 @@ within the time frame of their original request.
|
|
|
49834
50270
|
riskState: riskState;
|
|
49835
50271
|
}
|
|
49836
50272
|
|
|
50273
|
+
@entity model riskyAgentDiscoveredAgentIdentity extends riskyAgent {
|
|
50274
|
+
}
|
|
50275
|
+
|
|
49837
50276
|
@entity model riskyAgentIdentity extends riskyAgent {
|
|
49838
50277
|
@references agentIdentity: agentIdentity | null;
|
|
49839
50278
|
}
|
|
@@ -50539,6 +50978,8 @@ within the time frame of their original request.
|
|
|
50539
50978
|
/**
|
|
50540
50979
|
* The security baseline per category compliance state summary for the security baseline of the account.
|
|
50541
50980
|
*/
|
|
50981
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
50982
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
50542
50983
|
@entity model securityBaselineCategoryStateSummary extends securityBaselineStateSummary {
|
|
50543
50984
|
/**
|
|
50544
50985
|
* The category name
|
|
@@ -50549,6 +50990,7 @@ within the time frame of their original request.
|
|
|
50549
50990
|
/**
|
|
50550
50991
|
* The security baseline compliance state summary of the security baseline for a device.
|
|
50551
50992
|
*/
|
|
50993
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
50552
50994
|
@entity model securityBaselineDeviceState extends entity {
|
|
50553
50995
|
/**
|
|
50554
50996
|
* Display name of the device
|
|
@@ -50575,6 +51017,7 @@ within the time frame of their original request.
|
|
|
50575
51017
|
/**
|
|
50576
51018
|
* The security baseline compliance state of a setting for a device
|
|
50577
51019
|
*/
|
|
51020
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
50578
51021
|
@entity model securityBaselineSettingState extends entity {
|
|
50579
51022
|
/**
|
|
50580
51023
|
* The policies that contribute to this setting instance
|
|
@@ -50613,6 +51056,7 @@ within the time frame of their original request.
|
|
|
50613
51056
|
/**
|
|
50614
51057
|
* Security baseline state for a device.
|
|
50615
51058
|
*/
|
|
51059
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
50616
51060
|
@entity model securityBaselineState extends entity {
|
|
50617
51061
|
/**
|
|
50618
51062
|
* The display name of the security baseline
|
|
@@ -50633,12 +51077,15 @@ within the time frame of their original request.
|
|
|
50633
51077
|
/**
|
|
50634
51078
|
* The security baseline state for different settings for a device
|
|
50635
51079
|
*/
|
|
51080
|
+
|
|
51081
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
50636
51082
|
@contains settingStates: securityBaselineSettingState[];
|
|
50637
51083
|
}
|
|
50638
51084
|
|
|
50639
51085
|
/**
|
|
50640
51086
|
* The security baseline compliance state summary for the security baseline of the account.
|
|
50641
51087
|
*/
|
|
51088
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
50642
51089
|
@entity model securityBaselineStateSummary extends entity {
|
|
50643
51090
|
/**
|
|
50644
51091
|
* Number of conflict devices
|
|
@@ -50673,14 +51120,20 @@ within the time frame of their original request.
|
|
|
50673
51120
|
/**
|
|
50674
51121
|
* The security baseline per category device state summary
|
|
50675
51122
|
*/
|
|
51123
|
+
|
|
51124
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
50676
51125
|
@contains categoryDeviceStateSummaries: securityBaselineCategoryStateSummary[];
|
|
50677
51126
|
/**
|
|
50678
51127
|
* The security baseline device states
|
|
50679
51128
|
*/
|
|
51129
|
+
|
|
51130
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
50680
51131
|
@contains deviceStates: securityBaselineDeviceState[];
|
|
50681
51132
|
/**
|
|
50682
51133
|
* The security baseline device state summary
|
|
50683
51134
|
*/
|
|
51135
|
+
|
|
51136
|
+
@graphDeprecated("Rv1MigrationDeprecation")
|
|
50684
51137
|
@contains deviceStateSummary: securityBaselineStateSummary | null;
|
|
50685
51138
|
}
|
|
50686
51139
|
|
|
@@ -50959,6 +51412,7 @@ within the time frame of their original request.
|
|
|
50959
51412
|
@contains federatedIdentityCredentials: federatedIdentityCredential[];
|
|
50960
51413
|
@references homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
50961
51414
|
@contains licenseDetails: licenseDetails[];
|
|
51415
|
+
@contains lifecycle: reference.`microsoft.graph.identityGovernance`.identityLifecycle | null;
|
|
50962
51416
|
@references memberOf: directoryObject[];
|
|
50963
51417
|
@references oauth2PermissionGrants: oAuth2PermissionGrant[];
|
|
50964
51418
|
@references ownedObjects: directoryObject[];
|
|
@@ -52342,7 +52796,7 @@ within the time frame of their original request.
|
|
|
52342
52796
|
@contains teamDefinition: team | null;
|
|
52343
52797
|
}
|
|
52344
52798
|
|
|
52345
|
-
@entity model teamwork extends entity {
|
|
52799
|
+
@entity model teamwork extends MsGraph.SharedModels.entity {
|
|
52346
52800
|
isTeamsEnabled: boolean;
|
|
52347
52801
|
region: string | null;
|
|
52348
52802
|
@contains deletedChats: deletedChat[];
|
|
@@ -52514,6 +52968,31 @@ within the time frame of their original request.
|
|
|
52514
52968
|
@contains protectionScopes: tenantProtectionScopeContainer;
|
|
52515
52969
|
}
|
|
52516
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
|
+
|
|
52517
52996
|
@entity model tenantProtectionScopeContainer extends entity {
|
|
52518
52997
|
}
|
|
52519
52998
|
|
|
@@ -52657,6 +53136,7 @@ within the time frame of their original request.
|
|
|
52657
53136
|
|
|
52658
53137
|
@entity model textClassificationRequest extends entity {
|
|
52659
53138
|
contentMetaData: classificationRequestContentMetaData | null;
|
|
53139
|
+
embeddings: embeddingInput[] | null;
|
|
52660
53140
|
fileExtension: string | null;
|
|
52661
53141
|
matchTolerancesToInclude: mlClassificationMatchTolerance | null;
|
|
52662
53142
|
scopesToRun: sensitiveTypeScope | null;
|
|
@@ -55670,8 +56150,10 @@ within the time frame of their original request.
|
|
|
55670
56150
|
description: string;
|
|
55671
56151
|
faceCheckConfiguration: faceCheckConfiguration;
|
|
55672
56152
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
56153
|
+
mobileDriversLicenseConfiguration: mobileDriversLicenseConfiguration | null;
|
|
55673
56154
|
name: string;
|
|
55674
56155
|
priority: int32 | null;
|
|
56156
|
+
selfServiceIssuance: verifiedIdSelfServiceIssuance | null;
|
|
55675
56157
|
state: verifiedIdProfileState;
|
|
55676
56158
|
verifiedIdProfileConfiguration: verifiedIdProfileConfiguration;
|
|
55677
56159
|
verifiedIdUsageConfigurations: verifiedIdUsageConfiguration[];
|
|
@@ -60682,7 +61164,11 @@ within the time frame of their original request.
|
|
|
60682
61164
|
*/
|
|
60683
61165
|
@entity model windowsManagedAppProtection extends managedAppPolicy {
|
|
60684
61166
|
/**
|
|
60685
|
-
*
|
|
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.
|
|
60686
61172
|
*/
|
|
60687
61173
|
allowedInboundDataTransferSources: windowsManagedAppDataTransferLevel;
|
|
60688
61174
|
/**
|
|
@@ -60690,7 +61176,11 @@ within the time frame of their original request.
|
|
|
60690
61176
|
*/
|
|
60691
61177
|
allowedOutboundClipboardSharingLevel: windowsManagedAppClipboardSharingLevel;
|
|
60692
61178
|
/**
|
|
60693
|
-
*
|
|
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.
|
|
60694
61184
|
*/
|
|
60695
61185
|
allowedOutboundDataTransferDestinations: windowsManagedAppDataTransferLevel;
|
|
60696
61186
|
/**
|
|
@@ -63202,12 +63692,19 @@ within the time frame of their original request.
|
|
|
63202
63692
|
unknownFutureValue: 3,
|
|
63203
63693
|
}
|
|
63204
63694
|
|
|
63695
|
+
enum agentEndpointConfigurationType {
|
|
63696
|
+
apiBased: 0,
|
|
63697
|
+
botBased: 1,
|
|
63698
|
+
unknownFutureValue: 2,
|
|
63699
|
+
}
|
|
63700
|
+
|
|
63205
63701
|
enum agentIdentityType {
|
|
63206
63702
|
agentIdentity: 0,
|
|
63207
63703
|
agentUser: 1,
|
|
63208
63704
|
unknownFutureValue: 2,
|
|
63209
63705
|
agentIdentityBlueprintPrincipal: 3,
|
|
63210
63706
|
user: 4,
|
|
63707
|
+
discoveredAgentIdentity: 5,
|
|
63211
63708
|
}
|
|
63212
63709
|
|
|
63213
63710
|
enum agentIdRiskLevel {
|
|
@@ -63218,6 +63715,12 @@ within the time frame of their original request.
|
|
|
63218
63715
|
unknownFutureValue: 8,
|
|
63219
63716
|
}
|
|
63220
63717
|
|
|
63718
|
+
enum agentMessageNotificationMode {
|
|
63719
|
+
atMentionedMessagesOnly: 0,
|
|
63720
|
+
allMessages: 1,
|
|
63721
|
+
unknownFutureValue: 2,
|
|
63722
|
+
}
|
|
63723
|
+
|
|
63221
63724
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
63222
63725
|
enum agentStatus {
|
|
63223
63726
|
active: 0,
|
|
@@ -64940,6 +65443,18 @@ within the time frame of their original request.
|
|
|
64940
65443
|
unknownFutureValue: 127,
|
|
64941
65444
|
}
|
|
64942
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
|
+
|
|
64943
65458
|
/**
|
|
64944
65459
|
* Possible types of Application
|
|
64945
65460
|
*/
|
|
@@ -68497,6 +69012,29 @@ within the time frame of their original request.
|
|
|
68497
69012
|
applicationProxy: 0,
|
|
68498
69013
|
}
|
|
68499
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
|
+
|
|
68500
69038
|
/**
|
|
68501
69039
|
* Connector health state for connector status
|
|
68502
69040
|
*/
|
|
@@ -68638,16 +69176,6 @@ within the time frame of their original request.
|
|
|
68638
69176
|
email: 1,
|
|
68639
69177
|
}
|
|
68640
69178
|
|
|
68641
|
-
enum contentModelType {
|
|
68642
|
-
teachingMethod: 0,
|
|
68643
|
-
layoutMethod: 1,
|
|
68644
|
-
freeformSelectionMethod: 2,
|
|
68645
|
-
prebuiltContractModel: 3,
|
|
68646
|
-
prebuiltInvoiceModel: 4,
|
|
68647
|
-
prebuiltReceiptModel: 5,
|
|
68648
|
-
unknownFutureValue: 6,
|
|
68649
|
-
}
|
|
68650
|
-
|
|
68651
69179
|
enum contentModality {
|
|
68652
69180
|
audio: 0,
|
|
68653
69181
|
video: 1,
|
|
@@ -68657,11 +69185,14 @@ within the time frame of their original request.
|
|
|
68657
69185
|
unknownFutureValue: 5,
|
|
68658
69186
|
}
|
|
68659
69187
|
|
|
68660
|
-
enum
|
|
68661
|
-
|
|
68662
|
-
|
|
68663
|
-
|
|
68664
|
-
|
|
69188
|
+
enum contentModelType {
|
|
69189
|
+
teachingMethod: 0,
|
|
69190
|
+
layoutMethod: 1,
|
|
69191
|
+
freeformSelectionMethod: 2,
|
|
69192
|
+
prebuiltContractModel: 3,
|
|
69193
|
+
prebuiltInvoiceModel: 4,
|
|
69194
|
+
prebuiltReceiptModel: 5,
|
|
69195
|
+
unknownFutureValue: 6,
|
|
68665
69196
|
}
|
|
68666
69197
|
|
|
68667
69198
|
enum contentProcessingErrorType {
|
|
@@ -69500,6 +70031,13 @@ within the time frame of their original request.
|
|
|
69500
70031
|
unknownFutureValue: 11,
|
|
69501
70032
|
}
|
|
69502
70033
|
|
|
70034
|
+
enum detectionSeverity {
|
|
70035
|
+
low: 0,
|
|
70036
|
+
medium: 1,
|
|
70037
|
+
high: 2,
|
|
70038
|
+
unknownFutureValue: 3,
|
|
70039
|
+
}
|
|
70040
|
+
|
|
69503
70041
|
/**
|
|
69504
70042
|
* Enum type used for DeviceActionCategory
|
|
69505
70043
|
*/
|
|
@@ -71166,6 +71704,10 @@ within the time frame of their original request.
|
|
|
71166
71704
|
* Indicates the settings that can be deployed through the Android channel.
|
|
71167
71705
|
*/
|
|
71168
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,
|
|
71169
71711
|
}
|
|
71170
71712
|
|
|
71171
71713
|
/**
|
|
@@ -73805,6 +74347,176 @@ within the time frame of their original request.
|
|
|
73805
74347
|
IgnoreLookupReferenceResolutionFailure: 2,
|
|
73806
74348
|
}
|
|
73807
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
|
+
|
|
73808
74520
|
enum evaluationScopeType {
|
|
73809
74521
|
tenant: 0,
|
|
73810
74522
|
agent: 1,
|
|
@@ -74012,6 +74724,7 @@ within the time frame of their original request.
|
|
|
74012
74724
|
itemMajorVersionLimit: 4,
|
|
74013
74725
|
maxStoragePerContainerInBytes: 5,
|
|
74014
74726
|
unknownFutureValue: 6,
|
|
74727
|
+
isOfficeRestricted: 7,
|
|
74015
74728
|
}
|
|
74016
74729
|
|
|
74017
74730
|
/**
|
|
@@ -77600,6 +78313,22 @@ within the time frame of their original request.
|
|
|
77600
78313
|
userRequestedInstall: 5,
|
|
77601
78314
|
}
|
|
77602
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
|
+
|
|
77603
78332
|
/**
|
|
77604
78333
|
* Contains properties for upload request states.
|
|
77605
78334
|
*/
|
|
@@ -77869,6 +78598,33 @@ within the time frame of their original request.
|
|
|
77869
78598
|
unknownFutureValue: 2,
|
|
77870
78599
|
}
|
|
77871
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
|
+
|
|
77872
78628
|
/**
|
|
77873
78629
|
* The current status of the Ndes Connector.
|
|
77874
78630
|
*/
|
|
@@ -79009,6 +79765,15 @@ within the time frame of their original request.
|
|
|
79009
79765
|
unknownFutureValue: 3,
|
|
79010
79766
|
}
|
|
79011
79767
|
|
|
79768
|
+
enum plannerGoalStatus {
|
|
79769
|
+
notStarted: 0,
|
|
79770
|
+
onTrack: 1,
|
|
79771
|
+
behind: 2,
|
|
79772
|
+
atRisk: 3,
|
|
79773
|
+
closed: 4,
|
|
79774
|
+
unknownFutureValue: 5,
|
|
79775
|
+
}
|
|
79776
|
+
|
|
79012
79777
|
enum plannerPlanAccessLevel {
|
|
79013
79778
|
readAccess: 0,
|
|
79014
79779
|
readWriteAccess: 1,
|
|
@@ -81377,6 +82142,16 @@ within the time frame of their original request.
|
|
|
81377
82142
|
mdiSecureScore: 3,
|
|
81378
82143
|
}
|
|
81379
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
|
+
|
|
81380
82155
|
enum recommendationFeatureAreas {
|
|
81381
82156
|
users: 0,
|
|
81382
82157
|
groups: 1,
|
|
@@ -81388,11 +82163,12 @@ within the time frame of their original request.
|
|
|
81388
82163
|
unknownFutureValue: 7,
|
|
81389
82164
|
}
|
|
81390
82165
|
|
|
81391
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
81392
82166
|
enum recommendationPriority {
|
|
81393
82167
|
low: 0,
|
|
81394
82168
|
medium: 1,
|
|
81395
82169
|
high: 2,
|
|
82170
|
+
critical: 3,
|
|
82171
|
+
unknownFutureValue: 4,
|
|
81396
82172
|
}
|
|
81397
82173
|
|
|
81398
82174
|
enum recommendationStatus {
|
|
@@ -81406,6 +82182,7 @@ within the time frame of their original request.
|
|
|
81406
82182
|
thirdParty: 7,
|
|
81407
82183
|
planned: 8,
|
|
81408
82184
|
alternateMitigation: 9,
|
|
82185
|
+
needsMoreAction: 10,
|
|
81409
82186
|
}
|
|
81410
82187
|
|
|
81411
82188
|
enum recommendationType {
|
|
@@ -81573,6 +82350,34 @@ within the time frame of their original request.
|
|
|
81573
82350
|
unknownFutureValue: 3,
|
|
81574
82351
|
}
|
|
81575
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
|
+
|
|
81576
82381
|
enum releaseType {
|
|
81577
82382
|
preview: 0,
|
|
81578
82383
|
generallyAvailable: 1,
|
|
@@ -81776,6 +82581,14 @@ within the time frame of their original request.
|
|
|
81776
82581
|
* Indicates remote device action to restore the Managed Home Screen kiosk app.
|
|
81777
82582
|
*/
|
|
81778
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,
|
|
81779
82592
|
}
|
|
81780
82593
|
|
|
81781
82594
|
/**
|
|
@@ -81812,6 +82625,25 @@ within the time frame of their original request.
|
|
|
81812
82625
|
enabled: 2,
|
|
81813
82626
|
}
|
|
81814
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
|
+
|
|
81815
82647
|
enum replyRestriction {
|
|
81816
82648
|
everyone: 0,
|
|
81817
82649
|
authorAndModerators: 1,
|
|
@@ -81826,6 +82658,22 @@ within the time frame of their original request.
|
|
|
81826
82658
|
unknownFutureValue: 4,
|
|
81827
82659
|
}
|
|
81828
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
|
+
|
|
81829
82677
|
enum requiredLicenses {
|
|
81830
82678
|
notApplicable: 0,
|
|
81831
82679
|
microsoftEntraIdFree: 1,
|
|
@@ -81835,6 +82683,7 @@ within the time frame of their original request.
|
|
|
81835
82683
|
microsoftEntraWorkloadId: 5,
|
|
81836
82684
|
unknownFutureValue: 6,
|
|
81837
82685
|
aatp: 7,
|
|
82686
|
+
microsoftEntraSuite: 8,
|
|
81838
82687
|
}
|
|
81839
82688
|
|
|
81840
82689
|
/**
|
|
@@ -82257,6 +83106,10 @@ within the time frame of their original request.
|
|
|
82257
83106
|
* App was removed in order to install a superseding app.
|
|
82258
83107
|
*/
|
|
82259
83108
|
appRemovedBySupersedence: 3005,
|
|
83109
|
+
/**
|
|
83110
|
+
* App cannot be installed. One or more of the application's dependencies are in use.
|
|
83111
|
+
*/
|
|
83112
|
+
dependencyAppInUse: 3006,
|
|
82260
83113
|
/**
|
|
82261
83114
|
* Application failed to uninstall. See error code property for more details.
|
|
82262
83115
|
*/
|
|
@@ -82273,6 +83126,18 @@ within the time frame of their original request.
|
|
|
82273
83126
|
* Application content was downloaded to the device.
|
|
82274
83127
|
*/
|
|
82275
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,
|
|
82276
83141
|
}
|
|
82277
83142
|
|
|
82278
83143
|
enum retentionPeriodChangeStatus {
|
|
@@ -84417,6 +85282,7 @@ within the time frame of their original request.
|
|
|
84417
85282
|
pasteFromClipboard: 64,
|
|
84418
85283
|
print: 128,
|
|
84419
85284
|
accessDebugTools: 256,
|
|
85285
|
+
contentFiltering: 512,
|
|
84420
85286
|
}
|
|
84421
85287
|
|
|
84422
85288
|
enum userDefaultAuthenticationMethod {
|
|
@@ -84890,6 +85756,14 @@ within the time frame of their original request.
|
|
|
84890
85756
|
unknownFutureValue: 9,
|
|
84891
85757
|
}
|
|
84892
85758
|
|
|
85759
|
+
enum verifiedIdMethodType {
|
|
85760
|
+
identityVerificationPartner: 0,
|
|
85761
|
+
tenantCustomCredential: 1,
|
|
85762
|
+
verifiedEmployee: 2,
|
|
85763
|
+
unknownFutureValue: 3,
|
|
85764
|
+
notConfigured: 4,
|
|
85765
|
+
}
|
|
85766
|
+
|
|
84893
85767
|
enum verifiedIdProfileState {
|
|
84894
85768
|
enabled: 0,
|
|
84895
85769
|
disabled: 1,
|
|
@@ -84901,6 +85775,7 @@ within the time frame of their original request.
|
|
|
84901
85775
|
onboarding: 1,
|
|
84902
85776
|
all: 2,
|
|
84903
85777
|
unknownFutureValue: 3,
|
|
85778
|
+
verification: 4,
|
|
84904
85779
|
}
|
|
84905
85780
|
|
|
84906
85781
|
enum virtualAppointmentMessageType {
|
|
@@ -87576,7 +88451,6 @@ within the time frame of their original request.
|
|
|
87576
88451
|
/**
|
|
87577
88452
|
* Data can be transferred from/to these classes of apps
|
|
87578
88453
|
*/
|
|
87579
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
87580
88454
|
enum windowsManagedAppDataTransferLevel {
|
|
87581
88455
|
/**
|
|
87582
88456
|
* All apps.
|
|
@@ -87586,6 +88460,27 @@ within the time frame of their original request.
|
|
|
87586
88460
|
* No apps.
|
|
87587
88461
|
*/
|
|
87588
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,
|
|
87589
88484
|
}
|
|
87590
88485
|
|
|
87591
88486
|
/**
|
|
@@ -90121,6 +91016,10 @@ namespace reference.`microsoft.graph.healthMonitoring` {
|
|
|
90121
91016
|
unknownFutureValue: 4,
|
|
90122
91017
|
conditionalAccessBlockedSignIn: 5,
|
|
90123
91018
|
samlSignInFailure: 6,
|
|
91019
|
+
internetAppBlockedByPolicy: 7,
|
|
91020
|
+
privateAppBlockedByConnector: 8,
|
|
91021
|
+
remoteNetworkTunnelConnectivity: 9,
|
|
91022
|
+
remoteNetworkBgpConnectivity: 10,
|
|
90124
91023
|
}
|
|
90125
91024
|
|
|
90126
91025
|
enum category {
|
|
@@ -90143,6 +91042,7 @@ namespace reference.`microsoft.graph.healthMonitoring` {
|
|
|
90143
91042
|
unknownFutureValue: 3,
|
|
90144
91043
|
conditionalAccess: 4,
|
|
90145
91044
|
saml: 5,
|
|
91045
|
+
gsa: 6,
|
|
90146
91046
|
}
|
|
90147
91047
|
|
|
90148
91048
|
}
|
|
@@ -90173,6 +91073,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90173
91073
|
@complex model activationScope {
|
|
90174
91074
|
}
|
|
90175
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
|
+
|
|
90176
91084
|
@complex model attributeChangeTrigger extends workflowExecutionTrigger {
|
|
90177
91085
|
triggerAttributes: triggerAttribute[];
|
|
90178
91086
|
}
|
|
@@ -90222,6 +91130,20 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90222
91130
|
targetSubject: workflowSubject | null;
|
|
90223
91131
|
}
|
|
90224
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
|
+
|
|
90225
91147
|
@complex model groupBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
90226
91148
|
@references groups: reference.`microsoft.graph`.group[];
|
|
90227
91149
|
}
|
|
@@ -90230,6 +91152,16 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90230
91152
|
minimumRequiredSponsors: int32;
|
|
90231
91153
|
}
|
|
90232
91154
|
|
|
91155
|
+
@abstract
|
|
91156
|
+
@complex model lifecyclePolicyEnforcementAction {
|
|
91157
|
+
}
|
|
91158
|
+
|
|
91159
|
+
@complex model lifecyclePolicyNotificationSettings {
|
|
91160
|
+
additionalRecipients: string[];
|
|
91161
|
+
isEnabled: boolean;
|
|
91162
|
+
offsetsAfterNonComplianceInDays: int32[];
|
|
91163
|
+
}
|
|
91164
|
+
|
|
90233
91165
|
@complex model membershipChangeTrigger extends workflowExecutionTrigger {
|
|
90234
91166
|
changeType: membershipChangeType;
|
|
90235
91167
|
}
|
|
@@ -90290,6 +91222,18 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90290
91222
|
totalUsers: int32;
|
|
90291
91223
|
}
|
|
90292
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
|
+
|
|
90293
91237
|
@complex model taskReportSummary {
|
|
90294
91238
|
failedTasks: int32;
|
|
90295
91239
|
successfulTasks: int32;
|
|
@@ -90395,6 +91339,23 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90395
91339
|
@complex model workflowSubject {
|
|
90396
91340
|
}
|
|
90397
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
|
+
|
|
90398
91359
|
@entity model customTaskExtension extends reference.`microsoft.graph`.customCalloutExtension {
|
|
90399
91360
|
callbackConfiguration: reference.`microsoft.graph`.customExtensionCallbackConfiguration | null;
|
|
90400
91361
|
@computed createdDateTime: offsetDateTime | null;
|
|
@@ -90404,6 +91365,17 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90404
91365
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
90405
91366
|
}
|
|
90406
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
|
+
|
|
90407
91379
|
@entity model insights extends reference.`microsoft.graph`.entity {
|
|
90408
91380
|
}
|
|
90409
91381
|
|
|
@@ -90413,16 +91385,51 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90413
91385
|
workflowScheduleIntervalInHours: int32;
|
|
90414
91386
|
}
|
|
90415
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
|
+
|
|
90416
91417
|
@entity model lifecycleWorkflowsContainer extends reference.`microsoft.graph`.entity {
|
|
90417
91418
|
@contains customTaskExtensions: customTaskExtension[];
|
|
90418
91419
|
@contains deletedItems: reference.`microsoft.graph`.deletedItemContainer | null;
|
|
90419
91420
|
@contains insights: insights | null;
|
|
91421
|
+
@contains lifecyclePolicies: lifecyclePolicy[];
|
|
91422
|
+
@contains lifecyclePolicyPriorityConfigurations: lifecyclePolicyPriorityConfiguration[];
|
|
90420
91423
|
@contains settings: lifecycleManagementSettings;
|
|
90421
91424
|
@contains taskDefinitions: taskDefinition[];
|
|
90422
91425
|
@contains workflows: workflow[];
|
|
90423
91426
|
@contains workflowTemplates: workflowTemplate[];
|
|
90424
91427
|
}
|
|
90425
91428
|
|
|
91429
|
+
@entity model periodicAttestationRule extends lifecyclePolicyRule {
|
|
91430
|
+
attestationIntervalInDays: int32;
|
|
91431
|
+
}
|
|
91432
|
+
|
|
90426
91433
|
@entity model run extends reference.`microsoft.graph`.entity {
|
|
90427
91434
|
activatedOnScope: activationScope | null;
|
|
90428
91435
|
completedDateTime: offsetDateTime | null;
|
|
@@ -90443,6 +91450,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90443
91450
|
@contains userProcessingResults: userProcessingResult[];
|
|
90444
91451
|
}
|
|
90445
91452
|
|
|
91453
|
+
@entity model sponsorPresenceRule extends lifecyclePolicyRule {
|
|
91454
|
+
minimumSponsorCount: int32;
|
|
91455
|
+
}
|
|
91456
|
+
|
|
90446
91457
|
@entity model subjectProcessingResult extends reference.`microsoft.graph`.entity {
|
|
90447
91458
|
completedDateTime: offsetDateTime | null;
|
|
90448
91459
|
failedTasksCount: int32;
|
|
@@ -90450,6 +91461,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90450
91461
|
scheduledDateTime: offsetDateTime;
|
|
90451
91462
|
startedDateTime: offsetDateTime | null;
|
|
90452
91463
|
subject: workflowSubject;
|
|
91464
|
+
subjectType: subjectType;
|
|
90453
91465
|
totalTasksCount: int32;
|
|
90454
91466
|
totalUnprocessedTasksCount: int32;
|
|
90455
91467
|
workflowExecutionType: workflowExecutionType;
|
|
@@ -90549,6 +91561,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90549
91561
|
isEnabled: boolean;
|
|
90550
91562
|
isSchedulingEnabled: boolean;
|
|
90551
91563
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
91564
|
+
targetSubjectType: subjectType;
|
|
90552
91565
|
@references administrationScopeTargets: reference.`microsoft.graph`.directoryObject[];
|
|
90553
91566
|
@references createdBy: reference.`microsoft.graph`.user | null;
|
|
90554
91567
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
@@ -90580,6 +91593,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90580
91593
|
unknownFutureValue: 2,
|
|
90581
91594
|
}
|
|
90582
91595
|
|
|
91596
|
+
enum complianceState {
|
|
91597
|
+
compliant: 0,
|
|
91598
|
+
warning: 1,
|
|
91599
|
+
warningNotify: 2,
|
|
91600
|
+
nonCompliant: 3,
|
|
91601
|
+
unknownFutureValue: 5,
|
|
91602
|
+
}
|
|
91603
|
+
|
|
90583
91604
|
enum customTaskExtensionOperationStatus {
|
|
90584
91605
|
completed: 0,
|
|
90585
91606
|
failed: 1,
|
|
@@ -90593,6 +91614,12 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90593
91614
|
unknownFutureValue: 3,
|
|
90594
91615
|
}
|
|
90595
91616
|
|
|
91617
|
+
enum lifecyclePolicySource {
|
|
91618
|
+
userCreated: 0,
|
|
91619
|
+
systemDefault: 1,
|
|
91620
|
+
unknownFutureValue: 2,
|
|
91621
|
+
}
|
|
91622
|
+
|
|
90596
91623
|
@graphFlags
|
|
90597
91624
|
enum lifecycleTaskCategory {
|
|
90598
91625
|
joiner: 1,
|
|
@@ -90643,6 +91670,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
90643
91670
|
unknownFutureValue: 4,
|
|
90644
91671
|
}
|
|
90645
91672
|
|
|
91673
|
+
@graphFlags
|
|
91674
|
+
enum subjectType {
|
|
91675
|
+
user: 1,
|
|
91676
|
+
agentIdentity: 2,
|
|
91677
|
+
unknownFutureValue: 8,
|
|
91678
|
+
provisioningObject: 16,
|
|
91679
|
+
}
|
|
91680
|
+
|
|
90646
91681
|
enum valueType {
|
|
90647
91682
|
`enum`: 0,
|
|
90648
91683
|
`string`: 1,
|
|
@@ -92771,7 +93806,7 @@ namespace reference.`microsoft.graph.networkaccess` {
|
|
|
92771
93806
|
protocol: networkingProtocol;
|
|
92772
93807
|
}
|
|
92773
93808
|
|
|
92774
|
-
@entity model networkAccessRoot extends
|
|
93809
|
+
@entity model networkAccessRoot extends MsGraph.SharedModels.entity {
|
|
92775
93810
|
@contains alerts: alert[];
|
|
92776
93811
|
@contains cloudFirewallPolicies: cloudFirewallPolicy[];
|
|
92777
93812
|
@contains connectivity: connectivity | null;
|
|
@@ -94805,6 +95840,19 @@ namespace reference.`microsoft.graph.security` {
|
|
|
94805
95840
|
@complex model cortanaBriefingAuditRecord extends auditData {
|
|
94806
95841
|
}
|
|
94807
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
|
+
|
|
94808
95856
|
/**
|
|
94809
95857
|
* Audit data for Critical Asset Management Classification events.
|
|
94810
95858
|
*/
|
|
@@ -95145,6 +96193,13 @@ namespace reference.`microsoft.graph.security` {
|
|
|
95145
96193
|
@complex model enableUserIncidentTaskResponseAction extends incidentTaskResponseAction {
|
|
95146
96194
|
}
|
|
95147
96195
|
|
|
96196
|
+
@complex model entityDefinition {
|
|
96197
|
+
entityIdentifier: string;
|
|
96198
|
+
entityType: manualAlertEntityType;
|
|
96199
|
+
identifierValue: string;
|
|
96200
|
+
role: entityDefinitionInputRole;
|
|
96201
|
+
}
|
|
96202
|
+
|
|
95148
96203
|
@abstract
|
|
95149
96204
|
@complex model entityMapping {
|
|
95150
96205
|
}
|
|
@@ -102513,311 +103568,6 @@ namespace reference.`microsoft.graph.teamsAdministration` {
|
|
|
102513
103568
|
unknownFutureValue: 1,
|
|
102514
103569
|
}
|
|
102515
103570
|
|
|
102516
|
-
}
|
|
102517
|
-
@publicNamespace("microsoft.graph.tenantgovernanceservices")
|
|
102518
|
-
namespace reference.`microsoft.graph.tenantGovernanceServices` {
|
|
102519
|
-
@complex model actionUrl {
|
|
102520
|
-
displayName: string;
|
|
102521
|
-
url: string | null;
|
|
102522
|
-
}
|
|
102523
|
-
|
|
102524
|
-
@complex model delegatedAdministrationRoleAssignment {
|
|
102525
|
-
groupDisplayName: string | null;
|
|
102526
|
-
roleTemplates: roleTemplate[];
|
|
102527
|
-
@references group: reference.`microsoft.graph`.group | null;
|
|
102528
|
-
}
|
|
102529
|
-
|
|
102530
|
-
@complex model delegatedAdministrationRoleAssignmentSnapshot {
|
|
102531
|
-
groupDisplayName: string | null;
|
|
102532
|
-
groupId: string;
|
|
102533
|
-
roleTemplates: roleTemplate[];
|
|
102534
|
-
}
|
|
102535
|
-
|
|
102536
|
-
@complex model multiTenantApplicationsToProvision {
|
|
102537
|
-
appId: string;
|
|
102538
|
-
displayName: string;
|
|
102539
|
-
objectId: string;
|
|
102540
|
-
requiredResourceAccesses: requiredResourceAccess[];
|
|
102541
|
-
}
|
|
102542
|
-
|
|
102543
|
-
@complex model multiTenantApplicationsToProvisionSnapshot {
|
|
102544
|
-
appId: string;
|
|
102545
|
-
displayName: string;
|
|
102546
|
-
objectId: string;
|
|
102547
|
-
requiredResourceAccesses: requiredResourceAccess[];
|
|
102548
|
-
}
|
|
102549
|
-
|
|
102550
|
-
@complex model relatedTenantsRefreshStatus {
|
|
102551
|
-
isFirstRefresh: boolean;
|
|
102552
|
-
mostRecentRefreshRequestStatus: string;
|
|
102553
|
-
mostRecentRefreshTime: string;
|
|
102554
|
-
}
|
|
102555
|
-
|
|
102556
|
-
@complex model relationshipPolicy {
|
|
102557
|
-
delegatedAdministrationRoleAssignments: delegatedAdministrationRoleAssignmentSnapshot[];
|
|
102558
|
-
governedTenantCanTerminate: boolean;
|
|
102559
|
-
multiTenantApplicationsToProvision: multiTenantApplicationsToProvisionSnapshot[];
|
|
102560
|
-
policyId: string;
|
|
102561
|
-
version: int32 | null;
|
|
102562
|
-
}
|
|
102563
|
-
|
|
102564
|
-
@complex model requiredResourceAccess {
|
|
102565
|
-
permissions: resourcePermission[];
|
|
102566
|
-
resourceAppId: string;
|
|
102567
|
-
}
|
|
102568
|
-
|
|
102569
|
-
@complex model resourcePermission {
|
|
102570
|
-
id: string;
|
|
102571
|
-
name: string | null;
|
|
102572
|
-
type: permissionType;
|
|
102573
|
-
}
|
|
102574
|
-
|
|
102575
|
-
@complex model roleTemplate {
|
|
102576
|
-
id: string;
|
|
102577
|
-
name: string;
|
|
102578
|
-
}
|
|
102579
|
-
|
|
102580
|
-
@entity model actionStep extends MsGraph.SharedModels.entity {
|
|
102581
|
-
actionUrl: actionUrl | null;
|
|
102582
|
-
@computed @key stepNumber: string;
|
|
102583
|
-
text: string | null;
|
|
102584
|
-
}
|
|
102585
|
-
|
|
102586
|
-
@entity model b2bRegistrationMetrics extends reference.`microsoft.graph`.entity {
|
|
102587
|
-
@references initial: b2BRegistrationMetricsInitial;
|
|
102588
|
-
@contains investigationHints: actionStep[];
|
|
102589
|
-
@references recent: b2BRegistrationMetricsRecent;
|
|
102590
|
-
}
|
|
102591
|
-
|
|
102592
|
-
@abstract
|
|
102593
|
-
@entity model b2BRegistrationMetricsBase extends reference.`microsoft.graph`.entity {
|
|
102594
|
-
inboundTotalUsers: decimal;
|
|
102595
|
-
outboundTotalUsers: decimal;
|
|
102596
|
-
watermarkDateTime: offsetDateTime;
|
|
102597
|
-
}
|
|
102598
|
-
|
|
102599
|
-
@entity model b2BRegistrationMetricsInitial extends b2BRegistrationMetricsBase {
|
|
102600
|
-
@computed createdDateTime: offsetDateTime;
|
|
102601
|
-
}
|
|
102602
|
-
|
|
102603
|
-
@entity model b2BRegistrationMetricsRecent extends b2BRegistrationMetricsBase {
|
|
102604
|
-
updateDateTime: offsetDateTime;
|
|
102605
|
-
}
|
|
102606
|
-
|
|
102607
|
-
@entity model b2BSignInActivityMetrics extends reference.`microsoft.graph`.entity {
|
|
102608
|
-
@references initial: b2BSignInActivityMetricsInitial;
|
|
102609
|
-
@contains investigationHints: actionStep[];
|
|
102610
|
-
@references recent: b2BSignInActivityMetricsRecent;
|
|
102611
|
-
}
|
|
102612
|
-
|
|
102613
|
-
@abstract
|
|
102614
|
-
@entity model b2BSignInActivityMetricsBase extends reference.`microsoft.graph`.entity {
|
|
102615
|
-
inboundMonthlyTotalApplications: decimal;
|
|
102616
|
-
inboundMonthlyTotalUsers: decimal;
|
|
102617
|
-
outboundMonthlyTotalApplications: decimal;
|
|
102618
|
-
outboundMonthlyTotalUsers: decimal;
|
|
102619
|
-
watermarkDateTime: offsetDateTime;
|
|
102620
|
-
}
|
|
102621
|
-
|
|
102622
|
-
@entity model b2BSignInActivityMetricsInitial extends b2BSignInActivityMetricsBase {
|
|
102623
|
-
@computed createdDateTime: offsetDateTime;
|
|
102624
|
-
}
|
|
102625
|
-
|
|
102626
|
-
@entity model b2BSignInActivityMetricsRecent extends b2BSignInActivityMetricsBase {
|
|
102627
|
-
updateDateTime: offsetDateTime;
|
|
102628
|
-
}
|
|
102629
|
-
|
|
102630
|
-
@entity model billingMetrics extends reference.`microsoft.graph`.entity {
|
|
102631
|
-
@references initial: billingMetricsInitial;
|
|
102632
|
-
@contains investigationHints: actionStep[];
|
|
102633
|
-
@references recent: billingMetricsRecent;
|
|
102634
|
-
}
|
|
102635
|
-
|
|
102636
|
-
@entity model billingMetricsBase extends reference.`microsoft.graph`.entity {
|
|
102637
|
-
foreignAssociatedTenantBillingManagementActiveCount: decimal;
|
|
102638
|
-
foreignAssociatedTenantCount: decimal;
|
|
102639
|
-
foreignAssociatedTenantProvisioningActiveCount: decimal;
|
|
102640
|
-
localAssociatedTenantBillingManagementActiveCount: decimal;
|
|
102641
|
-
localAssociatedTenantCount: decimal;
|
|
102642
|
-
localAssociatedTenantIds: string[];
|
|
102643
|
-
localAssociatedTenantProvisioningActiveCount: decimal;
|
|
102644
|
-
watermarkDateTime: offsetDateTime;
|
|
102645
|
-
}
|
|
102646
|
-
|
|
102647
|
-
@entity model billingMetricsInitial extends billingMetricsBase {
|
|
102648
|
-
@computed createdDateTime: offsetDateTime;
|
|
102649
|
-
}
|
|
102650
|
-
|
|
102651
|
-
@entity model billingMetricsRecent extends billingMetricsBase {
|
|
102652
|
-
updateDateTime: offsetDateTime;
|
|
102653
|
-
}
|
|
102654
|
-
|
|
102655
|
-
@entity model governanceInvitation extends reference.`microsoft.graph`.entity {
|
|
102656
|
-
@computed createdDateTime: offsetDateTime;
|
|
102657
|
-
expirationDateTime: offsetDateTime;
|
|
102658
|
-
governedTenantId: string;
|
|
102659
|
-
governedTenantName: string;
|
|
102660
|
-
governingTenantId: string;
|
|
102661
|
-
governingTenantName: string;
|
|
102662
|
-
}
|
|
102663
|
-
|
|
102664
|
-
@entity model governancePolicyTemplate extends reference.`microsoft.graph`.entity {
|
|
102665
|
-
@computed createdDateTime: offsetDateTime;
|
|
102666
|
-
delegatedAdministrationRoleAssignments: delegatedAdministrationRoleAssignment[];
|
|
102667
|
-
description: string;
|
|
102668
|
-
displayName: string;
|
|
102669
|
-
governedTenantCanTerminate: boolean;
|
|
102670
|
-
@computed lastModifiedDateTime: offsetDateTime;
|
|
102671
|
-
multiTenantApplicationsToProvision: multiTenantApplicationsToProvision[];
|
|
102672
|
-
version: string;
|
|
102673
|
-
}
|
|
102674
|
-
|
|
102675
|
-
@entity model governanceRelationship extends reference.`microsoft.graph`.entity {
|
|
102676
|
-
createdType: relationshipCreationType;
|
|
102677
|
-
creationDateTime: offsetDateTime;
|
|
102678
|
-
governedTenantId: string;
|
|
102679
|
-
governedTenantName: string;
|
|
102680
|
-
governingTenantId: string;
|
|
102681
|
-
governingTenantName: string;
|
|
102682
|
-
policySnapshot: relationshipPolicy;
|
|
102683
|
-
status: relationshipStatus;
|
|
102684
|
-
}
|
|
102685
|
-
|
|
102686
|
-
@entity model governanceRequest extends reference.`microsoft.graph`.entity {
|
|
102687
|
-
expirationDateTime: offsetDateTime;
|
|
102688
|
-
governedTenantId: string;
|
|
102689
|
-
governedTenantName: string;
|
|
102690
|
-
governingTenantId: string;
|
|
102691
|
-
governingTenantName: string;
|
|
102692
|
-
policySnapshot: relationshipPolicy;
|
|
102693
|
-
requestDateTime: offsetDateTime;
|
|
102694
|
-
status: requestStatus;
|
|
102695
|
-
@references governancePolicyTemplate: governancePolicyTemplate | null;
|
|
102696
|
-
}
|
|
102697
|
-
|
|
102698
|
-
@entity model longRunningOperation extends reference.`microsoft.graph`.entity {
|
|
102699
|
-
@computed createdDateTime: offsetDateTime | null;
|
|
102700
|
-
@computed lastActionDateTime: offsetDateTime | null;
|
|
102701
|
-
resourceLocation: string | null;
|
|
102702
|
-
status: longRunningOperationStatus;
|
|
102703
|
-
statusDetail: string | null;
|
|
102704
|
-
}
|
|
102705
|
-
|
|
102706
|
-
@entity model multiTenantApplicationMetrics extends reference.`microsoft.graph`.entity {
|
|
102707
|
-
@references initial: multiTenantApplicationMetricsInitial;
|
|
102708
|
-
@contains investigationHints: actionStep[];
|
|
102709
|
-
@references recent: multiTenantApplicationMetricsRecent;
|
|
102710
|
-
}
|
|
102711
|
-
|
|
102712
|
-
@entity model multiTenantApplicationMetricsBase extends reference.`microsoft.graph`.entity {
|
|
102713
|
-
inboundMonthlyTotalApplications: decimal;
|
|
102714
|
-
outboundMonthlyTotalApplications: decimal;
|
|
102715
|
-
watermarkDateTime: offsetDateTime;
|
|
102716
|
-
}
|
|
102717
|
-
|
|
102718
|
-
@entity model multiTenantApplicationMetricsInitial extends multiTenantApplicationMetricsBase {
|
|
102719
|
-
@computed createdDateTime: offsetDateTime;
|
|
102720
|
-
}
|
|
102721
|
-
|
|
102722
|
-
@entity model multiTenantApplicationMetricsRecent extends multiTenantApplicationMetricsBase {
|
|
102723
|
-
updateDateTime: offsetDateTime;
|
|
102724
|
-
}
|
|
102725
|
-
|
|
102726
|
-
@entity model relatedTenant extends reference.`microsoft.graph`.entity {
|
|
102727
|
-
@computed createdDateTime: offsetDateTime;
|
|
102728
|
-
/**
|
|
102729
|
-
* Indicates whether this tenant is a Microsoft infrastructure tenant.
|
|
102730
|
-
*/
|
|
102731
|
-
isMicrosoftInfrastructure: boolean;
|
|
102732
|
-
@references appB2BSignInActivityMetrics: b2BSignInActivityMetrics | null;
|
|
102733
|
-
@references b2BRegistrationMetrics: b2bRegistrationMetrics | null;
|
|
102734
|
-
@references b2BSignInActivityMetrics: b2BSignInActivityMetrics | null;
|
|
102735
|
-
@references billingMetrics: billingMetrics | null;
|
|
102736
|
-
@references multiTenantApplicationMetrics: multiTenantApplicationMetrics | null;
|
|
102737
|
-
}
|
|
102738
|
-
|
|
102739
|
-
@entity model relatedTenantsRefreshRequest extends reference.`microsoft.graph`.entity {
|
|
102740
|
-
location: string;
|
|
102741
|
-
}
|
|
102742
|
-
|
|
102743
|
-
@entity model tenantGovernance extends reference.`microsoft.graph`.entity {
|
|
102744
|
-
@contains governanceInvitations: governanceInvitation[];
|
|
102745
|
-
@contains governancePolicyTemplates: governancePolicyTemplate[];
|
|
102746
|
-
@contains governanceRelationships: governanceRelationship[];
|
|
102747
|
-
@contains governanceRequests: governanceRequest[];
|
|
102748
|
-
@contains relatedTenants: relatedTenant[];
|
|
102749
|
-
@contains settings: tenantGovernanceSetting | null;
|
|
102750
|
-
}
|
|
102751
|
-
|
|
102752
|
-
@entity model tenantGovernanceSetting extends reference.`microsoft.graph`.entity {
|
|
102753
|
-
canReceiveInvitations: boolean;
|
|
102754
|
-
isRelatedTenantsEnabled: boolean;
|
|
102755
|
-
}
|
|
102756
|
-
|
|
102757
|
-
enum longRunningOperationStatus {
|
|
102758
|
-
notStarted: 0,
|
|
102759
|
-
running: 1,
|
|
102760
|
-
succeeded: 2,
|
|
102761
|
-
failed: 3,
|
|
102762
|
-
unknownFutureValue: 4,
|
|
102763
|
-
}
|
|
102764
|
-
|
|
102765
|
-
enum permissionType {
|
|
102766
|
-
/**
|
|
102767
|
-
* Represents a type of permission that is for an app only scenario. No user is involved.
|
|
102768
|
-
*/
|
|
102769
|
-
role: 0,
|
|
102770
|
-
/**
|
|
102771
|
-
* Represents a type of permission that is for an app and user scenario.
|
|
102772
|
-
*/
|
|
102773
|
-
scope: 1,
|
|
102774
|
-
unknownFutureValue: 2,
|
|
102775
|
-
}
|
|
102776
|
-
|
|
102777
|
-
enum relationshipCreationType {
|
|
102778
|
-
/**
|
|
102779
|
-
* Represents a relationship between two tenants that was created by an explicit approval from the governed tenant admin.
|
|
102780
|
-
*/
|
|
102781
|
-
approvedByAdmin: 0,
|
|
102782
|
-
/**
|
|
102783
|
-
* Represents a relationship between the add-on tenant and the tenant from which it was created.
|
|
102784
|
-
*/
|
|
102785
|
-
addOnTenant: 1,
|
|
102786
|
-
unknownFutureValue: 2,
|
|
102787
|
-
}
|
|
102788
|
-
|
|
102789
|
-
enum relationshipStatus {
|
|
102790
|
-
/**
|
|
102791
|
-
* Represents a relationship that is currently active.
|
|
102792
|
-
*/
|
|
102793
|
-
active: 0,
|
|
102794
|
-
/**
|
|
102795
|
-
* Represents a relationship that has been terminated.
|
|
102796
|
-
*/
|
|
102797
|
-
terminated: 1,
|
|
102798
|
-
/**
|
|
102799
|
-
* Represents a relationship that has been requested to be terminated by governing tenant.
|
|
102800
|
-
*/
|
|
102801
|
-
terminationRequestedByGoverningTenant: 2,
|
|
102802
|
-
unknownFutureValue: 3,
|
|
102803
|
-
}
|
|
102804
|
-
|
|
102805
|
-
enum requestStatus {
|
|
102806
|
-
/**
|
|
102807
|
-
* Represents a governance request that is pending
|
|
102808
|
-
*/
|
|
102809
|
-
pending: 0,
|
|
102810
|
-
/**
|
|
102811
|
-
* Represents a governance request that was accepted
|
|
102812
|
-
*/
|
|
102813
|
-
accepted: 1,
|
|
102814
|
-
/**
|
|
102815
|
-
* Represents a governance request that was rejected
|
|
102816
|
-
*/
|
|
102817
|
-
rejected: 2,
|
|
102818
|
-
unknownFutureValue: 3,
|
|
102819
|
-
}
|
|
102820
|
-
|
|
102821
103571
|
}
|
|
102822
103572
|
@publicNamespace("microsoft.graph.termstore")
|
|
102823
103573
|
namespace reference.`microsoft.graph.termStore` {
|