Show / Hide Table of Contents

Class PasswordAuthenticationMode

child class of AuthenticationMode.

Inheritance
object
AuthenticationMode
PasswordAuthenticationMode
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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

In this article
Back to top