cross_tenant_access_policy_templates_multi_tenant_organization_identity_synchronization
Creates, updates, deletes, gets or lists a cross_tenant_access_policy_templates_multi_tenant_organization_identity_synchronization resource.
Overview
| Name | cross_tenant_access_policy_templates_multi_tenant_organization_identity_synchronization |
| Type | Resource |
| Id | entra_id.policies.cross_tenant_access_policy_templates_multi_tenant_organization_identity_synchronization |
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. |
templateApplicationLevel | string | (none, newPartners, existingPartners, unknownFutureValue) (title: templateApplicationLevel) |
userSyncInbound | | Defines whether users can be synchronized from the partner tenant. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | Get the cross-tenant access policy template with user synchronization settings for a multitenant organization. | ||
update | update | Update the cross-tenant access policy template with user synchronization settings for a multitenant organization. | ||
delete | delete | 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 |
|---|---|---|
If-Match | string | ETag |
SELECT examples
- get
Get the cross-tenant access policy template with user synchronization settings for a multitenant organization.
SELECT
id,
templateApplicationLevel,
userSyncInbound
FROM entra_id.policies.cross_tenant_access_policy_templates_multi_tenant_organization_identity_synchronization
;
UPDATE examples
- update
Update the cross-tenant access policy template with user synchronization settings for a multitenant organization.
UPDATE entra_id.policies.cross_tenant_access_policy_templates_multi_tenant_organization_identity_synchronization
SET
id = '{{ id }}',
templateApplicationLevel = '{{ templateApplicationLevel }}',
userSyncInbound = '{{ userSyncInbound }}'
RETURNING
id,
templateApplicationLevel,
userSyncInbound;
DELETE examples
- delete
No description available.
DELETE FROM entra_id.policies.cross_tenant_access_policy_templates_multi_tenant_organization_identity_synchronization
WHERE If-Match = '{{ If-Match }}'
;