delegated_admin_relationships_access_assignments
Creates, updates, deletes, gets or lists a delegated_admin_relationships_access_assignments resource.
Overview
| Name | delegated_admin_relationships_access_assignments |
| Type | Resource |
| Id | entra_id.tenant_relationships.delegated_admin_relationships_access_assignments |
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. |
accessContainer | object | (title: delegatedAdminAccessContainer) |
accessDetails | object | (title: delegatedAdminAccessDetails) |
createdDateTime | string (date-time) | The date and time in ISO 8601 format and in UTC time when the access assignment was created. Read-only. (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])$) |
lastModifiedDateTime | string (date-time) | The date and time in ISO 8601 and in UTC time when this access assignment was last modified. Read-only. (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])$) |
status | | The status of the access assignment. Read-only. The possible values are: pending, active, deleting, deleted, error, unknownFutureValue. |
Retrieved collection
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
accessContainer | object | (title: delegatedAdminAccessContainer) |
accessDetails | object | (title: delegatedAdminAccessDetails) |
createdDateTime | string (date-time) | The date and time in ISO 8601 format and in UTC time when the access assignment was created. Read-only. (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])$) |
lastModifiedDateTime | string (date-time) | The date and time in ISO 8601 and in UTC time when this access assignment was last modified. Read-only. (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])$) |
status | | The status of the access assignment. Read-only. The possible values are: pending, active, deleting, deleted, error, unknownFutureValue. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | delegated_admin_relationship_id, delegated_admin_access_assignment_id | Read the properties of a delegatedAdminAccessAssignment object. | |
list | select | delegated_admin_relationship_id | Get a list of the delegatedAdminAccessAssignment objects and their properties. | |
insert | insert | delegated_admin_relationship_id | Create a new delegatedAdminAccessAssignment object. | |
update | update | delegated_admin_relationship_id, delegated_admin_access_assignment_id | Update the properties of a delegatedAdminAccessAssignment object. | |
delete | delete | delegated_admin_relationship_id, delegated_admin_access_assignment_id | If-Match | Delete a delegatedAdminAccessAssignment object. |
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 |
|---|---|---|
delegated_admin_access_assignment_id | string | The unique identifier of delegatedAdminAccessAssignment |
delegated_admin_relationship_id | string | The unique identifier of delegatedAdminRelationship |
If-Match | string | ETag |
SELECT examples
- get
- list
Read the properties of a delegatedAdminAccessAssignment object.
SELECT
id,
accessContainer,
accessDetails,
createdDateTime,
lastModifiedDateTime,
status
FROM entra_id.tenant_relationships.delegated_admin_relationships_access_assignments
WHERE delegated_admin_relationship_id = '{{ delegated_admin_relationship_id }}' -- required
AND delegated_admin_access_assignment_id = '{{ delegated_admin_access_assignment_id }}' -- required
;
Get a list of the delegatedAdminAccessAssignment objects and their properties.
SELECT
id,
accessContainer,
accessDetails,
createdDateTime,
lastModifiedDateTime,
status
FROM entra_id.tenant_relationships.delegated_admin_relationships_access_assignments
WHERE delegated_admin_relationship_id = '{{ delegated_admin_relationship_id }}' -- required
;
INSERT examples
- insert
- Manifest
Create a new delegatedAdminAccessAssignment object.
INSERT INTO entra_id.tenant_relationships.delegated_admin_relationships_access_assignments (
id,
accessContainer,
accessDetails,
createdDateTime,
lastModifiedDateTime,
status,
delegated_admin_relationship_id
)
SELECT
'{{ id }}',
'{{ accessContainer }}',
'{{ accessDetails }}',
'{{ createdDateTime }}',
'{{ lastModifiedDateTime }}',
'{{ status }}',
'{{ delegated_admin_relationship_id }}'
RETURNING
id,
accessContainer,
accessDetails,
createdDateTime,
lastModifiedDateTime,
status
;
# Description fields are for documentation purposes
- name: delegated_admin_relationships_access_assignments
props:
- name: delegated_admin_relationship_id
value: "{{ delegated_admin_relationship_id }}"
description: Required parameter for the delegated_admin_relationships_access_assignments resource.
- name: id
value: "{{ id }}"
description: |
The unique identifier for an entity. Read-only.
- name: accessContainer
value:
accessContainerId: "{{ accessContainerId }}"
accessContainerType: "{{ accessContainerType }}"
- name: accessDetails
value:
unifiedRoles:
- roleDefinitionId: "{{ roleDefinitionId }}"
- name: createdDateTime
value: "{{ createdDateTime }}"
description: |
The date and time in ISO 8601 format and in UTC time when the access assignment was created. Read-only.
- name: lastModifiedDateTime
value: "{{ lastModifiedDateTime }}"
description: |
The date and time in ISO 8601 and in UTC time when this access assignment was last modified. Read-only.
- name: status
value: "{{ status }}"
description: |
The status of the access assignment. Read-only. The possible values are: pending, active, deleting, deleted, error, unknownFutureValue.
UPDATE examples
- update
Update the properties of a delegatedAdminAccessAssignment object.
UPDATE entra_id.tenant_relationships.delegated_admin_relationships_access_assignments
SET
id = '{{ id }}',
accessContainer = '{{ accessContainer }}',
accessDetails = '{{ accessDetails }}',
createdDateTime = '{{ createdDateTime }}',
lastModifiedDateTime = '{{ lastModifiedDateTime }}',
status = '{{ status }}'
WHERE
delegated_admin_relationship_id = '{{ delegated_admin_relationship_id }}' --required
AND delegated_admin_access_assignment_id = '{{ delegated_admin_access_assignment_id }}' --required
RETURNING
id,
accessContainer,
accessDetails,
createdDateTime,
lastModifiedDateTime,
status;
DELETE examples
- delete
Delete a delegatedAdminAccessAssignment object.
DELETE FROM entra_id.tenant_relationships.delegated_admin_relationships_access_assignments
WHERE delegated_admin_relationship_id = '{{ delegated_admin_relationship_id }}' --required
AND delegated_admin_access_assignment_id = '{{ delegated_admin_access_assignment_id }}' --required
AND If-Match = '{{ If-Match }}'
;