accessPackageResourceRoleScope 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.
In Microsoft Entra entitlement management, an access package resource role scope is a reference to both a scope within a resource, and a role in that resource for that scope. An access package has access package resource role scopes for the resources in its catalog that are relevant to that access package. When a subject receives an access package assignment, the subject is provisioned with the role in that scope of each access package resource role scope.
Methods
Method | Return Type | Description |
---|---|---|
List | accessPackageResourceRoleScope collection | Retrieve a list of accessPackageResourceRoleScope objects for an access package. |
Create | accessPackageResourceRoleScope | Create a new accessPackageResourceRoleScope object for an access package. |
Delete | None | Create a new accessPackageResourceRoleScope object for an access package. |
Properties
Property | Type | Description |
---|---|---|
createdBy | String | Read-only. |
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 |
id | String | Read-only. |
modifiedBy | String | Read-only. |
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 |
Relationships
Relationship | Type | Description |
---|---|---|
accessPackageResourceRole | accessPackageResourceRole | Read-only. Nullable. Supports $expand . |
accessPackageResourceScope | accessPackageResourceScope | Read-only. Nullable. |
JSON representation
The following JSON representation shows the resource type.
{
"createdBy":"String",
"createdDateTime":"String (timestamp)",
"id":"String (identifier)",
"modifiedBy":"String",
"modifiedDateTime":"String (timestamp)",
"accessPackageResourceRole":{
"id":"String (identifier)",
"displayName":"String",
"originSystem":"String",
"originId":"String"
},
"accessPackageResourceScope":{
"id":"String (identifier)",
"displayName":"String",
"description":"String",
"originId":"String (identifier)",
"originSystem":"String"
}
}