Module Values.ActionStateSource

Represents information about the state of an action.

Sourcetype nonrec t = {
  1. actionName : ActionName.t option;
    (*

    The name of the action.

    *)
  2. currentRevision : ActionRevision.t option;
    (*

    Represents information about the version (or revision) of an action.

    *)
  3. latestExecution : ActionExecution.t option;
    (*

    Represents information about the run of an action.

    *)
  4. entityUrl : Url.t option;
    (*

    A URL link for more information about the state of the action, such as a deployment group details page.

    *)
  5. revisionUrl : Url.t option;
    (*

    A URL link for more information about the revision, such as a commit details page.

    *)
}
Sourceval make : ?actionName:??? -> ?currentRevision:??? -> ?latestExecution:??? -> ?entityUrl:??? -> ?revisionUrl:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ActionName.t | `Structure of (string * [> `Enum of string | `Integer of Percentage.t | `String of Revision.t | `Structure of (string * [> `String of Code.t ]) list | `Timestamp of Timestamp.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