Show / Hide Table of Contents

Class UpdateDatabaseConsoleDetails

Details required to configure the database console while updating a DB System.

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

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(StringEnumConverter))]
public DatabaseConsoleStatus? Status { get; set; }
Property Value
Type Description
DatabaseConsoleStatus?

Enable/disable the database console on the DB System.

Remarks

Required

In this article
Back to top