Skip to main content

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

Namecross_tenant_access_policy_templates_multi_tenant_organization_partner_configuration
TypeResource
Identra_id.policies.cross_tenant_access_policy_templates_multi_tenant_organization_partner_configuration

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
automaticUserConsentSettingsDetermines 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.
b2bCollaborationInboundDefines your partner-specific configuration for users from other organizations accessing your resources via Microsoft Entra B2B collaboration.
b2bCollaborationOutboundDefines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Microsoft Entra B2B collaboration.
b2bDirectConnectInboundDefines your partner-specific configuration for users from other organizations accessing your resources via Azure B2B direct connect.
b2bDirectConnectOutboundDefines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Microsoft Entra B2B direct connect.
inboundTrustDetermines the partner-specific configuration for trusting other Conditional Access claims from external Microsoft Entra organizations.
templateApplicationLevelstring (none, newPartners, existingPartners, unknownFutureValue) (title: templateApplicationLevel)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectGet the cross-tenant access policy template with inbound and outbound partner configuration settings for a multitenant organization.
updateupdateUpdate the cross-tenant access policy template with inbound and outbound partner configuration settings for a multitenant organization.
deletedeleteIf-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
If-MatchstringETag

SELECT examples

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 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

No description available.

DELETE FROM entra_id.policies.cross_tenant_access_policy_templates_multi_tenant_organization_partner_configuration
WHERE If-Match = '{{ If-Match }}'
;