cross_tenant_access_policy_templates_multi_tenant_organization_partner_configuration
Creates, updates, deletes, gets or lists a cross_tenant_access_policy_templates_multi_tenant_organization_partner_configuration resource.
Overview
| Name | cross_tenant_access_policy_templates_multi_tenant_organization_partner_configuration |
| Type | Resource |
| Id | entra_id.policies.cross_tenant_access_policy_templates_multi_tenant_organization_partner_configuration |
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. |
automaticUserConsentSettings | | Determines the partner-specific configuration for automatic user consent settings. Unless configured, the inboundAllowed and outboundAllowed properties are null and inherit from the default settings, which is always false. |
b2bCollaborationInbound | | Defines your partner-specific configuration for users from other organizations accessing your resources via Microsoft Entra B2B collaboration. |
b2bCollaborationOutbound | | Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Microsoft Entra B2B collaboration. |
b2bDirectConnectInbound | | Defines your partner-specific configuration for users from other organizations accessing your resources via Azure B2B direct connect. |
b2bDirectConnectOutbound | | Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Microsoft Entra B2B direct connect. |
inboundTrust | | Determines the partner-specific configuration for trusting other Conditional Access claims from external Microsoft Entra organizations. |
templateApplicationLevel | string | (none, newPartners, existingPartners, unknownFutureValue) (title: templateApplicationLevel) |
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 inbound and outbound partner configuration settings for a multitenant organization. | ||
update | update | Update the cross-tenant access policy template with inbound and outbound partner configuration 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 inbound and outbound partner configuration settings for a multitenant organization.
SELECT
id,
automaticUserConsentSettings,
b2bCollaborationInbound,
b2bCollaborationOutbound,
b2bDirectConnectInbound,
b2bDirectConnectOutbound,
inboundTrust,
templateApplicationLevel
FROM entra_id.policies.cross_tenant_access_policy_templates_multi_tenant_organization_partner_configuration
;
UPDATE examples
- update
Update the cross-tenant access policy template with inbound and outbound partner configuration settings for a multitenant organization.
UPDATE entra_id.policies.cross_tenant_access_policy_templates_multi_tenant_organization_partner_configuration
SET
id = '{{ id }}',
automaticUserConsentSettings = '{{ automaticUserConsentSettings }}',
b2bCollaborationInbound = '{{ b2bCollaborationInbound }}',
b2bCollaborationOutbound = '{{ b2bCollaborationOutbound }}',
b2bDirectConnectInbound = '{{ b2bDirectConnectInbound }}',
b2bDirectConnectOutbound = '{{ b2bDirectConnectOutbound }}',
inboundTrust = '{{ inboundTrust }}',
templateApplicationLevel = '{{ templateApplicationLevel }}'
RETURNING
id,
automaticUserConsentSettings,
b2bCollaborationInbound,
b2bCollaborationOutbound,
b2bDirectConnectInbound,
b2bDirectConnectOutbound,
inboundTrust,
templateApplicationLevel;
DELETE examples
- delete
No description available.
DELETE FROM entra_id.policies.cross_tenant_access_policy_templates_multi_tenant_organization_partner_configuration
WHERE If-Match = '{{ If-Match }}'
;