Show / Hide Table of Contents

Class HeatWaveNode

A HeatWave node is a compute host that is part of a HeatWave cluster.

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

Properties

LifecycleState

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

The current state of the MySQL HeatWave node.

Remarks

Required

NodeId

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

The ID of the node within MySQL HeatWave cluster.

Remarks

Required

TimeCreated

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

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

TimeUpdated

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

The date and time the MySQL HeatWave node was updated, as described by RFC 3339.

In this article
Back to top