filter_operators
Creates, updates, deletes, gets or lists a filter_operators resource.
Overview
| Name | filter_operators |
| Type | Resource |
| Id | entra_id.synchronization.filter_operators |
Fields
The following fields are returned by SELECT queries:
- get
- list
Retrieved entity
| 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. |
Retrieved collection
| 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 | filter_operator_schema_id | ||
list | select | |||
insert | insert | |||
update | update | filter_operator_schema_id | ||
delete | delete | filter_operator_schema_id | If-Match |
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 |
|---|---|---|
filter_operator_schema_id | string | The unique identifier of filterOperatorSchema |
If-Match | string | ETag |
SELECT examples
- get
- list
Retrieved entity
SELECT
id,
arity,
multivaluedComparisonType,
supportedAttributeTypes
FROM entra_id.synchronization.filter_operators
WHERE filter_operator_schema_id = '{{ filter_operator_schema_id }}' -- required
;
Retrieved collection
SELECT
id,
arity,
multivaluedComparisonType,
supportedAttributeTypes
FROM entra_id.synchronization.filter_operators
;
INSERT examples
- insert
- Manifest
No description available.
INSERT INTO entra_id.synchronization.filter_operators (
id,
arity,
multivaluedComparisonType,
supportedAttributeTypes
)
SELECT
'{{ id }}',
'{{ arity }}',
'{{ multivaluedComparisonType }}',
'{{ supportedAttributeTypes }}'
RETURNING
id,
arity,
multivaluedComparisonType,
supportedAttributeTypes
;
# Description fields are for documentation purposes
- name: filter_operators
props:
- name: id
value: "{{ id }}"
description: |
The unique identifier for an entity. Read-only.
- name: arity
value: "{{ arity }}"
valid_values: ['Binary', 'Unary']
- name: multivaluedComparisonType
value: "{{ multivaluedComparisonType }}"
valid_values: ['All', 'Any']
- name: supportedAttributeTypes
value:
- "{{ supportedAttributeTypes }}"
description: |
Attribute types supported by the operator. The possible values are: Boolean, Binary, Reference, Integer, String.
UPDATE examples
- update
No description available.
UPDATE entra_id.synchronization.filter_operators
SET
id = '{{ id }}',
arity = '{{ arity }}',
multivaluedComparisonType = '{{ multivaluedComparisonType }}',
supportedAttributeTypes = '{{ supportedAttributeTypes }}'
WHERE
filter_operator_schema_id = '{{ filter_operator_schema_id }}' --required
RETURNING
id,
arity,
multivaluedComparisonType,
supportedAttributeTypes;
DELETE examples
- delete
No description available.
DELETE FROM entra_id.synchronization.filter_operators
WHERE filter_operator_schema_id = '{{ filter_operator_schema_id }}' --required
AND If-Match = '{{ If-Match }}'
;