Module Values.JobRunAsUserSource

Identifies the user for a job.

Sourcetype nonrec t = {
  1. posix : PosixUser.t option;
    (*

    The user and group that the jobs in the queue run as.

    *)
  2. windows : WindowsUser.t option;
    (*

    Identifies a Microsoft Windows user.

    *)
  3. runAs : RunAs.t;
    (*

    Specifies whether the job should run using the queue's system user or if the job should run using the worker agent system user.

    *)
}
Sourceval context_ : string
Sourceval make : ?posix:??? -> ?windows:??? -> runAs:RunAs.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of PosixUserUserString.t ]) 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