appManagementConfiguration resource type

Namespace: microsoft.graph

App management configuration object that contains properties which can be configured to enable various restrictions for applications and service principals.

Properties

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

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

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