Edit

relationshipPolicy resource type

Namespace: microsoft.graph.tenantGovernanceServices

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 a snapshot of governance policy configuration that is stored in a governanceRelationship or governanceRequest. This snapshot preserves the policy state at the time the relationship was created or requested.

Properties

Property Type Description
delegatedAdministrationRoleAssignments microsoft.graph.tenantGovernanceServices.delegatedAdministrationRoleAssignmentSnapshot collection A snapshot of the delegated administration role assignments configured in this policy.
governedTenantCanTerminate Boolean Indicates whether the governed tenant can terminate the relationship.
multiTenantApplicationsToProvision microsoft.graph.tenantGovernanceServices.multiTenantApplicationsToProvisionSnapshot collection A snapshot of the multi-tenant applications to be provisioned in the governed tenant.
policyId String The identifier of the source policy template from which this snapshot was created.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.tenantGovernanceServices.relationshipPolicy",
  "policyId": "String",
  "multiTenantApplicationsToProvision": [
    {
      "@odata.type": "microsoft.graph.tenantGovernanceServices.multiTenantApplicationsToProvisionSnapshot"
    }
  ],
  "delegatedAdministrationRoleAssignments": [
    {
      "@odata.type": "microsoft.graph.tenantGovernanceServices.delegatedAdministrationRoleAssignmentSnapshot"
    }
  ]
}