Show / Hide Table of Contents

Class ConfigureSaasAdminUserDetails

Details to update SaaS administrative user configuration.

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

Properties

AccessType

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

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

Duration

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

How long, in hours, the SaaS administrative user will stay enabled. If no duration is specified, the default value 1 will be 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.

Password

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

A strong password for SaaS administrative user. The password must be a minimum of nine (9) characters and contain a minimum of two (2) uppercase, two (2) lowercase, two (2) numbers, and two (2) special characters from _ (underscore), \# (hashtag), or - (dash).

SecretId

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

The OCID of the Oracle Cloud Infrastructure secret.

SecretVersionNumber

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

The version of the vault secret. If no version is specified, the latest version will be used.

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