cross_tenant_access_policy_templates
Creates, updates, deletes, gets or lists a cross_tenant_access_policy_templates resource.
Overview
| Name | cross_tenant_access_policy_templates |
| Type | Resource |
| Id | entra_id.policies.cross_tenant_access_policy_templates |
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. |
multiTenantOrganizationIdentitySynchronization | | Defines an optional cross-tenant access policy template with user synchronization settings for a multitenant organization. |
multiTenantOrganizationPartnerConfiguration | | Defines an optional cross-tenant access policy template with inbound and outbound partner configuration settings for a multitenant organization. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | Represents the base policy in the directory for multitenant organization settings. | ||
update | update | |||
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
Represents the base policy in the directory for multitenant organization settings.
SELECT
id,
multiTenantOrganizationIdentitySynchronization,
multiTenantOrganizationPartnerConfiguration
FROM entra_id.policies.cross_tenant_access_policy_templates
;
UPDATE examples
- update
No description available.
UPDATE entra_id.policies.cross_tenant_access_policy_templates
SET
id = '{{ id }}',
multiTenantOrganizationIdentitySynchronization = '{{ multiTenantOrganizationIdentitySynchronization }}',
multiTenantOrganizationPartnerConfiguration = '{{ multiTenantOrganizationPartnerConfiguration }}'
RETURNING
id,
multiTenantOrganizationIdentitySynchronization,
multiTenantOrganizationPartnerConfiguration;
DELETE examples
- delete
No description available.
DELETE FROM entra_id.policies.cross_tenant_access_policy_templates
WHERE If-Match = '{{ If-Match }}'
;