synchronization_jobs_schema_filter_operators
Creates, updates, deletes, gets or lists a synchronization_jobs_schema_filter_operators resource.
Overview
| Name | synchronization_jobs_schema_filter_operators |
| Type | Resource |
| Id | entra_id.applications.synchronization_jobs_schema_filter_operators |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
arity | string | (Binary, Unary) (title: scopeOperatorType) |
multivaluedComparisonType | string | (All, Any) (title: scopeOperatorMultiValuedComparisonType) |
supportedAttributeTypes | array | Attribute types supported by the operator. The possible values are: Boolean, Binary, Reference, Integer, String. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | application_id, synchronization_job_id | List 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.
| Name | Datatype | Description |
|---|---|---|
application_id | string | The unique identifier of application |
synchronization_job_id | string | The unique identifier of synchronizationJob |
SELECT examples
- get
List all operators supported in the scoping filters.
SELECT
id,
arity,
multivaluedComparisonType,
supportedAttributeTypes
FROM entra_id.applications.synchronization_jobs_schema_filter_operators
WHERE application_id = '{{ application_id }}' -- required
AND synchronization_job_id = '{{ synchronization_job_id }}' -- required
;