on_premises_sync_behavior
Creates, updates, deletes, gets or lists an on_premises_sync_behavior resource.
Overview
| Name | on_premises_sync_behavior |
| Type | Resource |
| Id | entra_id.org_contacts.on_premises_sync_behavior |
Fields
The following fields are returned by SELECT queries:
- get
Retrieved navigation property
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
isCloudManaged | boolean |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | org_contact_id | ||
update | update | org_contact_id | ||
delete | delete | org_contact_id | If-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.
| Name | Datatype | Description |
|---|---|---|
org_contact_id | string | The unique identifier of orgContact |
If-Match | string | ETag |
SELECT examples
- get
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
- update
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
- delete
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 }}'
;