Module Values.SetupExecutionDetailsSource

Returns details about the commands that were run.

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

    The command that was executed.

    *)
  2. dateTime : IsoDate.t option;
    (*

    The timestamp for when the request was run.

    *)
  3. name : NonEmptyString.t option;
    (*

    The name of the target resource.

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

    The status of the SetupInstanceHttps request.

    *)
  5. standardError : String_.t option;
    (*

    The text written by the command to stderr.

    *)
  6. standardOutput : String_.t option;
    (*

    The text written by the command to stdout.

    *)
  7. version : String_.t option;
    (*

    The current version of the script..

    *)
}
Sourceval make : ?command:??? -> ?dateTime:??? -> ?name:??? -> ?status:??? -> ?standardError:??? -> ?standardOutput:??? -> ?version:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of IsoDate.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