Show / Hide Table of Contents

Class UserExtRecoveryLocked

A complex attribute that indicates a password recovery is locked (blocking any new sessions).
Added In: 19.1.4
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: complex
  • uniqueness: none
Inheritance
object
UserExtRecoveryLocked
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.IdentitydomainsService.Models
Assembly: OCI.DotNetSDK.Identitydomains.dll
Syntax
public class UserExtRecoveryLocked

Properties

LockDate

Declaration
[JsonProperty(PropertyName = "lockDate")]
public string LockDate { get; set; }
Property Value
Type Description
string

The date and time that the current resource was locked.
Added In: 19.1.4
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • idcsRequiresWriteForAccessFlows: true
  • required: false
  • returned: default
  • type: dateTime
  • uniqueness: none

On

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

Indicates that the recovery is locked.
Added In: 19.1.4
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • idcsRequiresWriteForAccessFlows: true
  • required: false
  • returned: default
  • type: boolean
  • uniqueness: none
In this article
Back to top