@microsoft/typespec-msgraph-reference 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.rush/temp/package-deps_build.json +17 -17
- package/CHANGELOG.md +9 -0
- package/lib/Bleu/Beta/main.tsp +189 -4
- package/lib/Bleu/V1.0/main.tsp +53 -0
- package/lib/Delos/Beta/main.tsp +954 -4
- package/lib/Delos/V1.0/main.tsp +93 -0
- package/lib/Fairfax/Beta/main.tsp +563 -20
- package/lib/Fairfax/V1.0/main.tsp +3 -0
- package/lib/GovSG/V1.0/main.tsp +1 -0
- package/lib/Mooncake/Beta/main.tsp +205 -4
- package/lib/Mooncake/V1.0/main.tsp +2 -0
- package/lib/Prod/Beta/main.tsp +911 -64
- package/lib/Prod/V1.0/main.tsp +478 -0
- package/lib/USNat/Beta/main.tsp +308 -0
- package/lib/USNat/V1.0/main.tsp +210 -0
- package/lib/USSec/Beta/main.tsp +308 -0
- package/lib/USSec/V1.0/main.tsp +210 -0
- package/package.json +2 -2
|
@@ -11707,6 +11707,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11707
11707
|
membershipRule: string | null;
|
|
11708
11708
|
membershipRuleProcessingState: string | null;
|
|
11709
11709
|
onPremisesDomainName: string | null;
|
|
11710
|
+
onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
|
|
11710
11711
|
onPremisesLastSyncDateTime: offsetDateTime | null;
|
|
11711
11712
|
onPremisesNetBiosName: string | null;
|
|
11712
11713
|
onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
|
|
@@ -15398,6 +15399,7 @@ namespace reference.`microsoft.graph` {
|
|
|
15398
15399
|
@entity model profileCardProperty extends entity {
|
|
15399
15400
|
annotations: profileCardAnnotation[] | null;
|
|
15400
15401
|
directoryPropertyName: string | null;
|
|
15402
|
+
isVisible: boolean;
|
|
15401
15403
|
}
|
|
15402
15404
|
|
|
15403
15405
|
@entity model profilePhoto extends entity {
|
|
@@ -32371,6 +32373,7 @@ namespace reference.`microsoft.graph.security` {
|
|
|
32371
32373
|
microsoftSentinel: 512,
|
|
32372
32374
|
microsoftInsiderRiskManagement: 1024,
|
|
32373
32375
|
microsoftThreatIntelligence: 2048,
|
|
32376
|
+
microsoftSecurityForAI: 4096,
|
|
32374
32377
|
}
|
|
32375
32378
|
|
|
32376
32379
|
@graphFlags
|
package/lib/GovSG/V1.0/main.tsp
CHANGED
|
@@ -997,6 +997,7 @@ namespace reference.`microsoft.graph` {
|
|
|
997
997
|
membershipRule: string | null;
|
|
998
998
|
membershipRuleProcessingState: string | null;
|
|
999
999
|
onPremisesDomainName: string | null;
|
|
1000
|
+
onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
|
|
1000
1001
|
onPremisesLastSyncDateTime: offsetDateTime | null;
|
|
1001
1002
|
onPremisesNetBiosName: string | null;
|
|
1002
1003
|
onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
|
|
@@ -12966,6 +12966,10 @@ namespace reference.`microsoft.graph` {
|
|
|
12966
12966
|
* Device restart behavior.
|
|
12967
12967
|
*/
|
|
12968
12968
|
deviceRestartBehavior: win32LobAppRestartBehavior;
|
|
12969
|
+
/**
|
|
12970
|
+
* Indicates whether app-in-use detection is enabled before app enforcement, and if enabled, the action to take when the app is detected to be in-use. Null indicates the feature is not enabled. Possible values are: 'notEnabled', 'fail', 'terminateWithoutUserInteraction', 'terminateWithUserInteraction'.
|
|
12971
|
+
*/
|
|
12972
|
+
inUseBehavior: win32LobAppInUseActionType | null;
|
|
12969
12973
|
/**
|
|
12970
12974
|
* The number of minutes the system will wait for install program to finish. Default value is 60 minutes.
|
|
12971
12975
|
*/
|
|
@@ -13096,6 +13100,24 @@ namespace reference.`microsoft.graph` {
|
|
|
13096
13100
|
scriptContent: string | null;
|
|
13097
13101
|
}
|
|
13098
13102
|
|
|
13103
|
+
/**
|
|
13104
|
+
* A complex type to store process rule data for a Win32 LOB app.
|
|
13105
|
+
*/
|
|
13106
|
+
@complex model win32LobAppProcessRule extends win32LobAppRule {
|
|
13107
|
+
/**
|
|
13108
|
+
* Indicates the process operation type. Default value is 'notConfigured'. Possible values are: 'notConfigured', 'exists'.
|
|
13109
|
+
*/
|
|
13110
|
+
operationType: win32LobAppProcessOperationType;
|
|
13111
|
+
/**
|
|
13112
|
+
* Indicates the display name for the process in the Intune admin console. Example: 'Microsoft Word'.
|
|
13113
|
+
*/
|
|
13114
|
+
processDisplayName: string | null;
|
|
13115
|
+
/**
|
|
13116
|
+
* Indicates the process name to be searched for on a managed device when enforcing a managed app. Example: 'TestApp.exe'.
|
|
13117
|
+
*/
|
|
13118
|
+
processName: string | null;
|
|
13119
|
+
}
|
|
13120
|
+
|
|
13099
13121
|
/**
|
|
13100
13122
|
* Contains product code and version properties to detect a Win32 App
|
|
13101
13123
|
*/
|
|
@@ -23025,7 +23047,7 @@ namespace reference.`microsoft.graph` {
|
|
|
23025
23047
|
*/
|
|
23026
23048
|
roleScopeTagIds: string[] | null;
|
|
23027
23049
|
/**
|
|
23028
|
-
*
|
|
23050
|
+
* Specifies whether the PowerShell script runs in 32-bit mode. When set to true, the script runs in a 32-bit PowerShell host. Default is false.
|
|
23029
23051
|
*/
|
|
23030
23052
|
runAs32Bit: boolean;
|
|
23031
23053
|
/**
|
|
@@ -24705,6 +24727,9 @@ namespace reference.`microsoft.graph` {
|
|
|
24705
24727
|
* The remote assistance settings singleton
|
|
24706
24728
|
*/
|
|
24707
24729
|
@contains remoteAssistanceSettings: remoteAssistanceSettings | null;
|
|
24730
|
+
/**
|
|
24731
|
+
* Reports singleton
|
|
24732
|
+
*/
|
|
24708
24733
|
@contains reports: deviceManagementReports | null;
|
|
24709
24734
|
/**
|
|
24710
24735
|
* Collection of resource access settings associated with account.
|
|
@@ -26194,6 +26219,9 @@ namespace reference.`microsoft.graph` {
|
|
|
26194
26219
|
whenPartnerDevicesWillBeRemovedDateTime: offsetDateTime | null;
|
|
26195
26220
|
}
|
|
26196
26221
|
|
|
26222
|
+
/**
|
|
26223
|
+
* Singleton entity that acts as a container for all reports functionality.
|
|
26224
|
+
*/
|
|
26197
26225
|
@entity model deviceManagementReports extends entity {
|
|
26198
26226
|
/**
|
|
26199
26227
|
* Entity representing the configuration of a cached report.
|
|
@@ -30585,7 +30613,7 @@ namespace reference.`microsoft.graph` {
|
|
|
30585
30613
|
}
|
|
30586
30614
|
|
|
30587
30615
|
/**
|
|
30588
|
-
* A class containing the properties used for iOS
|
|
30616
|
+
* A class containing the properties used for iOS lob app provisioning configuration PolicySetItem.
|
|
30589
30617
|
*/
|
|
30590
30618
|
@entity model iosLobAppProvisioningConfigurationPolicySetItem extends policySetItem {
|
|
30591
30619
|
}
|
|
@@ -33280,6 +33308,10 @@ namespace reference.`microsoft.graph` {
|
|
|
33280
33308
|
* Defines how app messaging redirection is protected by an App Protection Policy. Default is anyApp.
|
|
33281
33309
|
*/
|
|
33282
33310
|
protectedMessagingRedirectAppType: messagingRedirectAppType;
|
|
33311
|
+
/**
|
|
33312
|
+
* Indicates whether Microsoft Purview content evaluation is required before a managed app performs an outgoing data sharing action. Default value is notRequired. Possible values are: notRequired, requiredWhenOnline, required, unknownFutureValue.
|
|
33313
|
+
*/
|
|
33314
|
+
purviewContentEvaluationRequired: managedAppPurviewEvaluationRequirement;
|
|
33283
33315
|
/**
|
|
33284
33316
|
* Indicates whether users may use the "Save As" menu item to save a copy of protected files.
|
|
33285
33317
|
*/
|
|
@@ -38987,6 +39019,7 @@ namespace reference.`microsoft.graph` {
|
|
|
38987
39019
|
condition: string | null;
|
|
38988
39020
|
directoryScopeId: string | null;
|
|
38989
39021
|
principalId: string | null;
|
|
39022
|
+
principalOrganizationId: string | null;
|
|
38990
39023
|
resourceScope: string | null;
|
|
38991
39024
|
roleDefinitionId: string | null;
|
|
38992
39025
|
@contains appScope: appScope | null;
|
|
@@ -49314,6 +49347,18 @@ namespace reference.`microsoft.graph` {
|
|
|
49314
49347
|
*/
|
|
49315
49348
|
wpaPersonal: 4,
|
|
49316
49349
|
unknownFutureValue: 5,
|
|
49350
|
+
/**
|
|
49351
|
+
* Indicates Android Wi-Fi Security Type is set to WPA2. If supported by the platform, the device will attempt WPA3 first and will fall back to WPA2 if necessary. This restricts the preSharedKey to a string between 8 and 64 characters long. Use AndroidWorkProfileWifiConfiguration to configure basic Wi-Fi options.
|
|
49352
|
+
*/
|
|
49353
|
+
wpa2Personal: 6,
|
|
49354
|
+
/**
|
|
49355
|
+
* Indicates Android Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2. This restricts the preSharedKey to a string between 8 and 64 characters long. Use AndroidWorkProfileWifiConfiguration to configure basic Wi-Fi options.
|
|
49356
|
+
*/
|
|
49357
|
+
wpa3Personal: 7,
|
|
49358
|
+
/**
|
|
49359
|
+
* Indicates Android Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2. Must use AndroidWorkProfileEnterpriseWifiConfiguration type to configure enterprise options.
|
|
49360
|
+
*/
|
|
49361
|
+
wpa3Enterprise: 8,
|
|
49317
49362
|
}
|
|
49318
49363
|
|
|
49319
49364
|
/**
|
|
@@ -49470,7 +49515,6 @@ namespace reference.`microsoft.graph` {
|
|
|
49470
49515
|
/**
|
|
49471
49516
|
* Wi-Fi Security Types for AOSP Device Owner.
|
|
49472
49517
|
*/
|
|
49473
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
49474
49518
|
enum aospDeviceOwnerWiFiSecurityType {
|
|
49475
49519
|
/**
|
|
49476
49520
|
* Open (No Authentication).
|
|
@@ -49488,6 +49532,23 @@ namespace reference.`microsoft.graph` {
|
|
|
49488
49532
|
* WPA-Enterprise/WPA2-Enterprise. Must use AOSPDeviceOwnerEnterpriseWifiConfiguration type to configure enterprise options.
|
|
49489
49533
|
*/
|
|
49490
49534
|
wpaEnterprise: 4,
|
|
49535
|
+
unknownFutureValue: 5,
|
|
49536
|
+
/**
|
|
49537
|
+
* Indicates the Wi-Fi Security Type is set to WPA2. If supported by the platform, the device will attempt WPA3 first and will fall back to WPA2 if necessary.
|
|
49538
|
+
*/
|
|
49539
|
+
wpa2Personal: 6,
|
|
49540
|
+
/**
|
|
49541
|
+
* Indicates the Wi-Fi Security Type is set to WPA2. If supported by the platform, the device will attempt WPA3 first and will fall back to WPA2 if necessary. Must use AOSPDeviceOwnerEnterpriseWifiConfiguration type to configure enterprise options.
|
|
49542
|
+
*/
|
|
49543
|
+
wpa2Enterprise: 7,
|
|
49544
|
+
/**
|
|
49545
|
+
* Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2.
|
|
49546
|
+
*/
|
|
49547
|
+
wpa3Personal: 8,
|
|
49548
|
+
/**
|
|
49549
|
+
* Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2. Must use AOSPDeviceOwnerEnterpriseWifiConfiguration type to configure enterprise options.
|
|
49550
|
+
*/
|
|
49551
|
+
wpa3Enterprise: 9,
|
|
49491
49552
|
}
|
|
49492
49553
|
|
|
49493
49554
|
/**
|
|
@@ -58688,6 +58749,25 @@ namespace reference.`microsoft.graph` {
|
|
|
58688
58749
|
alphanumericAndSymbol: 1,
|
|
58689
58750
|
}
|
|
58690
58751
|
|
|
58752
|
+
/**
|
|
58753
|
+
* Specifies whether Microsoft Purview Data Loss Prevention (DLP) content evaluation is required before data sharing.
|
|
58754
|
+
*/
|
|
58755
|
+
enum managedAppPurviewEvaluationRequirement {
|
|
58756
|
+
/**
|
|
58757
|
+
* Microsoft Purview Data Loss Prevention (DLP) content evaluation is not required.
|
|
58758
|
+
*/
|
|
58759
|
+
notRequired: 0,
|
|
58760
|
+
/**
|
|
58761
|
+
* Microsoft Purview Data Loss Prevention (DLP) content evaluation is required when online; sharing is allowed if the service is unreachable.
|
|
58762
|
+
*/
|
|
58763
|
+
requiredWhenOnline: 1,
|
|
58764
|
+
/**
|
|
58765
|
+
* Microsoft Purview Data Loss Prevention (DLP) content evaluation is always required; sharing is blocked if the service is unreachable.
|
|
58766
|
+
*/
|
|
58767
|
+
required: 2,
|
|
58768
|
+
unknownFutureValue: 3,
|
|
58769
|
+
}
|
|
58770
|
+
|
|
58691
58771
|
/**
|
|
58692
58772
|
* An admin initiated action to be applied on a managed app.
|
|
58693
58773
|
*/
|
|
@@ -60180,6 +60260,18 @@ namespace reference.`microsoft.graph` {
|
|
|
60180
60260
|
* Default. Indicates that the configured policy type is unknown. Not a valid policy type in an OperationApprovalPolicy.
|
|
60181
60261
|
*/
|
|
60182
60262
|
`unknown`: 0,
|
|
60263
|
+
/**
|
|
60264
|
+
* Indicates that the configured policy type is for a Device Wipe Action.
|
|
60265
|
+
*/
|
|
60266
|
+
deviceWipe: 2,
|
|
60267
|
+
/**
|
|
60268
|
+
* Indicates that the configured policy type is for a Device Retire Action
|
|
60269
|
+
*/
|
|
60270
|
+
deviceRetire: 3,
|
|
60271
|
+
/**
|
|
60272
|
+
* Indicates that the configured policy type is for a Device Delete Action.
|
|
60273
|
+
*/
|
|
60274
|
+
deviceDelete: 5,
|
|
60183
60275
|
/**
|
|
60184
60276
|
* Indicates that the configured policy type is an application type, such as mobile apps or built-in apps.
|
|
60185
60277
|
*/
|
|
@@ -60193,6 +60285,10 @@ namespace reference.`microsoft.graph` {
|
|
|
60193
60285
|
*/
|
|
60194
60286
|
role: 18,
|
|
60195
60287
|
unknownFutureValue: 21,
|
|
60288
|
+
/**
|
|
60289
|
+
* Indicates that the configured policy type is for Tenant Configuration operations.
|
|
60290
|
+
*/
|
|
60291
|
+
tenantConfiguration: 28,
|
|
60196
60292
|
}
|
|
60197
60293
|
|
|
60198
60294
|
/**
|
|
@@ -64689,6 +64785,10 @@ namespace reference.`microsoft.graph` {
|
|
|
64689
64785
|
* Indicates Wi-Fi security type is associated with WPA3-Personal. Provides stronger encryption using Simultaneous Authentication of Equals (SAE).
|
|
64690
64786
|
*/
|
|
64691
64787
|
wpa3Personal: 7,
|
|
64788
|
+
/**
|
|
64789
|
+
* Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2. Must use WindowsWifiEnterpriseEAPConfiguration type to configure enterprise options.
|
|
64790
|
+
*/
|
|
64791
|
+
wpa3Enterprise: 8,
|
|
64692
64792
|
}
|
|
64693
64793
|
|
|
64694
64794
|
/**
|
|
@@ -64820,6 +64920,29 @@ namespace reference.`microsoft.graph` {
|
|
|
64820
64920
|
unknownFutureValue: 9,
|
|
64821
64921
|
}
|
|
64822
64922
|
|
|
64923
|
+
/**
|
|
64924
|
+
* Indicates whether app-in-use detection is enabled before app enforcement, and if enabled, the action to take when the app is detected to be in-use.
|
|
64925
|
+
*/
|
|
64926
|
+
enum win32LobAppInUseActionType {
|
|
64927
|
+
/**
|
|
64928
|
+
* Default. Indicates that no in-use detection will be evaluated before an app enforcement.
|
|
64929
|
+
*/
|
|
64930
|
+
notEnabled: 0,
|
|
64931
|
+
/**
|
|
64932
|
+
* Indicates that the in-use detection will occur immediately before app enforcement. Enforcement will not occur if the app is detected to be in-use, and an error status will be reported for the app.
|
|
64933
|
+
*/
|
|
64934
|
+
fail: 1,
|
|
64935
|
+
/**
|
|
64936
|
+
* Indicates that in-use detection will occur immediately before app enforcement. If the app is detected to be in-use, the processes specified in the corresponding process detection rules will be terminated, and app enforcement will commence.
|
|
64937
|
+
*/
|
|
64938
|
+
terminateWithoutUserInteraction: 2,
|
|
64939
|
+
/**
|
|
64940
|
+
* Indicates that in-use detection will occur immediately before app enforcement. If the app is detected to be in-use, the end user will be prompted according to the configured deferral and countdown settings, and the processes specified in the corresponding process detection rules will be terminated before app enforcement is commenced. If any of the processes cannot be terminated, the app will not be enforced, and an error status will be reported for the app.
|
|
64941
|
+
*/
|
|
64942
|
+
terminateWithUserInteraction: 3,
|
|
64943
|
+
unknownFutureValue: 4,
|
|
64944
|
+
}
|
|
64945
|
+
|
|
64823
64946
|
/**
|
|
64824
64947
|
* Indicates the package type of an MSI Win32LobApp.
|
|
64825
64948
|
*/
|
|
@@ -64928,6 +65051,21 @@ namespace reference.`microsoft.graph` {
|
|
|
64928
65051
|
`boolean`: 6,
|
|
64929
65052
|
}
|
|
64930
65053
|
|
|
65054
|
+
/**
|
|
65055
|
+
* A list of possible operations for rules used to make determinations about whether an application is in-use based on process state.
|
|
65056
|
+
*/
|
|
65057
|
+
enum win32LobAppProcessOperationType {
|
|
65058
|
+
/**
|
|
65059
|
+
* Default. Not configured.
|
|
65060
|
+
*/
|
|
65061
|
+
notConfigured: 0,
|
|
65062
|
+
/**
|
|
65063
|
+
* Indicates that the rule evaluates whether the specified process exists (is running) on the device.
|
|
65064
|
+
*/
|
|
65065
|
+
exists: 1,
|
|
65066
|
+
unknownFutureValue: 2,
|
|
65067
|
+
}
|
|
65068
|
+
|
|
64931
65069
|
/**
|
|
64932
65070
|
* Contains all supported registry data detection type.
|
|
64933
65071
|
*/
|
|
@@ -65082,7 +65220,6 @@ namespace reference.`microsoft.graph` {
|
|
|
65082
65220
|
/**
|
|
65083
65221
|
* Contains rule types for Win32 LOB apps.
|
|
65084
65222
|
*/
|
|
65085
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
65086
65223
|
enum win32LobAppRuleType {
|
|
65087
65224
|
/**
|
|
65088
65225
|
* Detection rule.
|
|
@@ -65092,6 +65229,11 @@ namespace reference.`microsoft.graph` {
|
|
|
65092
65229
|
* Requirement rule.
|
|
65093
65230
|
*/
|
|
65094
65231
|
requirement: 1,
|
|
65232
|
+
/**
|
|
65233
|
+
* Indicates that the associated rule represents an executable for app in-use detection.
|
|
65234
|
+
*/
|
|
65235
|
+
inUse: 2,
|
|
65236
|
+
unknownFutureValue: 3,
|
|
65095
65237
|
}
|
|
65096
65238
|
|
|
65097
65239
|
/**
|
|
@@ -67374,6 +67516,17 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67374
67516
|
triggerAttributes: triggerAttribute[];
|
|
67375
67517
|
}
|
|
67376
67518
|
|
|
67519
|
+
@complex model attributeSetEntry {
|
|
67520
|
+
name: string;
|
|
67521
|
+
value: string | null;
|
|
67522
|
+
}
|
|
67523
|
+
|
|
67524
|
+
@complex model awaitedWorkflowProcessingResult {
|
|
67525
|
+
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
67526
|
+
statusReasons: string[];
|
|
67527
|
+
subject: workflowSubject | null;
|
|
67528
|
+
}
|
|
67529
|
+
|
|
67377
67530
|
@complex model customTaskExtensionCallbackConfiguration extends reference.`microsoft.graph`.customExtensionCallbackConfiguration {
|
|
67378
67531
|
@references authorizedApps: reference.`microsoft.graph`.application[];
|
|
67379
67532
|
}
|
|
@@ -67383,12 +67536,19 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67383
67536
|
}
|
|
67384
67537
|
|
|
67385
67538
|
@complex model customTaskExtensionCalloutData extends reference.`microsoft.graph`.customExtensionData {
|
|
67539
|
+
targetSubject: workflowSubject | null;
|
|
67386
67540
|
@references subject: reference.`microsoft.graph`.user | null;
|
|
67387
67541
|
@references task: task | null;
|
|
67388
67542
|
@references taskProcessingresult: taskProcessingResult | null;
|
|
67389
67543
|
@references workflow: workflow | null;
|
|
67390
67544
|
}
|
|
67391
67545
|
|
|
67546
|
+
@complex model customTaskExtensionResponseData extends reference.`microsoft.graph`.customExtensionData {
|
|
67547
|
+
operationStatus: customTaskExtensionOperationStatus;
|
|
67548
|
+
statusReasons: string[];
|
|
67549
|
+
targetSubject: workflowSubject | null;
|
|
67550
|
+
}
|
|
67551
|
+
|
|
67392
67552
|
@complex model groupBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
67393
67553
|
@references groups: reference.`microsoft.graph`.group[];
|
|
67394
67554
|
}
|
|
@@ -67413,6 +67573,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67413
67573
|
taskId: string;
|
|
67414
67574
|
}
|
|
67415
67575
|
|
|
67576
|
+
@complex model provisioningAttributeMapping extends workflowExecutionConditions {
|
|
67577
|
+
}
|
|
67578
|
+
|
|
67579
|
+
@complex model provisioningObjectWorkflowSubject extends workflowSubject {
|
|
67580
|
+
attributeSetEntries: attributeSetEntry[];
|
|
67581
|
+
id: string;
|
|
67582
|
+
}
|
|
67583
|
+
|
|
67416
67584
|
@complex model ruleBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
67417
67585
|
rule: string;
|
|
67418
67586
|
}
|
|
@@ -67523,10 +67691,15 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67523
67691
|
totalUsers: int32;
|
|
67524
67692
|
}
|
|
67525
67693
|
|
|
67694
|
+
@abstract
|
|
67695
|
+
@complex model workflowSubject {
|
|
67696
|
+
}
|
|
67697
|
+
|
|
67526
67698
|
@entity model customTaskExtension extends reference.`microsoft.graph`.customCalloutExtension {
|
|
67527
67699
|
callbackConfiguration: reference.`microsoft.graph`.customExtensionCallbackConfiguration | null;
|
|
67528
67700
|
@computed createdDateTime: offsetDateTime | null;
|
|
67529
67701
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
67702
|
+
replyMode: customTaskExtensionReplyMode;
|
|
67530
67703
|
@references createdBy: reference.`microsoft.graph`.user | null;
|
|
67531
67704
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
67532
67705
|
}
|
|
@@ -67564,10 +67737,26 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67564
67737
|
totalUsersCount: int32;
|
|
67565
67738
|
workflowExecutionType: workflowExecutionType;
|
|
67566
67739
|
@references reprocessedRuns: run[];
|
|
67740
|
+
@contains subjectProcessingResults: subjectProcessingResult[];
|
|
67567
67741
|
@contains taskProcessingResults: taskProcessingResult[];
|
|
67568
67742
|
@contains userProcessingResults: userProcessingResult[];
|
|
67569
67743
|
}
|
|
67570
67744
|
|
|
67745
|
+
@entity model subjectProcessingResult extends reference.`microsoft.graph`.entity {
|
|
67746
|
+
completedDateTime: offsetDateTime | null;
|
|
67747
|
+
failedTasksCount: int32;
|
|
67748
|
+
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
67749
|
+
scheduledDateTime: offsetDateTime;
|
|
67750
|
+
startedDateTime: offsetDateTime | null;
|
|
67751
|
+
subject: workflowSubject;
|
|
67752
|
+
totalTasksCount: int32;
|
|
67753
|
+
totalUnprocessedTasksCount: int32;
|
|
67754
|
+
workflowExecutionType: workflowExecutionType;
|
|
67755
|
+
workflowVersion: int32;
|
|
67756
|
+
@references reprocessedRuns: run[];
|
|
67757
|
+
@contains taskProcessingResults: taskProcessingResult[];
|
|
67758
|
+
}
|
|
67759
|
+
|
|
67571
67760
|
@entity model task extends reference.`microsoft.graph`.entity {
|
|
67572
67761
|
arguments: reference.`microsoft.graph`.keyValuePair[];
|
|
67573
67762
|
category: lifecycleTaskCategory;
|
|
@@ -67595,6 +67784,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67595
67784
|
failureReason: string | null;
|
|
67596
67785
|
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
67597
67786
|
startedDateTime: offsetDateTime | null;
|
|
67787
|
+
workflowSubject: workflowSubject | null;
|
|
67598
67788
|
@references subject: reference.`microsoft.graph`.user;
|
|
67599
67789
|
@references task: task;
|
|
67600
67790
|
}
|
|
@@ -67639,6 +67829,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67639
67829
|
@privatePreview("organizationalUnit")
|
|
67640
67830
|
@references previewScope: reference.`microsoft.graph`.directoryObject[];
|
|
67641
67831
|
@contains runs: run[];
|
|
67832
|
+
@contains subjectProcessingResults: subjectProcessingResult[];
|
|
67642
67833
|
@contains taskReports: taskReport[];
|
|
67643
67834
|
@contains userProcessingResults: userProcessingResult[];
|
|
67644
67835
|
@contains versions: workflowVersion[];
|
|
@@ -67690,12 +67881,20 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67690
67881
|
unknownFutureValue: 2,
|
|
67691
67882
|
}
|
|
67692
67883
|
|
|
67884
|
+
enum customTaskExtensionReplyMode {
|
|
67885
|
+
none: 0,
|
|
67886
|
+
callback: 1,
|
|
67887
|
+
response: 2,
|
|
67888
|
+
unknownFutureValue: 3,
|
|
67889
|
+
}
|
|
67890
|
+
|
|
67693
67891
|
@graphFlags
|
|
67694
67892
|
enum lifecycleTaskCategory {
|
|
67695
67893
|
joiner: 1,
|
|
67696
67894
|
leaver: 2,
|
|
67697
67895
|
unknownFutureValue: 4,
|
|
67698
67896
|
mover: 8,
|
|
67897
|
+
extensibility: 16,
|
|
67699
67898
|
}
|
|
67700
67899
|
|
|
67701
67900
|
enum lifecycleWorkflowCategory {
|
|
@@ -67703,6 +67902,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67703
67902
|
leaver: 1,
|
|
67704
67903
|
unknownFutureValue: 2,
|
|
67705
67904
|
mover: 3,
|
|
67905
|
+
extensibility: 4,
|
|
67706
67906
|
}
|
|
67707
67907
|
|
|
67708
67908
|
enum lifecycleWorkflowProcessingStatus {
|
|
@@ -67736,6 +67936,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67736
67936
|
activatedWithScope: 3,
|
|
67737
67937
|
@privatePreview("organizationalUnit")
|
|
67738
67938
|
preview: 4,
|
|
67939
|
+
extensibilityOnDemand: 5,
|
|
67739
67940
|
}
|
|
67740
67941
|
|
|
67741
67942
|
enum workflowTriggerTimeBasedAttribute {
|
|
@@ -9786,6 +9786,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9786
9786
|
membershipRule: string | null;
|
|
9787
9787
|
membershipRuleProcessingState: string | null;
|
|
9788
9788
|
onPremisesDomainName: string | null;
|
|
9789
|
+
onPremisesExtensionAttributes: onPremisesExtensionAttributes | null;
|
|
9789
9790
|
onPremisesLastSyncDateTime: offsetDateTime | null;
|
|
9790
9791
|
onPremisesNetBiosName: string | null;
|
|
9791
9792
|
onPremisesProvisioningErrors: onPremisesProvisioningError[] | null;
|
|
@@ -13123,6 +13124,7 @@ namespace reference.`microsoft.graph` {
|
|
|
13123
13124
|
@entity model profileCardProperty extends entity {
|
|
13124
13125
|
annotations: profileCardAnnotation[] | null;
|
|
13125
13126
|
directoryPropertyName: string | null;
|
|
13127
|
+
isVisible: boolean;
|
|
13126
13128
|
}
|
|
13127
13129
|
|
|
13128
13130
|
@entity model profilePhoto extends entity {
|