Show / Hide Table of Contents

Class DatabaseConsoleDetails

Database console configuration details.

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

Properties

Port

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

The port on which the database console can be accessed. Supported port numbers are 443 and from 1024 to 65535.

Status

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

Whether the database console is enabled on the DB System.

Remarks

Required

In this article
Back to top