Module Values.UpdateAccountingRequestSource

The accounting configuration includes configurable settings for Slurm accounting.

Sourcetype nonrec t = {
  1. defaultPurgeTimeInDays : UpdateAccountingRequestDefaultPurgeTimeInDaysInteger.t option;
    (*

    The default value for all purge settings for slurmdbd.conf. For more information, see the slurmdbd.conf documentation at SchedMD. The default value for defaultPurgeTimeInDays is -1. A value of -1 means there is no purge time and records persist as long as the cluster exists. 0 isn't a valid value.

    *)
  2. mode : AccountingMode.t option;
    (*

    The default value for mode is NONE. A value of STANDARD means Slurm accounting is enabled.

    *)
}
Sourceval make : ?defaultPurgeTimeInDays:??? -> ?mode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of UpdateAccountingRequestDefaultPurgeTimeInDaysInteger.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