synchronization_jobs_schema_functions
Creates, updates, deletes, gets or lists a synchronization_jobs_schema_functions resource.
Overview
| Name | synchronization_jobs_schema_functions |
| Type | Resource |
| Id | entra_id.service_principals.synchronization_jobs_schema_functions |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
parameters | array | Collection of function parameters. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | service_principal_id, synchronization_job_id | List all the functions currently supported in the attributeMappingSource. |
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 |
|---|---|---|
service_principal_id | string | The unique identifier of servicePrincipal |
synchronization_job_id | string | The unique identifier of synchronizationJob |
SELECT examples
- get
List all the functions currently supported in the attributeMappingSource.
SELECT
id,
parameters
FROM entra_id.service_principals.synchronization_jobs_schema_functions
WHERE service_principal_id = '{{ service_principal_id }}' -- required
AND synchronization_job_id = '{{ synchronization_job_id }}' -- required
;