Skip to content

Latest commit

 

History

History
60 lines (46 loc) · 2.75 KB

File metadata and controls

60 lines (46 loc) · 2.75 KB
title plannerSharedWithContainer resource type
description Represents a container for a plannerPlan. The container is a resource that specifies authorization rules and the lifetime of the plan.
author FarzadDaei
ms.localizationpriority medium
ms.subservice planner
doc_type resourcePageType
ms.date 04/03/2024

plannerSharedWithContainer resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Represents the relationship of a Planner plan to a Planner container. Plans can be shared with containers that aren't the original container the plan belongs to. When the plan is verifying a user's access to it, the plan will additionally check the authorization logic of the containers it's shared with.

Inherits from plannerPlanContainer.

Properties

Property Type Description
accessLevel plannerPlanAccessLevel The maximum access level the shared container can provide to the plan. The possible values are: readAccess, readWriteAccess, fullAccess, unknownFutureValue.
containerId String The identifier of the resource that contains the plan. Optional. Inherited from plannerPlanContainer.
type plannerContainerType The type of the resource that contains the plan. The possible values are: group, unknownFutureValue, roster, project, and driveItem. Use the Prefer: include-unknown-enum-members request header to get the following members in this evolvable enum: roster, project, driveItem. Optional. Inherited from plannerPlanContainer.
url String The full canonical URL of the container. Optional. Inherited from plannerPlanContainer.

plannerPlanAccessLevel values

Member Description
readAccess The highest level of access that a user can gain through this relationship will be read access to the plan.
readWriteAccess The highest level of access that a user can gain through this relationship will be read and write access to the plan.
fullAccess The highest level of access that a user can gain through this relationship will be full access to the plan.
unknownFutureValue Evolvable enumeration sentinel value. Don't use.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.plannerSharedWithContainer",
  "url": "String",
  "containerId": "String",
  "type": "String",
  "accessLevel": "String"
}