passwordCredentialConfiguration 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.
Password credential configuration object that contains properties to configure restrictions such as blocking or restricting lifetimes of password secrets.
Properties
Property | Type | Description |
---|---|---|
restrictionType | appCredentialRestrictionType | The type of restriction being applied. The possible values are: passwordAddition , passwordLifetime , symmetricKeyAddition , symmetricKeyLifetime ,customPasswordAddition , unknownFutureValue . Each value of restrictionType can be used only once per policy. |
maxLifeTime | Duration | Value that can be used as the maximum number for setting password expiration time in days, hours, minutes or seconds. Defined in ISO 8601 format for Durations. For example, "P4DT12H30M5S" represents a duration of four days, twelve hours, thirty minutes, and five seconds. This property is required when restriction type is set to passwordLifetime . |
restrictForAppsCreatedAfterDateTime | DateTimeOffset | Enforces the policy for an app created on or after the enforcement date. For existing applications, the enforcement date would be backdated. To apply to all applications, this date would be null . |
Relationships
None.
JSON representation
The following is a JSON representation of the resource.
{
"@odata.type": "#microsoft.graph.passwordCredentialConfiguration",
"restrictionType": {
"@odata.type": "microsoft.graph.appCredentialRestrictionType"
},
"maxLifetime": "String (duration)",
"restrictForAppsCreatedAfterDateTime": "DateTimeOffset"
}
Feedback
Submit and view feedback for