Show / Hide Table of Contents

Class ExtensionDbUserUser

DB User extension

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

Properties

DbGlobalRoles

Declaration
[JsonProperty(PropertyName = "dbGlobalRoles")]
public List<string> DbGlobalRoles { get; set; }
Property Value
Type Description
List<string>

DB global roles to which the user is granted access.
Added In: 18.2.2
SCIM++ Properties:

  • idcsSearchable: false
  • idcsSensitive: none
  • multiValued: true
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none

DomainLevelSchema

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

DB domain level schema to which the user is granted access.
Added In: 18.2.2
SCIM++ Properties:

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

InstanceLevelSchema

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

DB instance level schema to which the user is granted access.
Added In: 18.2.2
SCIM++ Properties:

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

IsDbUser

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

If true, indicates this is a database user.
Added In: 18.2.2
SCIM++ Properties:

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

PasswordVerifiers

Declaration
[JsonProperty(PropertyName = "passwordVerifiers")]
public List<UserExtPasswordVerifiers> PasswordVerifiers { get; set; }
Property Value
Type Description
List<UserExtPasswordVerifiers>

Password Verifiers for DB User.
Added In: 18.2.2
SCIM++ Properties:

  • idcsCompositeKey: [type]
  • idcsSearchable: true
  • multiValued: true
  • mutability: readOnly
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
In this article
Back to top