Module Values.DomainNodesStatusSource

Container for information about nodes on the domain.

Sourcetype nonrec t = {
  1. nodeId : NodeId.t option;
    (*

    The ID of the node.

    *)
  2. nodeType : NodeType.t option;
    (*

    Indicates whether the nodes is a data, master, or UltraWarm node.

    *)
  3. availabilityZone : AvailabilityZone.t option;
    (*

    The Availability Zone of the node.

    *)
  4. instanceType : OpenSearchPartitionInstanceType.t option;
    (*

    The instance type information of the node.

    *)
  5. nodeStatus : NodeStatus.t option;
    (*

    Indicates if the node is active or in standby.

    *)
  6. storageType : StorageTypeName.t option;
    (*

    Indicates if the node has EBS or instance storage.

    *)
  7. storageVolumeType : VolumeType.t option;
    (*

    If the nodes has EBS storage, indicates if the volume type is gp2 or gp3. Only applicable for data nodes.

    *)
  8. storageSize : VolumeSize.t option;
    (*

    The storage size of the node, in GiB.

    *)
}
Sourceval make : ?nodeId:??? -> ?nodeType:??? -> ?availabilityZone:??? -> ?instanceType:??? -> ?nodeStatus:??? -> ?storageType:??? -> ?storageVolumeType:??? -> ?storageSize:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NodeId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t