Skip to main content

remote_desktop_security_configuration_approved_client_apps

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

Overview

Nameremote_desktop_security_configuration_approved_client_apps
TypeResource
Identra_id.service_principals.remote_desktop_security_configuration_approved_client_apps

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
displayNamestringThe display name of the approved client application.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectservice_principal_id, approved_client_app_idRead the properties and relationships of a approvedClientApp object for the remoteDesktopSecurityConfiguration object on a servicePrincipal.
listselectservice_principal_idThe collection of approved client apps that are associated with the RDS configuration. Supports $expand.
insertinsertservice_principal_idCreate a new approvedClientApp object for the remoteDesktopSecurityConfiguration object on a service principal. You can configure a maximum of 20 approved client apps.
updateupdateservice_principal_id, approved_client_app_idUpdate the properties of an approvedClientApp object for a remotedesktopsecurityconfiguration.
deletedeleteservice_principal_id, approved_client_app_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
approved_client_app_idstringThe unique identifier of approvedClientApp
service_principal_idstringThe unique identifier of servicePrincipal
If-MatchstringETag

SELECT examples

Read the properties and relationships of a approvedClientApp object for the remoteDesktopSecurityConfiguration object on a servicePrincipal.

SELECT
id,
displayName
FROM entra_id.service_principals.remote_desktop_security_configuration_approved_client_apps
WHERE service_principal_id = '{{ service_principal_id }}' -- required
AND approved_client_app_id = '{{ approved_client_app_id }}' -- required
;

INSERT examples

Create a new approvedClientApp object for the remoteDesktopSecurityConfiguration object on a service principal. You can configure a maximum of 20 approved client apps.

INSERT INTO entra_id.service_principals.remote_desktop_security_configuration_approved_client_apps (
id,
displayName,
service_principal_id
)
SELECT
'{{ id }}',
'{{ displayName }}',
'{{ service_principal_id }}'
RETURNING
id,
displayName
;

UPDATE examples

Update the properties of an approvedClientApp object for a remotedesktopsecurityconfiguration.

UPDATE entra_id.service_principals.remote_desktop_security_configuration_approved_client_apps
SET
id = '{{ id }}',
displayName = '{{ displayName }}'
WHERE
service_principal_id = '{{ service_principal_id }}' --required
AND approved_client_app_id = '{{ approved_client_app_id }}' --required
RETURNING
id,
displayName;

DELETE examples

No description available.

DELETE FROM entra_id.service_principals.remote_desktop_security_configuration_approved_client_apps
WHERE service_principal_id = '{{ service_principal_id }}' --required
AND approved_client_app_id = '{{ approved_client_app_id }}' --required
AND If-Match = '{{ If-Match }}'
;