Skip to main content

on_premises_synchronization

Creates, updates, deletes, gets or lists an on_premises_synchronization resource.

Overview

Nameon_premises_synchronization
TypeResource
Identra_id.directory.on_premises_synchronization

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
configurationConsists of configurations that can be fine-tuned and impact the on-premises directory synchronization process for a tenant. Nullable.
featuresobject (title: onPremisesDirectorySynchronizationFeature)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselecton_premises_directory_synchronization_idRead the properties and relationships of an onPremisesDirectorySynchronization object.
listselectRead the properties and relationships of an onPremisesDirectorySynchronization object.
insertinsert
updateupdateon_premises_directory_synchronization_idUpdate the properties of an onPremisesDirectorySynchronization object.
deletedeleteon_premises_directory_synchronization_idIf-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.

NameDatatypeDescription
on_premises_directory_synchronization_idstringThe unique identifier of onPremisesDirectorySynchronization
If-MatchstringETag

SELECT examples

Read the properties and relationships of an onPremisesDirectorySynchronization object.

SELECT
id,
configuration,
features
FROM entra_id.directory.on_premises_synchronization
WHERE on_premises_directory_synchronization_id = '{{ on_premises_directory_synchronization_id }}' -- required
;

INSERT examples

No description available.

INSERT INTO entra_id.directory.on_premises_synchronization (
id,
configuration,
features
)
SELECT
'{{ id }}',
'{{ configuration }}',
'{{ features }}'
RETURNING
id,
configuration,
features
;

UPDATE examples

Update the properties of an onPremisesDirectorySynchronization object.

UPDATE entra_id.directory.on_premises_synchronization
SET
id = '{{ id }}',
configuration = '{{ configuration }}',
features = '{{ features }}'
WHERE
on_premises_directory_synchronization_id = '{{ on_premises_directory_synchronization_id }}' --required
RETURNING
id,
configuration,
features;

DELETE examples

No description available.

DELETE FROM entra_id.directory.on_premises_synchronization
WHERE on_premises_directory_synchronization_id = '{{ on_premises_directory_synchronization_id }}' --required
AND If-Match = '{{ If-Match }}'
;