Show / Hide Table of Contents

Class AddHeatWaveClusterDetails

Details required to add a HeatWave cluster.

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

Properties

ClusterSize

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

The number of analytics-processing nodes provisioned for the HeatWave cluster.

Remarks

Required

IsLakehouseEnabled

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

Enable/disable Lakehouse for the HeatWave cluster.

ShapeName

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

The shape determines resources to allocate to the HeatWave nodes - CPU cores, memory.

Remarks

Required

In this article
Back to top