delegated_admin_customers_service_management_details
Creates, updates, deletes, gets or lists a delegated_admin_customers_service_management_details resource.
Overview
| Name | delegated_admin_customers_service_management_details |
| Type | Resource |
| Id | entra_id.tenant_relationships.delegated_admin_customers_service_management_details |
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. |
serviceManagementUrl | string | The URL of the management portal for the managed service. Read-only. |
serviceName | string | The name of a managed service. Read-only. |
Retrieved collection
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
serviceManagementUrl | string | The URL of the management portal for the managed service. Read-only. |
serviceName | string | The name of a managed service. Read-only. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | delegated_admin_customer_id, delegated_admin_service_management_detail_id | Contains the management details of a service in the customer tenant that's managed by delegated administration. | |
list | select | delegated_admin_customer_id | Get a list of the delegatedAdminServiceManagementDetail objects and their properties. | |
insert | insert | delegated_admin_customer_id | ||
update | update | delegated_admin_customer_id, delegated_admin_service_management_detail_id | ||
delete | delete | delegated_admin_customer_id, delegated_admin_service_management_detail_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 |
|---|---|---|
delegated_admin_customer_id | string | The unique identifier of delegatedAdminCustomer |
delegated_admin_service_management_detail_id | string | The unique identifier of delegatedAdminServiceManagementDetail |
If-Match | string | ETag |
SELECT examples
- get
- list
Contains the management details of a service in the customer tenant that's managed by delegated administration.
SELECT
id,
serviceManagementUrl,
serviceName
FROM entra_id.tenant_relationships.delegated_admin_customers_service_management_details
WHERE delegated_admin_customer_id = '{{ delegated_admin_customer_id }}' -- required
AND delegated_admin_service_management_detail_id = '{{ delegated_admin_service_management_detail_id }}' -- required
;
Get a list of the delegatedAdminServiceManagementDetail objects and their properties.
SELECT
id,
serviceManagementUrl,
serviceName
FROM entra_id.tenant_relationships.delegated_admin_customers_service_management_details
WHERE delegated_admin_customer_id = '{{ delegated_admin_customer_id }}' -- required
;
INSERT examples
- insert
- Manifest
No description available.
INSERT INTO entra_id.tenant_relationships.delegated_admin_customers_service_management_details (
id,
serviceManagementUrl,
serviceName,
delegated_admin_customer_id
)
SELECT
'{{ id }}',
'{{ serviceManagementUrl }}',
'{{ serviceName }}',
'{{ delegated_admin_customer_id }}'
RETURNING
id,
serviceManagementUrl,
serviceName
;
# Description fields are for documentation purposes
- name: delegated_admin_customers_service_management_details
props:
- name: delegated_admin_customer_id
value: "{{ delegated_admin_customer_id }}"
description: Required parameter for the delegated_admin_customers_service_management_details resource.
- name: id
value: "{{ id }}"
description: |
The unique identifier for an entity. Read-only.
- name: serviceManagementUrl
value: "{{ serviceManagementUrl }}"
description: |
The URL of the management portal for the managed service. Read-only.
- name: serviceName
value: "{{ serviceName }}"
description: |
The name of a managed service. Read-only.
UPDATE examples
- update
No description available.
UPDATE entra_id.tenant_relationships.delegated_admin_customers_service_management_details
SET
id = '{{ id }}',
serviceManagementUrl = '{{ serviceManagementUrl }}',
serviceName = '{{ serviceName }}'
WHERE
delegated_admin_customer_id = '{{ delegated_admin_customer_id }}' --required
AND delegated_admin_service_management_detail_id = '{{ delegated_admin_service_management_detail_id }}' --required
RETURNING
id,
serviceManagementUrl,
serviceName;
DELETE examples
- delete
No description available.
DELETE FROM entra_id.tenant_relationships.delegated_admin_customers_service_management_details
WHERE delegated_admin_customer_id = '{{ delegated_admin_customer_id }}' --required
AND delegated_admin_service_management_detail_id = '{{ delegated_admin_service_management_detail_id }}' --required
AND If-Match = '{{ If-Match }}'
;