Skip to content

Latest commit

 

History

History
56 lines (44 loc) · 2.04 KB

File metadata and controls

56 lines (44 loc) · 2.04 KB
title appManagementConfiguration resource type
description App management configuration object that contains properties which can be configured to enable various restrictions for applications and service principals.
author aricrowe57
ms.localizationpriority medium
ms.subservice entra-sign-in
doc_type resourcePageType
ms.date 09/11/2024

appManagementConfiguration resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Base app management configuration object that contains properties that can be configured to enable various restrictions for applications and service principals through an application management policy. This resource is an abstract type from which the following resources inherit:

Properties

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

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

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