Show / Hide Table of Contents

Class ExternalMySqlDatabase

External database.

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

Properties

CompartmentId

Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

OCID of compartment for the External MySQL Database.

Remarks

Required

DbName

Declaration
[Required(ErrorMessage = "DbName is required.")]
[JsonProperty(PropertyName = "dbName")]
public string DbName { get; set; }
Property Value
Type Description
string

Display Name of the External MySQL Database.

Remarks

Required

ExternalDatabaseId

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

OCID of External MySQL Database.

ManagementState

Declaration
[JsonProperty(PropertyName = "managementState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ManagementState? ManagementState { get; set; }
Property Value
Type Description
ManagementState?

Indicates database management state.

In this article
Back to top