Module Values.ClusterSlurmConfigurationSource

Additional options related to the Slurm scheduler.

Sourcetype nonrec t = {
  1. scaleDownIdleTimeInSeconds : ClusterSlurmConfigurationScaleDownIdleTimeInSecondsInteger.t option;
    (*

    The time (in seconds) before an idle node is scaled down. Default: 600

    *)
  2. slurmCustomSettings : SlurmCustomSettings.t option;
    (*

    Additional Slurm-specific configuration that directly maps to Slurm settings.

    *)
  3. slurmdbdCustomSettings : SlurmdbdCustomSettings.t option;
    (*

    Additional SlurmDBD-specific configuration that directly maps to SlurmDBD settings.

    *)
  4. cgroupCustomSettings : CgroupCustomSettings.t option;
    (*

    Additional Cgroup-specific configuration that directly maps to Cgroup settings.

    *)
  5. authKey : SlurmAuthKey.t option;
    (*

    The shared Slurm key for authentication, also known as the cluster secret.

    *)
  6. jwtAuth : JwtAuth.t option;
    (*

    The JWT authentication configuration for Slurm REST API access.

    *)
  7. accounting : Accounting.t option;
    (*

    The accounting configuration includes configurable settings for Slurm accounting.

    *)
  8. slurmRest : SlurmRest.t option;
    (*

    The Slurm REST API configuration for the cluster.

    *)
}
Sourceval make : ?scaleDownIdleTimeInSeconds:??? -> ?slurmCustomSettings:??? -> ?slurmdbdCustomSettings:??? -> ?cgroupCustomSettings:??? -> ?authKey:??? -> ?jwtAuth:??? -> ?accounting:??? -> ?slurmRest:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of ClusterSlurmConfigurationScaleDownIdleTimeInSecondsInteger.t | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `Structure of (string * [> `Enum of string | `Integer of AccountingDefaultPurgeTimeInDaysInteger.t | `String of String_.t | `Structure of (string * [> `String of String_.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