Class DatabaseConsoleDetails
Database console configuration details.
Inherited Members
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