Show / Hide Table of Contents

Class PasswordPolicy

Password policy, currently set for the given compartment.

Inheritance
object
PasswordPolicy
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.IdentityService.Models
Assembly: OCI.DotNetSDK.Identity.dll
Syntax
public class PasswordPolicy

Properties

IsLowercaseCharactersRequired

Declaration
[JsonProperty(PropertyName = "isLowercaseCharactersRequired")]
public bool? IsLowercaseCharactersRequired { get; set; }
Property Value
Type Description
bool?

At least one lower case character required.

IsNumericCharactersRequired

Declaration
[JsonProperty(PropertyName = "isNumericCharactersRequired")]
public bool? IsNumericCharactersRequired { get; set; }
Property Value
Type Description
bool?

At least one numeric character required.

IsSpecialCharactersRequired

Declaration
[JsonProperty(PropertyName = "isSpecialCharactersRequired")]
public bool? IsSpecialCharactersRequired { get; set; }
Property Value
Type Description
bool?

At least one special character required.

IsUppercaseCharactersRequired

Declaration
[JsonProperty(PropertyName = "isUppercaseCharactersRequired")]
public bool? IsUppercaseCharactersRequired { get; set; }
Property Value
Type Description
bool?

At least one uppercase character required.

IsUsernameContainmentAllowed

Declaration
[JsonProperty(PropertyName = "isUsernameContainmentAllowed")]
public bool? IsUsernameContainmentAllowed { get; set; }
Property Value
Type Description
bool?

User name is allowed to be part of the password.

MinimumPasswordLength

Declaration
[JsonProperty(PropertyName = "minimumPasswordLength")]
public int? MinimumPasswordLength { get; set; }
Property Value
Type Description
int?

Minimum password length required.

In this article
Back to top