conditional_access_templates
Creates, updates, deletes, gets or lists a conditional_access_templates resource.
Overview
| Name | conditional_access_templates |
| Type | Resource |
| Id | entra_id.identity.conditional_access_templates |
Fields
The following fields are returned by SELECT queries:
- get
- list
Retrieved navigation property
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
name | string | The user-friendly name of the template. |
description | string | The user-friendly name of the template. |
details | object | (title: conditionalAccessPolicyDetail) |
scenarios | string | (new, secureFoundation, zeroTrust, remoteWork, protectAdmins, emergingThreats, unknownFutureValue) (title: templateScenarios) |
Retrieved collection
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
name | string | The user-friendly name of the template. |
description | string | The user-friendly name of the template. |
details | object | (title: conditionalAccessPolicyDetail) |
scenarios | string | (new, secureFoundation, zeroTrust, remoteWork, protectAdmins, emergingThreats, unknownFutureValue) (title: templateScenarios) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | conditional_access_template_id | Read the properties and relationships of a conditionalAccessTemplate object. | |
list | select | Get a list of the conditionalAccessTemplate objects and their properties. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
conditional_access_template_id | string | The unique identifier of conditionalAccessTemplate |
SELECT examples
- get
- list
Read the properties and relationships of a conditionalAccessTemplate object.
SELECT
id,
name,
description,
details,
scenarios
FROM entra_id.identity.conditional_access_templates
WHERE conditional_access_template_id = '{{ conditional_access_template_id }}' -- required
;
Get a list of the conditionalAccessTemplate objects and their properties.
SELECT
id,
name,
description,
details,
scenarios
FROM entra_id.identity.conditional_access_templates
;