Module Values.SetupHistorySource

Returns a list of the commands that were ran on the target resource. The status of each command is also returned.

Sourcetype nonrec t = {
  1. operationId : NonEmptyString.t option;
    (*

    A GUID that's used to identify the operation.

    *)
  2. request : SetupRequest.t option;
    (*

    Information about the specified request.

    *)
  3. resource : SetupHistoryResource.t option;
    (*

    The target resource name for the request.

    *)
  4. executionDetails : SetupExecutionDetailsList.t option;
    (*

    Describes the full details of the request.

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

    The status of the request.

    *)
}
Sourceval make : ?operationId:??? -> ?request:??? -> ?resource:??? -> ?executionDetails:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of IsoDate.t ]) list ] list | `String of NonEmptyString.t | `Structure of (string * [> `Enum of string | `List of [> `String of SetupDomainName.t ] list | `String of ResourceName.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list | `Timestamp of IsoDate.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