@microsoft/typespec-msgraph-reference 1.0.4 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.rush/temp/package-deps_build.json +18 -18
- package/CHANGELOG.md +18 -0
- package/lib/Bleu/Beta/main.tsp +310 -7
- package/lib/Bleu/V1.0/main.tsp +430 -1
- package/lib/Delos/Beta/main.tsp +4284 -23
- package/lib/Delos/V1.0/main.tsp +2815 -22
- package/lib/Fairfax/Beta/main.tsp +627 -23
- package/lib/Fairfax/V1.0/main.tsp +61 -1
- package/lib/GovSG/Beta/main.tsp +1 -0
- package/lib/GovSG/V1.0/main.tsp +3 -1
- package/lib/Mooncake/Beta/main.tsp +269 -7
- package/lib/Mooncake/V1.0/main.tsp +60 -1
- package/lib/Prod/Beta/main.tsp +1695 -75
- package/lib/Prod/V1.0/main.tsp +4171 -167
- package/lib/USNat/Beta/main.tsp +576 -0
- package/lib/USNat/V1.0/main.tsp +465 -1
- package/lib/USSec/Beta/main.tsp +576 -0
- package/lib/USSec/V1.0/main.tsp +465 -1
- package/package.json +2 -2
|
@@ -2929,6 +2929,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2929
2929
|
@complex model customAppScopeAttributesDictionary extends Dictionary {
|
|
2930
2930
|
}
|
|
2931
2931
|
|
|
2932
|
+
@open
|
|
2933
|
+
@complex model customEmojiFromIdentitySet extends identitySet {
|
|
2934
|
+
}
|
|
2935
|
+
|
|
2932
2936
|
@abstract
|
|
2933
2937
|
@complex model customExtensionAuthenticationConfiguration {
|
|
2934
2938
|
}
|
|
@@ -9448,6 +9452,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9448
9452
|
}
|
|
9449
9453
|
|
|
9450
9454
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
9455
|
+
allowOnPremUpdateOfOnPremisesObjectIdentifierEnabled: boolean | null;
|
|
9451
9456
|
blockCloudObjectTakeoverThroughHardMatchEnabled: boolean | null;
|
|
9452
9457
|
blockSoftMatchEnabled: boolean | null;
|
|
9453
9458
|
bypassDirSyncOverridesEnabled: boolean | null;
|
|
@@ -12966,6 +12971,10 @@ namespace reference.`microsoft.graph` {
|
|
|
12966
12971
|
* Device restart behavior.
|
|
12967
12972
|
*/
|
|
12968
12973
|
deviceRestartBehavior: win32LobAppRestartBehavior;
|
|
12974
|
+
/**
|
|
12975
|
+
* 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'.
|
|
12976
|
+
*/
|
|
12977
|
+
inUseBehavior: win32LobAppInUseActionType | null;
|
|
12969
12978
|
/**
|
|
12970
12979
|
* The number of minutes the system will wait for install program to finish. Default value is 60 minutes.
|
|
12971
12980
|
*/
|
|
@@ -13096,6 +13105,24 @@ namespace reference.`microsoft.graph` {
|
|
|
13096
13105
|
scriptContent: string | null;
|
|
13097
13106
|
}
|
|
13098
13107
|
|
|
13108
|
+
/**
|
|
13109
|
+
* A complex type to store process rule data for a Win32 LOB app.
|
|
13110
|
+
*/
|
|
13111
|
+
@complex model win32LobAppProcessRule extends win32LobAppRule {
|
|
13112
|
+
/**
|
|
13113
|
+
* Indicates the process operation type. Default value is 'notConfigured'. Possible values are: 'notConfigured', 'exists'.
|
|
13114
|
+
*/
|
|
13115
|
+
operationType: win32LobAppProcessOperationType;
|
|
13116
|
+
/**
|
|
13117
|
+
* Indicates the display name for the process in the Intune admin console. Example: 'Microsoft Word'.
|
|
13118
|
+
*/
|
|
13119
|
+
processDisplayName: string | null;
|
|
13120
|
+
/**
|
|
13121
|
+
* Indicates the process name to be searched for on a managed device when enforcing a managed app. Example: 'TestApp.exe'.
|
|
13122
|
+
*/
|
|
13123
|
+
processName: string | null;
|
|
13124
|
+
}
|
|
13125
|
+
|
|
13099
13126
|
/**
|
|
13100
13127
|
* Contains product code and version properties to detect a Win32 App
|
|
13101
13128
|
*/
|
|
@@ -23025,7 +23052,7 @@ namespace reference.`microsoft.graph` {
|
|
|
23025
23052
|
*/
|
|
23026
23053
|
roleScopeTagIds: string[] | null;
|
|
23027
23054
|
/**
|
|
23028
|
-
*
|
|
23055
|
+
* 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
23056
|
*/
|
|
23030
23057
|
runAs32Bit: boolean;
|
|
23031
23058
|
/**
|
|
@@ -24241,9 +24268,6 @@ namespace reference.`microsoft.graph` {
|
|
|
24241
24268
|
status: appLogUploadState;
|
|
24242
24269
|
}
|
|
24243
24270
|
|
|
24244
|
-
/**
|
|
24245
|
-
* Singleton that acts as container for a collection of Resource Access entities.
|
|
24246
|
-
*/
|
|
24247
24271
|
@entity model deviceManagement extends entity {
|
|
24248
24272
|
/**
|
|
24249
24273
|
* The date & time when tenant data moved between scaleunits.
|
|
@@ -24705,6 +24729,9 @@ namespace reference.`microsoft.graph` {
|
|
|
24705
24729
|
* The remote assistance settings singleton
|
|
24706
24730
|
*/
|
|
24707
24731
|
@contains remoteAssistanceSettings: remoteAssistanceSettings | null;
|
|
24732
|
+
/**
|
|
24733
|
+
* Reports singleton
|
|
24734
|
+
*/
|
|
24708
24735
|
@contains reports: deviceManagementReports | null;
|
|
24709
24736
|
/**
|
|
24710
24737
|
* Collection of resource access settings associated with account.
|
|
@@ -26194,6 +26221,9 @@ namespace reference.`microsoft.graph` {
|
|
|
26194
26221
|
whenPartnerDevicesWillBeRemovedDateTime: offsetDateTime | null;
|
|
26195
26222
|
}
|
|
26196
26223
|
|
|
26224
|
+
/**
|
|
26225
|
+
* Singleton entity that acts as a container for all reports functionality.
|
|
26226
|
+
*/
|
|
26197
26227
|
@entity model deviceManagementReports extends entity {
|
|
26198
26228
|
/**
|
|
26199
26229
|
* Entity representing the configuration of a cached report.
|
|
@@ -30585,7 +30615,7 @@ namespace reference.`microsoft.graph` {
|
|
|
30585
30615
|
}
|
|
30586
30616
|
|
|
30587
30617
|
/**
|
|
30588
|
-
* A class containing the properties used for iOS
|
|
30618
|
+
* A class containing the properties used for iOS lob app provisioning configuration PolicySetItem.
|
|
30589
30619
|
*/
|
|
30590
30620
|
@entity model iosLobAppProvisioningConfigurationPolicySetItem extends policySetItem {
|
|
30591
30621
|
}
|
|
@@ -33280,6 +33310,10 @@ namespace reference.`microsoft.graph` {
|
|
|
33280
33310
|
* Defines how app messaging redirection is protected by an App Protection Policy. Default is anyApp.
|
|
33281
33311
|
*/
|
|
33282
33312
|
protectedMessagingRedirectAppType: messagingRedirectAppType;
|
|
33313
|
+
/**
|
|
33314
|
+
* 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.
|
|
33315
|
+
*/
|
|
33316
|
+
purviewContentEvaluationRequired: managedAppPurviewEvaluationRequirement;
|
|
33283
33317
|
/**
|
|
33284
33318
|
* Indicates whether users may use the "Save As" menu item to save a copy of protected files.
|
|
33285
33319
|
*/
|
|
@@ -38642,6 +38676,7 @@ namespace reference.`microsoft.graph` {
|
|
|
38642
38676
|
@contains deletedChats: deletedChat[];
|
|
38643
38677
|
@contains deletedTeams: deletedTeam[];
|
|
38644
38678
|
@contains devices: teamworkDevice[];
|
|
38679
|
+
@contains messaging: teamworkMessaging | null;
|
|
38645
38680
|
@contains teamsAppSettings: teamsAppSettings | null;
|
|
38646
38681
|
@contains teamTemplates: teamTemplate[];
|
|
38647
38682
|
}
|
|
@@ -38649,6 +38684,13 @@ namespace reference.`microsoft.graph` {
|
|
|
38649
38684
|
@entity model teamworkBot extends entity {
|
|
38650
38685
|
}
|
|
38651
38686
|
|
|
38687
|
+
@entity model teamworkCustomEmoji extends MsGraph.SharedModels.entity {
|
|
38688
|
+
contentBytes: string | null;
|
|
38689
|
+
createdBy: customEmojiFromIdentitySet;
|
|
38690
|
+
@computed createdDateTime: offsetDateTime;
|
|
38691
|
+
@computed @key displayName: string;
|
|
38692
|
+
}
|
|
38693
|
+
|
|
38652
38694
|
@entity model teamworkDevice extends entity {
|
|
38653
38695
|
activityState: teamworkDeviceActivityState | null;
|
|
38654
38696
|
companyAssetTag: string | null;
|
|
@@ -38719,6 +38761,10 @@ namespace reference.`microsoft.graph` {
|
|
|
38719
38761
|
contentType: string | null;
|
|
38720
38762
|
}
|
|
38721
38763
|
|
|
38764
|
+
@entity model teamworkMessaging extends entity {
|
|
38765
|
+
@contains customEmojis: teamworkCustomEmoji[];
|
|
38766
|
+
}
|
|
38767
|
+
|
|
38722
38768
|
@entity model teamworkPeripheral extends entity {
|
|
38723
38769
|
displayName: string | null;
|
|
38724
38770
|
productId: string | null;
|
|
@@ -38987,6 +39033,7 @@ namespace reference.`microsoft.graph` {
|
|
|
38987
39033
|
condition: string | null;
|
|
38988
39034
|
directoryScopeId: string | null;
|
|
38989
39035
|
principalId: string | null;
|
|
39036
|
+
principalOrganizationId: string | null;
|
|
38990
39037
|
resourceScope: string | null;
|
|
38991
39038
|
roleDefinitionId: string | null;
|
|
38992
39039
|
@contains appScope: appScope | null;
|
|
@@ -49314,6 +49361,18 @@ namespace reference.`microsoft.graph` {
|
|
|
49314
49361
|
*/
|
|
49315
49362
|
wpaPersonal: 4,
|
|
49316
49363
|
unknownFutureValue: 5,
|
|
49364
|
+
/**
|
|
49365
|
+
* 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.
|
|
49366
|
+
*/
|
|
49367
|
+
wpa2Personal: 6,
|
|
49368
|
+
/**
|
|
49369
|
+
* 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.
|
|
49370
|
+
*/
|
|
49371
|
+
wpa3Personal: 7,
|
|
49372
|
+
/**
|
|
49373
|
+
* 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.
|
|
49374
|
+
*/
|
|
49375
|
+
wpa3Enterprise: 8,
|
|
49317
49376
|
}
|
|
49318
49377
|
|
|
49319
49378
|
/**
|
|
@@ -49470,7 +49529,6 @@ namespace reference.`microsoft.graph` {
|
|
|
49470
49529
|
/**
|
|
49471
49530
|
* Wi-Fi Security Types for AOSP Device Owner.
|
|
49472
49531
|
*/
|
|
49473
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
49474
49532
|
enum aospDeviceOwnerWiFiSecurityType {
|
|
49475
49533
|
/**
|
|
49476
49534
|
* Open (No Authentication).
|
|
@@ -49488,6 +49546,23 @@ namespace reference.`microsoft.graph` {
|
|
|
49488
49546
|
* WPA-Enterprise/WPA2-Enterprise. Must use AOSPDeviceOwnerEnterpriseWifiConfiguration type to configure enterprise options.
|
|
49489
49547
|
*/
|
|
49490
49548
|
wpaEnterprise: 4,
|
|
49549
|
+
unknownFutureValue: 5,
|
|
49550
|
+
/**
|
|
49551
|
+
* 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.
|
|
49552
|
+
*/
|
|
49553
|
+
wpa2Personal: 6,
|
|
49554
|
+
/**
|
|
49555
|
+
* 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.
|
|
49556
|
+
*/
|
|
49557
|
+
wpa2Enterprise: 7,
|
|
49558
|
+
/**
|
|
49559
|
+
* Indicates the Wi-Fi Security Type is set to WPA3. The device will not fall back to WPA2.
|
|
49560
|
+
*/
|
|
49561
|
+
wpa3Personal: 8,
|
|
49562
|
+
/**
|
|
49563
|
+
* 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.
|
|
49564
|
+
*/
|
|
49565
|
+
wpa3Enterprise: 9,
|
|
49491
49566
|
}
|
|
49492
49567
|
|
|
49493
49568
|
/**
|
|
@@ -58688,6 +58763,25 @@ namespace reference.`microsoft.graph` {
|
|
|
58688
58763
|
alphanumericAndSymbol: 1,
|
|
58689
58764
|
}
|
|
58690
58765
|
|
|
58766
|
+
/**
|
|
58767
|
+
* Specifies whether Microsoft Purview Data Loss Prevention (DLP) content evaluation is required before data sharing.
|
|
58768
|
+
*/
|
|
58769
|
+
enum managedAppPurviewEvaluationRequirement {
|
|
58770
|
+
/**
|
|
58771
|
+
* Microsoft Purview Data Loss Prevention (DLP) content evaluation is not required.
|
|
58772
|
+
*/
|
|
58773
|
+
notRequired: 0,
|
|
58774
|
+
/**
|
|
58775
|
+
* Microsoft Purview Data Loss Prevention (DLP) content evaluation is required when online; sharing is allowed if the service is unreachable.
|
|
58776
|
+
*/
|
|
58777
|
+
requiredWhenOnline: 1,
|
|
58778
|
+
/**
|
|
58779
|
+
* Microsoft Purview Data Loss Prevention (DLP) content evaluation is always required; sharing is blocked if the service is unreachable.
|
|
58780
|
+
*/
|
|
58781
|
+
required: 2,
|
|
58782
|
+
unknownFutureValue: 3,
|
|
58783
|
+
}
|
|
58784
|
+
|
|
58691
58785
|
/**
|
|
58692
58786
|
* An admin initiated action to be applied on a managed app.
|
|
58693
58787
|
*/
|
|
@@ -60180,6 +60274,18 @@ namespace reference.`microsoft.graph` {
|
|
|
60180
60274
|
* Default. Indicates that the configured policy type is unknown. Not a valid policy type in an OperationApprovalPolicy.
|
|
60181
60275
|
*/
|
|
60182
60276
|
`unknown`: 0,
|
|
60277
|
+
/**
|
|
60278
|
+
* Indicates that the configured policy type is for a Device Wipe Action.
|
|
60279
|
+
*/
|
|
60280
|
+
deviceWipe: 2,
|
|
60281
|
+
/**
|
|
60282
|
+
* Indicates that the configured policy type is for a Device Retire Action
|
|
60283
|
+
*/
|
|
60284
|
+
deviceRetire: 3,
|
|
60285
|
+
/**
|
|
60286
|
+
* Indicates that the configured policy type is for a Device Delete Action.
|
|
60287
|
+
*/
|
|
60288
|
+
deviceDelete: 5,
|
|
60183
60289
|
/**
|
|
60184
60290
|
* Indicates that the configured policy type is an application type, such as mobile apps or built-in apps.
|
|
60185
60291
|
*/
|
|
@@ -60193,6 +60299,10 @@ namespace reference.`microsoft.graph` {
|
|
|
60193
60299
|
*/
|
|
60194
60300
|
role: 18,
|
|
60195
60301
|
unknownFutureValue: 21,
|
|
60302
|
+
/**
|
|
60303
|
+
* Indicates that the configured policy type is for Tenant Configuration operations.
|
|
60304
|
+
*/
|
|
60305
|
+
tenantConfiguration: 28,
|
|
60196
60306
|
}
|
|
60197
60307
|
|
|
60198
60308
|
/**
|
|
@@ -64689,6 +64799,10 @@ namespace reference.`microsoft.graph` {
|
|
|
64689
64799
|
* Indicates Wi-Fi security type is associated with WPA3-Personal. Provides stronger encryption using Simultaneous Authentication of Equals (SAE).
|
|
64690
64800
|
*/
|
|
64691
64801
|
wpa3Personal: 7,
|
|
64802
|
+
/**
|
|
64803
|
+
* 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.
|
|
64804
|
+
*/
|
|
64805
|
+
wpa3Enterprise: 8,
|
|
64692
64806
|
}
|
|
64693
64807
|
|
|
64694
64808
|
/**
|
|
@@ -64820,6 +64934,29 @@ namespace reference.`microsoft.graph` {
|
|
|
64820
64934
|
unknownFutureValue: 9,
|
|
64821
64935
|
}
|
|
64822
64936
|
|
|
64937
|
+
/**
|
|
64938
|
+
* 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.
|
|
64939
|
+
*/
|
|
64940
|
+
enum win32LobAppInUseActionType {
|
|
64941
|
+
/**
|
|
64942
|
+
* Default. Indicates that no in-use detection will be evaluated before an app enforcement.
|
|
64943
|
+
*/
|
|
64944
|
+
notEnabled: 0,
|
|
64945
|
+
/**
|
|
64946
|
+
* 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.
|
|
64947
|
+
*/
|
|
64948
|
+
fail: 1,
|
|
64949
|
+
/**
|
|
64950
|
+
* 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.
|
|
64951
|
+
*/
|
|
64952
|
+
terminateWithoutUserInteraction: 2,
|
|
64953
|
+
/**
|
|
64954
|
+
* 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.
|
|
64955
|
+
*/
|
|
64956
|
+
terminateWithUserInteraction: 3,
|
|
64957
|
+
unknownFutureValue: 4,
|
|
64958
|
+
}
|
|
64959
|
+
|
|
64823
64960
|
/**
|
|
64824
64961
|
* Indicates the package type of an MSI Win32LobApp.
|
|
64825
64962
|
*/
|
|
@@ -64928,6 +65065,21 @@ namespace reference.`microsoft.graph` {
|
|
|
64928
65065
|
`boolean`: 6,
|
|
64929
65066
|
}
|
|
64930
65067
|
|
|
65068
|
+
/**
|
|
65069
|
+
* A list of possible operations for rules used to make determinations about whether an application is in-use based on process state.
|
|
65070
|
+
*/
|
|
65071
|
+
enum win32LobAppProcessOperationType {
|
|
65072
|
+
/**
|
|
65073
|
+
* Default. Not configured.
|
|
65074
|
+
*/
|
|
65075
|
+
notConfigured: 0,
|
|
65076
|
+
/**
|
|
65077
|
+
* Indicates that the rule evaluates whether the specified process exists (is running) on the device.
|
|
65078
|
+
*/
|
|
65079
|
+
exists: 1,
|
|
65080
|
+
unknownFutureValue: 2,
|
|
65081
|
+
}
|
|
65082
|
+
|
|
64931
65083
|
/**
|
|
64932
65084
|
* Contains all supported registry data detection type.
|
|
64933
65085
|
*/
|
|
@@ -65082,7 +65234,6 @@ namespace reference.`microsoft.graph` {
|
|
|
65082
65234
|
/**
|
|
65083
65235
|
* Contains rule types for Win32 LOB apps.
|
|
65084
65236
|
*/
|
|
65085
|
-
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
65086
65237
|
enum win32LobAppRuleType {
|
|
65087
65238
|
/**
|
|
65088
65239
|
* Detection rule.
|
|
@@ -65092,6 +65243,11 @@ namespace reference.`microsoft.graph` {
|
|
|
65092
65243
|
* Requirement rule.
|
|
65093
65244
|
*/
|
|
65094
65245
|
requirement: 1,
|
|
65246
|
+
/**
|
|
65247
|
+
* Indicates that the associated rule represents an executable for app in-use detection.
|
|
65248
|
+
*/
|
|
65249
|
+
inUse: 2,
|
|
65250
|
+
unknownFutureValue: 3,
|
|
65095
65251
|
}
|
|
65096
65252
|
|
|
65097
65253
|
/**
|
|
@@ -67374,6 +67530,21 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67374
67530
|
triggerAttributes: triggerAttribute[];
|
|
67375
67531
|
}
|
|
67376
67532
|
|
|
67533
|
+
@complex model attributeSetEntry {
|
|
67534
|
+
name: string;
|
|
67535
|
+
value: string | null;
|
|
67536
|
+
}
|
|
67537
|
+
|
|
67538
|
+
@complex model awaitedWorkflowProcessingResult {
|
|
67539
|
+
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
67540
|
+
statusReasons: string[];
|
|
67541
|
+
subject: workflowSubject | null;
|
|
67542
|
+
}
|
|
67543
|
+
|
|
67544
|
+
@complex model countBasedQuarantineCondition extends quarantineCondition {
|
|
67545
|
+
threshold: int64;
|
|
67546
|
+
}
|
|
67547
|
+
|
|
67377
67548
|
@complex model customTaskExtensionCallbackConfiguration extends reference.`microsoft.graph`.customExtensionCallbackConfiguration {
|
|
67378
67549
|
@references authorizedApps: reference.`microsoft.graph`.application[];
|
|
67379
67550
|
}
|
|
@@ -67383,12 +67554,19 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67383
67554
|
}
|
|
67384
67555
|
|
|
67385
67556
|
@complex model customTaskExtensionCalloutData extends reference.`microsoft.graph`.customExtensionData {
|
|
67557
|
+
targetSubject: workflowSubject | null;
|
|
67386
67558
|
@references subject: reference.`microsoft.graph`.user | null;
|
|
67387
67559
|
@references task: task | null;
|
|
67388
67560
|
@references taskProcessingresult: taskProcessingResult | null;
|
|
67389
67561
|
@references workflow: workflow | null;
|
|
67390
67562
|
}
|
|
67391
67563
|
|
|
67564
|
+
@complex model customTaskExtensionResponseData extends reference.`microsoft.graph`.customExtensionData {
|
|
67565
|
+
operationStatus: customTaskExtensionOperationStatus;
|
|
67566
|
+
statusReasons: string[];
|
|
67567
|
+
targetSubject: workflowSubject | null;
|
|
67568
|
+
}
|
|
67569
|
+
|
|
67392
67570
|
@complex model groupBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
67393
67571
|
@references groups: reference.`microsoft.graph`.group[];
|
|
67394
67572
|
}
|
|
@@ -67406,6 +67584,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67406
67584
|
valueType: valueType;
|
|
67407
67585
|
}
|
|
67408
67586
|
|
|
67587
|
+
@complex model percentageBasedQuarantineCondition extends quarantineCondition {
|
|
67588
|
+
percentage: int32;
|
|
67589
|
+
}
|
|
67590
|
+
|
|
67409
67591
|
@complex model previewFailedTask {
|
|
67410
67592
|
definitionId: string;
|
|
67411
67593
|
failureReason: string;
|
|
@@ -67413,6 +67595,29 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67413
67595
|
taskId: string;
|
|
67414
67596
|
}
|
|
67415
67597
|
|
|
67598
|
+
@complex model provisioningAttributeMapping extends workflowExecutionConditions {
|
|
67599
|
+
}
|
|
67600
|
+
|
|
67601
|
+
@complex model provisioningObjectWorkflowSubject extends workflowSubject {
|
|
67602
|
+
attributeSetEntries: attributeSetEntry[];
|
|
67603
|
+
id: string;
|
|
67604
|
+
}
|
|
67605
|
+
|
|
67606
|
+
@abstract
|
|
67607
|
+
@complex model quarantineCondition {
|
|
67608
|
+
}
|
|
67609
|
+
|
|
67610
|
+
@complex model quarantineConfiguration {
|
|
67611
|
+
conditions: quarantineCondition[];
|
|
67612
|
+
matchMode: matchMode;
|
|
67613
|
+
}
|
|
67614
|
+
|
|
67615
|
+
@complex model quarantineDetails {
|
|
67616
|
+
quarantinedDateTime: offsetDateTime | null;
|
|
67617
|
+
quarantineReason: string | null;
|
|
67618
|
+
quarantineType: quarantineType;
|
|
67619
|
+
}
|
|
67620
|
+
|
|
67416
67621
|
@complex model ruleBasedSubjectSet extends reference.`microsoft.graph`.subjectSet {
|
|
67417
67622
|
rule: string;
|
|
67418
67623
|
}
|
|
@@ -67499,6 +67704,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67499
67704
|
@complex model workflowExecutionTrigger {
|
|
67500
67705
|
}
|
|
67501
67706
|
|
|
67707
|
+
@complex model workflowSetting {
|
|
67708
|
+
quarantineConfiguration: quarantineConfiguration | null;
|
|
67709
|
+
}
|
|
67710
|
+
|
|
67502
67711
|
@complex model workflowsInsightsByCategory {
|
|
67503
67712
|
failedJoinerRuns: int32;
|
|
67504
67713
|
failedLeaverRuns: int32;
|
|
@@ -67523,10 +67732,15 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67523
67732
|
totalUsers: int32;
|
|
67524
67733
|
}
|
|
67525
67734
|
|
|
67735
|
+
@abstract
|
|
67736
|
+
@complex model workflowSubject {
|
|
67737
|
+
}
|
|
67738
|
+
|
|
67526
67739
|
@entity model customTaskExtension extends reference.`microsoft.graph`.customCalloutExtension {
|
|
67527
67740
|
callbackConfiguration: reference.`microsoft.graph`.customExtensionCallbackConfiguration | null;
|
|
67528
67741
|
@computed createdDateTime: offsetDateTime | null;
|
|
67529
67742
|
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
67743
|
+
replyMode: customTaskExtensionReplyMode;
|
|
67530
67744
|
@references createdBy: reference.`microsoft.graph`.user | null;
|
|
67531
67745
|
@references lastModifiedBy: reference.`microsoft.graph`.user | null;
|
|
67532
67746
|
}
|
|
@@ -67536,6 +67750,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67536
67750
|
|
|
67537
67751
|
@entity model lifecycleManagementSettings extends reference.`microsoft.graph`.entity {
|
|
67538
67752
|
emailSettings: reference.`microsoft.graph`.emailSettings;
|
|
67753
|
+
quarantineConfiguration: quarantineConfiguration | null;
|
|
67539
67754
|
workflowScheduleIntervalInHours: int32;
|
|
67540
67755
|
}
|
|
67541
67756
|
|
|
@@ -67564,10 +67779,26 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67564
67779
|
totalUsersCount: int32;
|
|
67565
67780
|
workflowExecutionType: workflowExecutionType;
|
|
67566
67781
|
@references reprocessedRuns: run[];
|
|
67782
|
+
@contains subjectProcessingResults: subjectProcessingResult[];
|
|
67567
67783
|
@contains taskProcessingResults: taskProcessingResult[];
|
|
67568
67784
|
@contains userProcessingResults: userProcessingResult[];
|
|
67569
67785
|
}
|
|
67570
67786
|
|
|
67787
|
+
@entity model subjectProcessingResult extends reference.`microsoft.graph`.entity {
|
|
67788
|
+
completedDateTime: offsetDateTime | null;
|
|
67789
|
+
failedTasksCount: int32;
|
|
67790
|
+
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
67791
|
+
scheduledDateTime: offsetDateTime;
|
|
67792
|
+
startedDateTime: offsetDateTime | null;
|
|
67793
|
+
subject: workflowSubject;
|
|
67794
|
+
totalTasksCount: int32;
|
|
67795
|
+
totalUnprocessedTasksCount: int32;
|
|
67796
|
+
workflowExecutionType: workflowExecutionType;
|
|
67797
|
+
workflowVersion: int32;
|
|
67798
|
+
@references reprocessedRuns: run[];
|
|
67799
|
+
@contains taskProcessingResults: taskProcessingResult[];
|
|
67800
|
+
}
|
|
67801
|
+
|
|
67571
67802
|
@entity model task extends reference.`microsoft.graph`.entity {
|
|
67572
67803
|
arguments: reference.`microsoft.graph`.keyValuePair[];
|
|
67573
67804
|
category: lifecycleTaskCategory;
|
|
@@ -67593,8 +67824,10 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67593
67824
|
completedDateTime: offsetDateTime | null;
|
|
67594
67825
|
@computed createdDateTime: offsetDateTime;
|
|
67595
67826
|
failureReason: string | null;
|
|
67827
|
+
processingInfo: string | null;
|
|
67596
67828
|
processingStatus: lifecycleWorkflowProcessingStatus;
|
|
67597
67829
|
startedDateTime: offsetDateTime | null;
|
|
67830
|
+
workflowSubject: workflowSubject | null;
|
|
67598
67831
|
@references subject: reference.`microsoft.graph`.user;
|
|
67599
67832
|
@references task: task;
|
|
67600
67833
|
}
|
|
@@ -67633,12 +67866,15 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67633
67866
|
deletedDateTime: offsetDateTime | null;
|
|
67634
67867
|
@computed @key id: string;
|
|
67635
67868
|
nextScheduleRunDateTime: offsetDateTime | null;
|
|
67869
|
+
quarantineDetails: quarantineDetails;
|
|
67870
|
+
settings: workflowSetting;
|
|
67636
67871
|
version: int32 | null;
|
|
67637
67872
|
@references executionScope: userProcessingResult[];
|
|
67638
67873
|
|
|
67639
67874
|
@privatePreview("organizationalUnit")
|
|
67640
67875
|
@references previewScope: reference.`microsoft.graph`.directoryObject[];
|
|
67641
67876
|
@contains runs: run[];
|
|
67877
|
+
@contains subjectProcessingResults: subjectProcessingResult[];
|
|
67642
67878
|
@contains taskReports: taskReport[];
|
|
67643
67879
|
@contains userProcessingResults: userProcessingResult[];
|
|
67644
67880
|
@contains versions: workflowVersion[];
|
|
@@ -67669,6 +67905,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67669
67905
|
}
|
|
67670
67906
|
|
|
67671
67907
|
@entity model workflowVersion extends workflowBase {
|
|
67908
|
+
settings: workflowSetting;
|
|
67672
67909
|
@computed @key versionNumber: int32;
|
|
67673
67910
|
}
|
|
67674
67911
|
|
|
@@ -67690,12 +67927,20 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67690
67927
|
unknownFutureValue: 2,
|
|
67691
67928
|
}
|
|
67692
67929
|
|
|
67930
|
+
enum customTaskExtensionReplyMode {
|
|
67931
|
+
none: 0,
|
|
67932
|
+
callback: 1,
|
|
67933
|
+
response: 2,
|
|
67934
|
+
unknownFutureValue: 3,
|
|
67935
|
+
}
|
|
67936
|
+
|
|
67693
67937
|
@graphFlags
|
|
67694
67938
|
enum lifecycleTaskCategory {
|
|
67695
67939
|
joiner: 1,
|
|
67696
67940
|
leaver: 2,
|
|
67697
67941
|
unknownFutureValue: 4,
|
|
67698
67942
|
mover: 8,
|
|
67943
|
+
extensibility: 16,
|
|
67699
67944
|
}
|
|
67700
67945
|
|
|
67701
67946
|
enum lifecycleWorkflowCategory {
|
|
@@ -67703,6 +67948,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67703
67948
|
leaver: 1,
|
|
67704
67949
|
unknownFutureValue: 2,
|
|
67705
67950
|
mover: 3,
|
|
67951
|
+
extensibility: 4,
|
|
67706
67952
|
}
|
|
67707
67953
|
|
|
67708
67954
|
enum lifecycleWorkflowProcessingStatus {
|
|
@@ -67713,6 +67959,13 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67713
67959
|
canceled: 4,
|
|
67714
67960
|
failed: 5,
|
|
67715
67961
|
unknownFutureValue: 6,
|
|
67962
|
+
quarantined: 8,
|
|
67963
|
+
}
|
|
67964
|
+
|
|
67965
|
+
enum matchMode {
|
|
67966
|
+
any: 0,
|
|
67967
|
+
all: 1,
|
|
67968
|
+
unknownFutureValue: 2,
|
|
67716
67969
|
}
|
|
67717
67970
|
|
|
67718
67971
|
enum membershipChangeType {
|
|
@@ -67721,6 +67974,14 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67721
67974
|
unknownFutureValue: 3,
|
|
67722
67975
|
}
|
|
67723
67976
|
|
|
67977
|
+
enum quarantineType {
|
|
67978
|
+
notQuarantined: 0,
|
|
67979
|
+
countBasedThresholdExceeded: 1,
|
|
67980
|
+
percentageBasedThresholdExceeded: 2,
|
|
67981
|
+
multipleConditionsExceeded: 3,
|
|
67982
|
+
unknownFutureValue: 4,
|
|
67983
|
+
}
|
|
67984
|
+
|
|
67724
67985
|
enum valueType {
|
|
67725
67986
|
`enum`: 0,
|
|
67726
67987
|
`string`: 1,
|
|
@@ -67736,6 +67997,7 @@ namespace reference.`microsoft.graph.identityGovernance` {
|
|
|
67736
67997
|
activatedWithScope: 3,
|
|
67737
67998
|
@privatePreview("organizationalUnit")
|
|
67738
67999
|
preview: 4,
|
|
68000
|
+
extensibilityOnDemand: 5,
|
|
67739
68001
|
}
|
|
67740
68002
|
|
|
67741
68003
|
enum workflowTriggerTimeBasedAttribute {
|