Module Values.UpdateServiceJobRequestSource

Updates the priority of a specified service job in an Batch job queue.

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

    The Batch job ID of the job to update.

    *)
  2. schedulingPriority : Integer.t;
    (*

    The scheduling priority for the job. This only affects jobs in job queues with a quota-share or fair-share scheduling policy. Jobs with a higher scheduling priority are scheduled before jobs with a lower scheduling priority within a share. The minimum supported value is 0 and the maximum supported value is 9999.

    *)
}
Sourceval context_ : string
Sourceval make : jobId:String_.t -> schedulingPriority:Integer.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `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