Skip to main content

owned_objects

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

Overview

Nameowned_objects
TypeResource
Identra_id.service_principals.owned_objects

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
deletedDateTimestring (date-time)Date and time when this object was deleted. Always null when the object hasn't been deleted. (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])$)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectservice_principal_id, directory_object_idDirectory objects that this service principal owns. Read-only. Nullable. Supports $expand, $select nested in $expand, and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1).
listselectservice_principal_idRetrieve a list of objects owned by the servicePrincipal. This could include applications or groups.

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
directory_object_idstringThe unique identifier of directoryObject
service_principal_idstringThe unique identifier of servicePrincipal

SELECT examples

Directory objects that this service principal owns. Read-only. Nullable. Supports $expand, $select nested in $expand, and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1).

SELECT
id,
deletedDateTime
FROM entra_id.service_principals.owned_objects
WHERE service_principal_id = '{{ service_principal_id }}' -- required
AND directory_object_id = '{{ directory_object_id }}' -- required
;