Show / Hide Table of Contents

Class UpdateHeatWaveClusterDetails

Details about the HeatWave cluster properties to be updated.

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

Properties

ClusterSize

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

A change to the number of nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with the new cluster of nodes. This may result in a significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.

IsLakehouseEnabled

Declaration
[JsonProperty(PropertyName = "isLakehouseEnabled")]
public bool? IsLakehouseEnabled { get; set; }
Property Value
Type Description
bool?

Enable/disable Lakehouse for the HeatWave cluster.

ShapeName

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

A change to the shape of the nodes in the HeatWave cluster will result in the entire cluster being torn down and re-created with Compute instances of the new Shape. This may result in significant downtime for the analytics capability while the HeatWave cluster is re-provisioned.

In this article
Back to top