Show / Hide Table of Contents

Class ExtensionDbCredentialsUser

The database credentials user extension.

Inheritance
object
ExtensionDbCredentialsUser
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 ExtensionDbCredentialsUser

Properties

DbLoginAttempts

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

The number of failed login attempts. The value is reset to 0 after a successful login.
Added In: 2102181953
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: integer
  • uniqueness: none

DbUserName

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

The database username.
Added In: 2102181953
SCIM++ Properties:

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