Module Values.CanaryRunSource

This structure contains the details about one run of one canary.

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

    A unique ID that identifies this canary run.

    *)
  2. scheduledRunId : UUID.t option;
    (*

    The ID of the scheduled canary run.

    *)
  3. retryAttempt : RetryAttempt.t option;
    (*

    The count in number of the retry attempt.

    *)
  4. name : CanaryName.t option;
    (*

    The name of the canary.

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

    The status of this run.

    *)
  6. timeline : CanaryRunTimeline.t option;
    (*

    A structure that contains the start and end times of this run.

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

    The location where the canary stored artifacts from the run. Artifacts include the log file, screenshots, and HAR files.

    *)
  8. dryRunConfig : CanaryDryRunConfigOutput.t option;
    (*

    Returns the dry run configurations for a canary.

    *)
  9. browserType : BrowserType.t option;
    (*

    The browser type associated with this canary run.

    *)
}
Sourceval make : ?id:??? -> ?scheduledRunId:??? -> ?retryAttempt:??? -> ?name:??? -> ?status:??? -> ?timeline:??? -> ?artifactS3Location:??? -> ?dryRunConfig:??? -> ?browserType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of RetryAttempt.t | `String of UUID.t | `Structure of (string * [> `Enum of string | `String of String_.t | `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