Module Values_0.BatchAddClusterNodesResponseSource

Adds nodes to a HyperPod cluster by incrementing the target count for one or more instance groups. This operation returns a unique NodeLogicalId for each node being added, which can be used to track the provisioning status of the node. This API provides a safer alternative to UpdateCluster for scaling operations by avoiding unintended configuration changes. This API is only supported for clusters using Continuous as the NodeProvisioningMode.

Sourcetype nonrec t = {
  1. successful : NodeAdditionResultList.t option;
    (*

    A list of NodeLogicalIDs that were successfully added to the cluster. The NodeLogicalID is unique per cluster and does not change between instance replacements. Each entry includes a NodeLogicalId that can be used to track the node's provisioning status (with DescribeClusterNode), the instance group name, and the current status of the node.

    *)
  2. failed : BatchAddClusterNodesErrorList.t option;
    (*

    A list of errors that occurred during the node addition operation. Each entry includes the instance group name, error code, number of failed additions, and an error message.

    *)
}
Sourcetype nonrec error = [
  1. | `ResourceLimitExceeded of ResourceLimitExceeded.t
  2. | `ResourceNotFound of ResourceNotFound.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?successful:??? -> ?failed:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ResourceLimitExceeded of ResourceLimitExceeded.t | `ResourceNotFound of ResourceNotFound.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ResourceLimitExceeded of ResourceLimitExceeded.t | `ResourceNotFound of ResourceNotFound.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `Integer of BatchAddFailureCount.t | `List of [> `Enum of string | `String of ClusterAvailabilityZone.t ] list | `String of ClusterNodeLogicalId.t ]) list ] list ]) 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