Class PasswordAuthenticationMode
child class of AuthenticationMode.
Inherited Members
Namespace: Oci.RedisService.Models
Assembly: OCI.DotNetSDK.Redis.dll
Syntax
public class PasswordAuthenticationMode : AuthenticationMode
Properties
HashedPasswords
Declaration
[Required(ErrorMessage = "HashedPasswords is required.")]
[JsonProperty(PropertyName = "hashedPasswords")]
public List<string> HashedPasswords { get; set; }
Property Value
Type | Description |
---|---|
List<string> | SHA-256 hashed passwords for OCI Cache user,required if authenticationType is set to PASSWORD. |
Remarks
Required