Skip to main content

directory_resource_namespaces

Creates, updates, deletes, gets or lists a directory_resource_namespaces resource.

Overview

Namedirectory_resource_namespaces
TypeResource
Identra_id.role_management.directory_resource_namespaces

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
namestring
resourceActionsarray

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectunified_rbac_resource_namespace_id
listselect
insertinsert
updateupdateunified_rbac_resource_namespace_id
deletedeleteunified_rbac_resource_namespace_idIf-Match

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
unified_rbac_resource_namespace_idstringThe unique identifier of unifiedRbacResourceNamespace
If-MatchstringETag

SELECT examples

Retrieved navigation property

SELECT
id,
name,
resourceActions
FROM entra_id.role_management.directory_resource_namespaces
WHERE unified_rbac_resource_namespace_id = '{{ unified_rbac_resource_namespace_id }}' -- required
;

INSERT examples

No description available.

INSERT INTO entra_id.role_management.directory_resource_namespaces (
id,
name,
resourceActions
)
SELECT
'{{ id }}',
'{{ name }}',
'{{ resourceActions }}'
RETURNING
id,
name,
resourceActions
;

UPDATE examples

No description available.

UPDATE entra_id.role_management.directory_resource_namespaces
SET
id = '{{ id }}',
name = '{{ name }}',
resourceActions = '{{ resourceActions }}'
WHERE
unified_rbac_resource_namespace_id = '{{ unified_rbac_resource_namespace_id }}' --required
RETURNING
id,
name,
resourceActions;

DELETE examples

No description available.

DELETE FROM entra_id.role_management.directory_resource_namespaces
WHERE unified_rbac_resource_namespace_id = '{{ unified_rbac_resource_namespace_id }}' --required
AND If-Match = '{{ If-Match }}'
;