Skip to content

Commit 4256258

Browse files
committed
Add authenticationFlows CA condition to v1.0 docs
1 parent 551a1bc commit 4256258

File tree

4 files changed

+86
-3
lines changed

4 files changed

+86
-3
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
title: "conditionalAccessAuthenticationFlows resource type"
3+
description: "Represents the authentication flows in scope for the policy."
4+
author: "nickludwig"
5+
ms.localizationpriority: medium
6+
ms.subservice: "identity-and-sign-in"
7+
doc_type: resourcePageType
8+
---
9+
10+
# conditionalAccessAuthenticationFlows resource type
11+
12+
Namespace: microsoft.graph
13+
14+
Represents the authentication flows in scope for the policy.
15+
16+
## Properties
17+
18+
|Property|Type|Description|
19+
|:---|:---|:---|
20+
|transferMethods|conditionalAccessTransferMethods|Represents the transfer methods in scope for the policy. The possible values are: `none`, `deviceCodeFlow`, `authenticationTransfer`, `unknownFutureValue`.|
21+
22+
## Relationships
23+
24+
None.
25+
26+
## JSON representation
27+
28+
The following JSON representation shows the resource type.
29+
30+
<!-- {
31+
"blockType": "resource",
32+
"@odata.type": "microsoft.graph.conditionalAccessAuthenticationFlows"
33+
}-->
34+
``` json
35+
{
36+
"transferMethods": "String",
37+
}
38+
```

api-reference/v1.0/resources/conditionalaccessconditionset.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ Represents the type of conditions that govern when the policy applies.
1919
| Property | Type | Description |
2020
|:-------------|:------------|:------------|
2121
|applications|[conditionalAccessApplications](conditionalaccessapplications.md)| Applications and user actions included in and excluded from the policy. Required. |
22+
|authenticationFlows|[conditionalAccessAuthenticationFlows](conditionalaccessauthenticationflows.md)| Authentication flows included in the policy scope. |
2223
|clientApplications|[conditionalAccessClientApplications](../resources/conditionalaccessclientapplications.md)|Client applications (service principals and workload identities) included in and excluded from the policy. Either **users** or **clientApplications** is required. |
23-
|clientAppTypes|conditionalAccessClientApp collection| Client application types included in the policy. Possible values are: `all`, `browser`, `mobileAppsAndDesktopClients`, `exchangeActiveSync`, `easSupported`, `other`. Required. <br/><br/> The `easUnsupported` enumeration member will be deprecated in favor of `exchangeActiveSync` which includes EAS supported and unsupported platforms.|
24+
|clientAppTypes|conditionalAccessClientApp collection| Client application types included in the policy. Possible values are: `all`, `browser`, `mobileAppsAndDesktopClients`, `exchangeActiveSync`, `easSupported`, `other`. Required. <br/><br/> The `easUnsupported` enumeration member will be deprecated in favor of `exchangeActiveSync`, which includes EAS supported and unsupported platforms.|
2425
|devices|[conditionalAccessDevices](conditionalaccessdevices.md)| Devices in the policy. |
2526
|locations|[conditionalAccessLocations](conditionalaccesslocations.md)| Locations included in and excluded from the policy. |
2627
|platforms|[conditionalAccessPlatforms](conditionalaccessplatforms.md)| Platforms included in and excluded from the policy. |
@@ -45,7 +46,8 @@ The following JSON representation shows the resource type.
4546
"devices",
4647
"locations",
4748
"platforms",
48-
"signInRiskLevels"
49+
"signInRiskLevels",
50+
"authenticationFlows"
4951
],
5052
"@odata.type": "microsoft.graph.conditionalAccessConditionSet",
5153
"baseType": null
@@ -64,7 +66,8 @@ The following JSON representation shows the resource type.
6466
"signInRiskLevels": ["String"],
6567
"userRiskLevels": ["String"],
6668
"users": {"@odata.type": "microsoft.graph.conditionalAccessUsers"},
67-
"insiderRiskLevels": "String"
69+
"insiderRiskLevels": "String",
70+
"authenticationFlows": {"@odata.type": "microsoft.graph.conditionalAccessAuthenticationFlows"}
6871
}
6972
```
7073

api-reference/v1.0/resources/enums.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3403,3 +3403,11 @@ Possible values for user account types (group membership), per Windows definitio
34033403
| all |
34043404
| unknownFutureValue |
34053405

3406+
### conditionalAccessTransferMethods values
3407+
3408+
|Member|
3409+
|:---|
3410+
|none|
3411+
|deviceCodeFlow|
3412+
|authenticationTransfer|
3413+
|unknownFutureValue|

changelog/Microsoft.IdentityProtectionServices.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1213,6 +1213,40 @@
12131213
"CreatedDateTime": "2024-06-05T23:22:24.8127939Z",
12141214
"WorkloadArea": "Identity and access",
12151215
"SubArea": "Network access"
1216+
},
1217+
{
1218+
"ChangeList": [
1219+
{
1220+
"Id": "c1ddba56-7ffe-4bf3-bd1f-f0cfdefaddaf",
1221+
"ApiChange": "Enumeration",
1222+
"ChangedApiName": "conditionalAccessTransferMethods",
1223+
"ChangeType": "Addition",
1224+
"Description": "Added the **conditionalAccessTransferMethods** enumeration type.",
1225+
"Target": "conditionalAccessTransferMethods"
1226+
},
1227+
{
1228+
"Id": "c1ddba56-7ffe-4bf3-bd1f-f0cfdefaddaf",
1229+
"ApiChange": "Resource",
1230+
"ChangedApiName": "conditionalAccessAuthenticationFlows",
1231+
"ChangeType": "Addition",
1232+
"Description": "Added the [conditionalAccessAuthenticationFlows](https://learn.microsoft.com/en-us/graph/api/resources/conditionalAccessAuthenticationFlows?view=graph-rest-1.0) resource.",
1233+
"Target": "conditionalAccessAuthenticationFlows"
1234+
},
1235+
{
1236+
"Id": "c1ddba56-7ffe-4bf3-bd1f-f0cfdefaddaf",
1237+
"ApiChange": "Property",
1238+
"ChangedApiName": "authenticationFlows",
1239+
"ChangeType": "Addition",
1240+
"Description": "Added the **authenticationFlows** property to the [conditionalAccessConditionSet](https://learn.microsoft.com/en-us/graph/api/resources/conditionalAccessConditionSet?view=graph-rest-1.0) resource.",
1241+
"Target": "conditionalAccessConditionSet"
1242+
}
1243+
],
1244+
"Id": "c1ddba56-7ffe-4bf3-bd1f-f0cfdefaddaf",
1245+
"Cloud": "Prod",
1246+
"Version": "v1.0",
1247+
"CreatedDateTime": "2024-11-07T08:55:37.2663572Z",
1248+
"WorkloadArea": "Identity and access",
1249+
"SubArea": "Identity and sign-in"
12161250
}
12171251
]
12181252
}

0 commit comments

Comments
 (0)