accessPackage resource type

Namespace: microsoft.graph

In Azure AD Entitlement Management, an access package defines the collections of resource roles and the policies for how one or more users can get access to those resources.

Each access package is referenced by a single access package catalog, and has links to the resources from that catalog via the resource-specific role scopes that define the access the package provides. An access package also links to the access package assignment policies, each of which define who can request or be assigned an access package assignment.

Methods

Method Return type Description
List accessPackages accessPackage collection Retrieve a list of accesspackage objects.
Create accessPackage accessPackage Create a new accesspackage object.
Get accessPackage accessPackage Read properties and relationships of an accesspackage object.
Update accessPackage None Update the properties of an accesspackage object.
Delete accessPackage None Delete an accesspackage.
filterByCurrentUser accessPackage collection Retrieve the list of accessPackage objects filtered on the signed-in user.
getApplicablePolicyRequirements accessPackageAssignmentRequestRequirements collection Retrieve a list of accessPackageAssignmentRequestRequirement objects with request requirements.

Properties

Property Type Description
createdDateTime DateTimeOffset The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
description String The description of the access package.
displayName String The display name of the access package. Supports $filter (eq, contains).
id String Read-only.
isHidden Boolean Whether the access package is hidden from the requestor.
modifiedDateTime DateTimeOffset The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.

Relationships

Relationship Type Description
assignmentPolicies accessPackageAssignmentPolicy collection Read-only. Nullable.
catalog accessPackageCatalog Read-only. Nullable.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.accessPackage",
  "id": "String (identifier)",
  "displayName": "String",
  "description": "String",
  "isHidden": "Boolean",
  "createdDateTime": "String (timestamp)",
  "modifiedDateTime": "String (timestamp)"
}