Show / Hide Table of Contents

Class ChangeMysqlDatabaseManagementTypeDetails

Details required to change the management type for a HeatWave MySQL instance, from BASIC to FULL and vice versa. MySQL support within OCI Database Management service has been deprecated as of January 29, 2026.

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

Properties

ManagementType

Declaration
[Required(ErrorMessage = "ManagementType is required.")]
[JsonProperty(PropertyName = "managementType")]
[JsonConverter(typeof(StringEnumConverter))]
public ManagedMySqlDatabase.HeatWaveManagementTypeEnum? ManagementType { get; set; }
Property Value
Type Description
ManagedMySqlDatabase.HeatWaveManagementTypeEnum?

The type of HeatWave management.

Remarks

Required

Operation

Declaration
[JsonProperty(PropertyName = "operation")]
[JsonConverter(typeof(StringEnumConverter))]
public ChangeMysqlDatabaseManagementTypeDetails.OperationEnum? Operation { get; set; }
Property Value
Type Description
ChangeMysqlDatabaseManagementTypeDetails.OperationEnum?

The type of operation to perform: Update managementType, enable, or disable Database Management.

In this article
Back to top