Skip to main content

synchronization_templates_schema_filter_operators

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

Overview

Namesynchronization_templates_schema_filter_operators
TypeResource
Identra_id.applications.synchronization_templates_schema_filter_operators

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
aritystring (Binary, Unary) (title: scopeOperatorType)
multivaluedComparisonTypestring (All, Any) (title: scopeOperatorMultiValuedComparisonType)
supportedAttributeTypesarrayAttribute types supported by the operator. The possible values are: Boolean, Binary, Reference, Integer, String.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectapplication_id, synchronization_template_idList all operators supported in the scoping filters.

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
application_idstringThe unique identifier of application
synchronization_template_idstringThe unique identifier of synchronizationTemplate

SELECT examples

List all operators supported in the scoping filters.

SELECT
id,
arity,
multivaluedComparisonType,
supportedAttributeTypes
FROM entra_id.applications.synchronization_templates_schema_filter_operators
WHERE application_id = '{{ application_id }}' -- required
AND synchronization_template_id = '{{ synchronization_template_id }}' -- required
;