Module Values_0.ClusterAutoScalingConfigOutputSource

The autoscaling configuration and status information for a HyperPod cluster.

Sourcetype nonrec t = {
  1. mode : ClusterAutoScalingMode.t option;
    (*

    Describes whether autoscaling is enabled or disabled for the cluster.

    *)
  2. autoScalerType : ClusterAutoScalerType.t option;
    (*

    The type of autoscaler configured for the cluster.

    *)
  3. status : ClusterAutoScalingStatus.t option;
    (*

    The current status of the autoscaling configuration. Valid values are InService, Failed, Creating, and Deleting.

    *)
  4. failureMessage : String_.t option;
    (*

    If the autoscaling status is Failed, this field contains a message describing the failure.

    *)
}
Sourceval make : ?mode:??? -> ?autoScalerType:??? -> ?status:??? -> ?failureMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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