Skip to content

Latest commit

 

History

History
64 lines (56 loc) · 3.19 KB

accesspackageresourceenvironment.md

File metadata and controls

64 lines (56 loc) · 3.19 KB
title description author ms.localizationpriority ms.subservice doc_type
accessPackageResourceEnvironment resource type
An access package resource environment is a reference to the geolocation environment in which a resource is located.
markwahl-msft
medium
entra-id-governance
resourcePageType

accessPackageResourceEnvironment resource type

Namespace: microsoft.graph

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 accessPackageResourceEnvironments accessPackageResourceEnvironment collection Retrieve a list of accessPackageResourceEnvironment objects.

Properties

Property Type Description
connectionInfo connectionInfo Connection information of an environment used to connect to a resource.
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.
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
resources accessPackageResource collection Read-only. Required.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.accessPackageResourceEnvironment",
  "id": "String (identifier)",
  "connectionInfo": {
    "@odata.type": "microsoft.graph.connectionInfo"
  },
  "displayName": "String",
  "description": "String",
  "originSystem": "String",
  "originId": "String",
  "isDefaultEnvironment": true,
  "createdDateTime": "String (timestamp)",
  "modifiedDateTime": "String (timestamp)"
}