Skip to content

Latest commit

 

History

History
53 lines (43 loc) · 2.32 KB

File metadata and controls

53 lines (43 loc) · 2.32 KB
title appManagementServicePrincipalConfiguration resource type
description Configuration object to configure app management policy restrictions like that are specific to service principals.
author yogesh-randhawa
ms.localizationpriority medium
ms.subservice entra-sign-in
doc_type resourcePageType
ms.date 09/13/2024

appManagementServicePrincipalConfiguration resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Configuration object to configure app management policy restrictions like password credentials and certificate key credentials that are specific to service principals.

Inherits from appManagementConfiguration.

Properties

Property Type Description
keyCredentials keyCredentialConfiguration collection Collection of certificate credential restrictions settings to be applied to an application or service principal. Inherited from appManagementConfiguration.
passwordCredentials passwordCredentialConfiguration collection Collection of password restrictions settings to be applied to an application or service principal. Inherited from appManagementConfiguration.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.appManagementServicePrincipalConfiguration",
  "passwordCredentials": [
    {
      "@odata.type": "microsoft.graph.passwordCredentialConfiguration"
    }
  ],
  "keyCredentials": [
    {
      "@odata.type": "microsoft.graph.keyCredentialConfiguration"
    }
  ]
}