Show / Hide Table of Contents

Class HeatWaveNode

The information about an individual HeatWave node.

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.DatabasemanagementService.Models
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class HeatWaveNode

Properties

Id

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

The ID associated with the HeatWave node.

Remarks

Required

Status

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

The status of the HeatWave node. Indicates whether the status of the node is UP, DOWN, or UNKNOWN at the current time.

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 node was created.

Remarks

Required

In this article
Back to top