Skip to main content

entitlement_management_resource_environments_resources_scopes_resource_environment

Creates, updates, deletes, gets or lists an entitlement_management_resource_environments_resources_scopes_resource_environment resource.

Overview

Nameentitlement_management_resource_environments_resources_scopes_resource_environment
TypeResource
Identra_id.identity_governance.entitlement_management_resource_environments_resources_scopes_resource_environment

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
connectionInfoConnection information of an environment used to connect to a resource.
createdDateTimestring (date-time)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. (pattern: ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$)
descriptionstringThe description of this object.
displayNamestringThe display name of this object.
isDefaultEnvironmentbooleanDetermines 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.
modifiedDateTimestring (date-time)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. (pattern: ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$)
originIdstringThe unique identifier of this environment in the origin system.
originSystemstringThe type of the resource in the origin system, that is, SharePointOnline. Requires $filter (eq).
resourcesarrayRead-only. Required.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectaccess_package_resource_environment_id, access_package_resource_id, access_package_resource_scope_idContains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
access_package_resource_environment_idstringThe unique identifier of accessPackageResourceEnvironment
access_package_resource_idstringThe unique identifier of accessPackageResource
access_package_resource_scope_idstringThe unique identifier of accessPackageResourceScope

SELECT examples

Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand.

SELECT
id,
connectionInfo,
createdDateTime,
description,
displayName,
isDefaultEnvironment,
modifiedDateTime,
originId,
originSystem,
resources
FROM entra_id.identity_governance.entitlement_management_resource_environments_resources_scopes_resource_environment
WHERE access_package_resource_environment_id = '{{ access_package_resource_environment_id }}' -- required
AND access_package_resource_id = '{{ access_package_resource_id }}' -- required
AND access_package_resource_scope_id = '{{ access_package_resource_scope_id }}' -- required
;