accessPackageResourceEnvironment 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 environment is a reference to the geolocation environment in which a resource is located. This environment is automatically provided as part of Microsoft Entra Entitlement Management. The API is only applicable to Multi-Geo SharePoint Online sites.
Methods
Method | Return type | Description |
---|---|---|
List | accessPackageResourceEnvironment collection | Retrieve a list of accessPackageResourceEnvironment objects. |
Get | accessPackageResourceEnvironment | Read the properties and relationships of an accessPackageResourceEnvironment object. |
Properties
Property | Type | Description |
---|---|---|
connectionInfo | connectionInfo | Connection information of an environment used to connect to a resource. |
createdBy | String | The display name of the user that created this object. |
createdDateTime | DateTimeOffset | The date and time that this object was created. The DateTimeOffset 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 . |
description | String | The description of this object. |
displayName | String | The display name of this object. |
id | String | The system-assigned unique identifier of the object. |
isDefaultEnvironment | Boolean | Determines whether this is default environment or not. It is set to true for all static origin systems, such as Microsoft Entra groups and Microsoft Entra Applications. |
modifiedBy | String | The display name of the entity that last modified this object. |
modifiedDateTime | DateTimeOffset | The date and time that this object was last modified. The DateTimeOffset 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 . |
originId | String | The unique identifier of this environment in the origin system. |
originSystem | String | The type of the resource in the origin system, that is, SharePointOnline . Requires $filter (eq ). |
Relationships
Relationship | Type | Description |
---|---|---|
accessPackageResources | accessPackageResource collection | Read-only. Required. |
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.accessPackageResourceEnvironment",
"id": "String (identifier)",
"displayName": "String",
"description": "String",
"originSystem": "String",
"originId": "String",
"isDefaultEnvironment": "Boolean",
"connectionInfo": {
"@odata.type": "microsoft.graph.connectionInfo"
},
"createdBy": "String",
"createdDateTime": "String (timestamp)",
"modifiedBy": "String",
"modifiedDateTime": "String (timestamp)"
}