Module Values.SuiteSource

Represents a collection of one or more tests.

Sourcetype nonrec t = {
  1. arn : AmazonResourceName.t option;
    (*

    The suite's ARN.

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

    The suite's name.

    *)
  3. type_ : TestType.t option;
    (*

    The suite's type. Must be one of the following values: BUILTIN_FUZZ APPIUM_JAVA_JUNIT APPIUM_JAVA_TESTNG APPIUM_PYTHON APPIUM_NODE APPIUM_RUBY APPIUM_WEB_JAVA_JUNIT APPIUM_WEB_JAVA_TESTNG APPIUM_WEB_PYTHON APPIUM_WEB_NODE APPIUM_WEB_RUBY INSTRUMENTATION XCTEST XCTEST_UI

    *)
  4. created : DateTime.t option;
    (*

    When the suite was created.

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

    The suite's status. Allowed values include: PENDING PENDING_CONCURRENCY PENDING_DEVICE PROCESSING SCHEDULING PREPARING RUNNING COMPLETED STOPPING

    *)
  6. result : ExecutionResult.t option;
    (*

    The suite's result. Allowed values include: PENDING PASSED WARNED FAILED SKIPPED ERRORED STOPPED

    *)
  7. started : DateTime.t option;
    (*

    The suite's start time.

    *)
  8. stopped : DateTime.t option;
    (*

    The suite's stop time.

    *)
  9. counters : Counters.t option;
    (*

    The suite's result counters.

    *)
  10. message : Message.t option;
    (*

    A message about the suite's result.

    *)
  11. deviceMinutes : DeviceMinutes.t option;
    (*

    Represents the total (metered or unmetered) minutes used by the test suite.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?type_:??? -> ?created:??? -> ?status:??? -> ?result:??? -> ?started:??? -> ?stopped:??? -> ?counters:??? -> ?message:??? -> ?deviceMinutes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AmazonResourceName.t | `Structure of (string * [> `Double of Double.t | `Integer of Integer.t ]) list | `Timestamp of DateTime.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