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.service_principals.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
getselectservice_principal_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
service_principal_idstringThe unique identifier of servicePrincipal
synchronization_job_idstringThe unique identifier of synchronizationJob

SELECT examples

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
;