Module Values.WorkflowSummarySource

Information about a workflow.

Sourcetype nonrec t = {
  1. id : Uuid.t option;
    (*

    The system-generated unique ID of a workflow.

    *)
  2. name : String_.t option;
    (*

    The name of the workflow.

    *)
  3. sourceRepositoryName : SourceRepositoryNameString.t option;
    (*

    The name of the source repository where the workflow definition file is stored.

    *)
  4. sourceBranchName : SourceRepositoryBranchString.t option;
    (*

    The name of the branch of the source repository where the workflow definition file is stored.

    *)
  5. definition : WorkflowDefinitionSummary.t option;
    (*

    Information about the workflow definition file.

    *)
  6. createdTime : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the workflow was created, in coordinated universal time (UTC) timestamp format as specified in RFC 3339

    *)
  7. lastUpdatedTime : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the workflow was last updated, in coordinated universal time (UTC) timestamp format as specified in RFC 3339

    *)
  8. runMode : WorkflowRunMode.t option;
    (*

    The run mode of the workflow.

    *)
  9. status : WorkflowStatus.t option;
    (*

    The status of the workflow.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?sourceRepositoryName:??? -> ?sourceBranchName:??? -> ?definition:??? -> ?createdTime:??? -> ?lastUpdatedTime:??? -> ?runMode:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Uuid.t | `Structure of (string * [> `String of String_.t ]) list | `Timestamp of SyntheticTimestamp_date_time.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