Show / Hide Table of Contents

Class HeatWaveClusterSummary

A summary of a HeatWave cluster.

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

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 compute instances, of the specified shape, in the HeatWave cluster.

Remarks

Required

IsLakehouseEnabled

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

Lakehouse enabled status for the HeatWave cluster.

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(StringEnumConverter))]
public HeatWaveCluster.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
HeatWaveCluster.LifecycleStateEnum?

The current state of the MySQL HeatWave cluster.

Remarks

Required

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

TimeCreated

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

The date and time the HeatWave cluster was created, as described by RFC 3339.

Remarks

Required

TimeUpdated

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

The time the HeatWave cluster was last updated, as described by RFC 3339.

Remarks

Required

In this article
Back to top