Module Values.KxNodeSource

A structure that stores metadata for a kdb node.

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

    A unique identifier for the node.

    *)
  2. availabilityZoneId : AvailabilityZoneId.t option;
    (*

    The identifier of the availability zones where subnets for the environment are created.

    *)
  3. launchTime : Timestamp.t option;
    (*

    The time when a particular node is started. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.

    *)
  4. status : KxNodeStatus.t option;
    (*

    Specifies the status of the cluster nodes. RUNNING – The node is actively serving. PROVISIONING – The node is being prepared.

    *)
}
Sourceval make : ?nodeId:??? -> ?availabilityZoneId:??? -> ?launchTime:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of KxClusterNodeIdString.t | `Timestamp of Timestamp.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