Module Values.ClusterSource

The cluster resource and configuration.

Sourcetype nonrec t = {
  1. name : String_.t option;
    (*

    The name that identifies the cluster.

    *)
  2. id : String_.t option;
    (*

    The generated unique ID of the cluster.

    *)
  3. arn : String_.t option;
    (*

    The unique Amazon Resource Name (ARN) of the cluster.

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

    The provisioning status of the cluster. The provisioning status doesn't indicate the overall health of the cluster. The resource enters the SUSPENDING and SUSPENDED states when the scheduler is beyond end of life and we have suspended the cluster. When in these states, you can't use the cluster. The cluster controller is down and all compute instances are terminated. The resources still count toward your service quotas. You can delete a resource if its status is SUSPENDED. For more information, see Frequently asked questions about Slurm versions in PCS in the PCS User Guide.

    *)
  5. createdAt : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the resource was created.

    *)
  6. modifiedAt : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the resource was modified.

    *)
  7. scheduler : Scheduler.t option;
  8. size : Size.t option;
    (*

    The size of the cluster. SMALL: 32 compute nodes and 256 jobs MEDIUM: 512 compute nodes and 8192 jobs LARGE: 2048 compute nodes and 16,384 jobs

    *)
  9. slurmConfiguration : ClusterSlurmConfiguration.t option;
    (*

    Additional options related to the Slurm scheduler.

    *)
  10. networking : Networking.t option;
  11. endpoints : Endpoints.t option;
    (*

    The list of endpoints available for interaction with the scheduler.

    *)
  12. errorInfo : ErrorInfoList.t option;
    (*

    The list of errors that occurred during cluster provisioning.

    *)
}
Sourceval make : ?name:??? -> ?id:??? -> ?arn:??? -> ?status:??? -> ?createdAt:??? -> ?modifiedAt:??? -> ?scheduler:??? -> ?size:??? -> ?slurmConfiguration:??? -> ?networking:??? -> ?endpoints:??? -> ?errorInfo:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `Integer of ClusterSlurmConfigurationScaleDownIdleTimeInSecondsInteger.t | `List of [> `String of SubnetId.t | `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `Integer of AccountingDefaultPurgeTimeInDaysInteger.t | `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) list ]) list | `Timestamp of SyntheticTimestamp_date_time.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