Skip to main content

synchronization_jobs_schema_functions

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

Overview

Namesynchronization_jobs_schema_functions
TypeResource
Identra_id.applications.synchronization_jobs_schema_functions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
parametersarrayCollection of function parameters.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectapplication_id, synchronization_job_idList 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.

NameDatatypeDescription
application_idstringThe unique identifier of application
synchronization_job_idstringThe unique identifier of synchronizationJob

SELECT examples

List all the functions currently supported in the attributeMappingSource.

SELECT
id,
parameters
FROM entra_id.applications.synchronization_jobs_schema_functions
WHERE application_id = '{{ application_id }}' -- required
AND synchronization_job_id = '{{ synchronization_job_id }}' -- required
;