Show / Hide Table of Contents

Class UserExtLocked

A complex attribute that indicates an account is locked (blocking any new sessions).
SCIM++ Properties:

  • idcsCsvAttributeNameMappings: [[columnHeaderName:Locked, mapsTo:locked.on], [columnHeaderName:Locked Reason, mapsTo:locked.reason], [columnHeaderName:Locked Date, mapsTo:locked.lockDate]]
  • idcsSearchable: false
  • idcsAllowUpdatesInReadOnlyMode: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: complex
  • uniqueness: none
Inheritance
object
UserExtLocked
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 UserExtLocked

Properties

Expired

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

Indicates whether the user password is expired. If this value is false, password expiry is still evaluated during user login.
Added In: 20.1.3
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: request
  • type: boolean
  • uniqueness: none

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.
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 account is locked.
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • idcsRequiresWriteForAccessFlows: true
  • idcsRequiresImmediateReadAfterWriteForAccessFlows: true
  • required: false
  • returned: default
  • type: boolean
  • uniqueness: none

Reason

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

Indicates the reason for locking the account. Valid values are: 0 - failed password login attempts, 1 - admin lock, 2 - failed reset password attempts, 3 - failed MFA login attempts, 4 - failed MFA login attempts for federated user, 5 - failed Database login attempts
SCIM++ Properties:

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