crossTenantAccessPolicyConfigurationPartner resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Represents the partner-specific configuration for cross-tenant access and tenant restrictions. Cross-tenant access settings include inbound and outbound settings of Microsoft Entra B2B collaboration and B2B direct connect.
For any partner-specific property that is null
, these settings inherit the behavior configured in your default cross-tenant access settings.
Methods
Method | Return type | Description |
---|---|---|
List | crossTenantAccessPolicyConfigurationPartner collection | Get a list of all partner-specific configurations. |
Create | crossTenantAccessPolicyConfigurationPartner | Create a new partner-specific configuration. |
Get | crossTenantAccessPolicyConfigurationPartner | Read the partner-specific configuration settings. |
Update | crossTenantAccessPolicyConfigurationPartner | Update the properties of a partner-specific configuration. |
Delete | None | Delete the partner-specific configuration. |
Properties
Property | Type | Description |
---|---|---|
automaticUserConsentSettings | inboundOutboundPolicyConfiguration | 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 | crossTenantAccessPolicyB2BSetting | Defines your partner-specific configuration for users from other organizations accessing your resources via Microsoft Entra B2B collaboration. |
b2bCollaborationOutbound | crossTenantAccessPolicyB2BSetting | Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Microsoft Entra B2B collaboration. |
b2bDirectConnectInbound | crossTenantAccessPolicyB2BSetting | Defines your partner-specific configuration for users from other organizations accessing your resources via Azure B2B direct connect. |
b2bDirectConnectOutbound | crossTenantAccessPolicyB2BSetting | 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 | crossTenantAccessPolicyInboundTrust | Determines the partner-specific configuration for trusting other Conditional Access claims from external Microsoft Entra organizations. |
isInMultiTenantOrganization | Boolean | Identifies whether a tenant is a member of a multitenant organization. |
isServiceProvider | Boolean | Identifies whether the partner-specific configuration is a Cloud Service Provider for your organization. |
tenantId | String | The tenant identifier for the partner Microsoft Entra organization. Read-only. Key. |
tenantRestrictions | crossTenantAccessPolicyTenantRestrictions | Defines the partner-specific tenant restrictions configuration for users in your organization who access a partner organization using partner supplied identities on your network or devices. |
Relationships
Relationship | Type | Description |
---|---|---|
identitySynchronization | crossTenantIdentitySyncPolicyPartner | Defines the cross-tenant policy for the synchronization of users from a partner tenant. Use this user synchronization policy to streamline collaboration between users in a multitenant organization by automating the creation, update, and deletion of users from one tenant to another. |
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.crossTenantAccessPolicyConfigurationPartner",
"automaticUserConsentSettings": {"@odata.type": "microsoft.graph.inboundOutboundPolicyConfiguration"},
"b2bCollaborationInbound": {"@odata.type": "microsoft.graph.crossTenantAccessPolicyB2BSetting"},
"b2bCollaborationOutbound": {"@odata.type": "microsoft.graph.crossTenantAccessPolicyB2BSetting"},
"b2bDirectConnectInbound": {"@odata.type": "microsoft.graph.crossTenantAccessPolicyB2BSetting"},
"b2bDirectConnectOutbound": {"@odata.type": "microsoft.graph.crossTenantAccessPolicyB2BSetting"},
"inboundTrust": {"@odata.type": "microsoft.graph.crossTenantAccessPolicyInboundTrust"},
"isInMultiTenantOrganization": "Boolean",
"isServiceProvider": "Boolean",
"tenantId": "String (identifier)",
"tenantRestrictions": {"@odata.type": "microsoft.graph.crossTenantAccessPolicyTenantRestrictions"}
}