entitlement_management_resource_namespaces
Creates, updates, deletes, gets or lists an entitlement_management_resource_namespaces resource.
Overview
| Name | entitlement_management_resource_namespaces |
| Type | Resource |
| Id | entra_id.role_management.entitlement_management_resource_namespaces |
Fields
The following fields are returned by SELECT queries:
- get
- list
Retrieved navigation property
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
name | string | |
resourceActions | array |
Retrieved collection
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
name | string | |
resourceActions | array |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | unified_rbac_resource_namespace_id | ||
list | select | |||
insert | insert | |||
update | update | unified_rbac_resource_namespace_id | ||
delete | delete | unified_rbac_resource_namespace_id | If-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.
| Name | Datatype | Description |
|---|---|---|
unified_rbac_resource_namespace_id | string | The unique identifier of unifiedRbacResourceNamespace |
If-Match | string | ETag |
SELECT examples
- get
- list
Retrieved navigation property
SELECT
id,
name,
resourceActions
FROM entra_id.role_management.entitlement_management_resource_namespaces
WHERE unified_rbac_resource_namespace_id = '{{ unified_rbac_resource_namespace_id }}' -- required
;
Retrieved collection
SELECT
id,
name,
resourceActions
FROM entra_id.role_management.entitlement_management_resource_namespaces
;
INSERT examples
- insert
- Manifest
No description available.
INSERT INTO entra_id.role_management.entitlement_management_resource_namespaces (
id,
name,
resourceActions
)
SELECT
'{{ id }}',
'{{ name }}',
'{{ resourceActions }}'
RETURNING
id,
name,
resourceActions
;
# Description fields are for documentation purposes
- name: entitlement_management_resource_namespaces
props:
- name: id
value: "{{ id }}"
description: |
The unique identifier for an entity. Read-only.
- name: name
value: "{{ name }}"
- name: resourceActions
value:
- id: "{{ id }}"
actionVerb: "{{ actionVerb }}"
authenticationContextId: "{{ authenticationContextId }}"
description: "{{ description }}"
isAuthenticationContextSettable: {{ isAuthenticationContextSettable }}
name: "{{ name }}"
resourceScopeId: "{{ resourceScopeId }}"
UPDATE examples
- update
No description available.
UPDATE entra_id.role_management.entitlement_management_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
- delete
No description available.
DELETE FROM entra_id.role_management.entitlement_management_resource_namespaces
WHERE unified_rbac_resource_namespace_id = '{{ unified_rbac_resource_namespace_id }}' --required
AND If-Match = '{{ If-Match }}'
;