Skip to main content

delegated_admin_customers_service_management_details

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

Overview

Namedelegated_admin_customers_service_management_details
TypeResource
Identra_id.tenant_relationships.delegated_admin_customers_service_management_details

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
serviceManagementUrlstringThe URL of the management portal for the managed service. Read-only.
serviceNamestringThe name of a managed service. Read-only.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectdelegated_admin_customer_id, delegated_admin_service_management_detail_idContains the management details of a service in the customer tenant that's managed by delegated administration.
listselectdelegated_admin_customer_idGet a list of the delegatedAdminServiceManagementDetail objects and their properties.
insertinsertdelegated_admin_customer_id
updateupdatedelegated_admin_customer_id, delegated_admin_service_management_detail_id
deletedeletedelegated_admin_customer_id, delegated_admin_service_management_detail_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
delegated_admin_customer_idstringThe unique identifier of delegatedAdminCustomer
delegated_admin_service_management_detail_idstringThe unique identifier of delegatedAdminServiceManagementDetail
If-MatchstringETag

SELECT examples

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
;

INSERT examples

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
;

UPDATE examples

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

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 }}'
;