Skip to main content

conditional_access_templates

Creates, updates, deletes, gets or lists a conditional_access_templates resource.

Overview

Nameconditional_access_templates
TypeResource
Identra_id.identity.conditional_access_templates

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
namestringThe user-friendly name of the template.
descriptionstringThe user-friendly name of the template.
detailsobject (title: conditionalAccessPolicyDetail)
scenariosstring (new, secureFoundation, zeroTrust, remoteWork, protectAdmins, emergingThreats, unknownFutureValue) (title: templateScenarios)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectconditional_access_template_idRead the properties and relationships of a conditionalAccessTemplate object.
listselectGet 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.

NameDatatypeDescription
conditional_access_template_idstringThe unique identifier of conditionalAccessTemplate

SELECT examples

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
;