Show / Hide Table of Contents

Class UserSummary

The summary of a specific User.

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

Properties

DefaultTablespace

Declaration
[Required(ErrorMessage = "DefaultTablespace is required.")]
[JsonProperty(PropertyName = "defaultTablespace")]
public string DefaultTablespace { get; set; }
Property Value
Type Description
string

The default tablespace for data.

Remarks

Required

Name

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

The name of the User.

Remarks

Required

Profile

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

The profile name of the user.

Remarks

Required

Status

Declaration
[Required(ErrorMessage = "Status is required.")]
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public UserSummary.StatusEnum? Status { get; set; }
Property Value
Type Description
UserSummary.StatusEnum?

The status of the user account.

Remarks

Required

TempTablespace

Declaration
[Required(ErrorMessage = "TempTablespace is required.")]
[JsonProperty(PropertyName = "tempTablespace")]
public string TempTablespace { get; set; }
Property Value
Type Description
string

The name of the default tablespace for temporary tables or the name of a tablespace group.

Remarks

Required

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date and time the user was created.

Remarks

Required

TimeExpiring

Declaration
[JsonProperty(PropertyName = "timeExpiring")]
public DateTime? TimeExpiring { get; set; }
Property Value
Type Description
DateTime?

The date and time of the expiration of the user account.

TimeLocked

Declaration
[JsonProperty(PropertyName = "timeLocked")]
public DateTime? TimeLocked { get; set; }
Property Value
Type Description
DateTime?

The date the account was locked, if the status of the account is LOCKED.

In this article
Back to top