Skip to main content

on_premises_sync_behavior

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

Overview

Nameon_premises_sync_behavior
TypeResource
Identra_id.org_contacts.on_premises_sync_behavior

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
isCloudManagedboolean

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectorg_contact_id
updateupdateorg_contact_id
deletedeleteorg_contact_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
org_contact_idstringThe unique identifier of orgContact
If-MatchstringETag

SELECT examples

Retrieved navigation property

SELECT
id,
isCloudManaged
FROM entra_id.org_contacts.on_premises_sync_behavior
WHERE org_contact_id = '{{ org_contact_id }}' -- required
;

UPDATE examples

No description available.

UPDATE entra_id.org_contacts.on_premises_sync_behavior
SET
id = '{{ id }}',
isCloudManaged = {{ isCloudManaged }}
WHERE
org_contact_id = '{{ org_contact_id }}' --required
RETURNING
id,
isCloudManaged;

DELETE examples

No description available.

DELETE FROM entra_id.org_contacts.on_premises_sync_behavior
WHERE org_contact_id = '{{ org_contact_id }}' --required
AND If-Match = '{{ If-Match }}'
;