Show / Hide Table of Contents

Class UserDetails

The details of a particular user.

Inheritance
object
UserDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatasafeService.Models
Assembly: OCI.DotNetSDK.Datasafe.dll
Syntax
public class UserDetails

Properties

AuthenticationType

Declaration
[JsonProperty(PropertyName = "authenticationType")]
[JsonConverter(typeof(StringEnumConverter))]
public UserDetails.AuthenticationTypeEnum? AuthenticationType { get; set; }
Property Value
Type Description
UserDetails.AuthenticationTypeEnum?

The authentication type of the user.

IsUserPredefinedByOracle

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

Indicates whether or not the user is predefined by ORACLE.

Name

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

The name of the user.

Profile

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

The name of the profile assigned to the user.

Status

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

The status of the user account.

Tablespace

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

The default tablespace of the user.

In this article
Back to top