appManagementConfiguration resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
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:
- appManagementApplicationConfiguration resource type
- appManagementServicePrincipalConfiguration resource type
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"
}
]
}