Show / Hide Table of Contents

Class SaasAdminUserStatus

SaaS administrative user status.

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

Properties

AccessType

Declaration
[JsonProperty(PropertyName = "accessType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SaasAdminUserStatus.AccessTypeEnum? AccessType { get; set; }
Property Value
Type Description
SaasAdminUserStatus.AccessTypeEnum?

The access type for the SaaS administrative user. If no access type is specified, the READ_ONLY access type is used.

IsEnabled

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

Indicates if the SaaS administrative user is enabled for the Autonomous Database.

TimeSaasAdminUserEnabled

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

The date and time the SaaS administrative user was enabled at, for the Autonomous Database.

In this article
Back to top