Module Values_1.EdgeDeploymentStatusSource

Contains information summarizing the deployment stage results.

Sourcetype nonrec t = {
  1. stageStatus : StageStatus.t option;
    (*

    The general status of the current stage.

    *)
  2. edgeDeploymentSuccessInStage : Values_0.Integer.t option;
    (*

    The number of edge devices with the successful deployment in the current stage.

    *)
  3. edgeDeploymentPendingInStage : Values_0.Integer.t option;
    (*

    The number of edge devices yet to pick up the deployment in current stage, or in progress.

    *)
  4. edgeDeploymentFailedInStage : Values_0.Integer.t option;
    (*

    The number of edge devices that failed the deployment in current stage.

    *)
  5. edgeDeploymentStatusMessage : Values_0.String_.t option;
    (*

    A detailed message about deployment status in current stage.

    *)
  6. edgeDeploymentStageStartTime : Values_0.Timestamp.t option;
    (*

    The time when the deployment API started.

    *)
}
Sourceval make : ?stageStatus:??? -> ?edgeDeploymentSuccessInStage:??? -> ?edgeDeploymentPendingInStage:??? -> ?edgeDeploymentFailedInStage:??? -> ?edgeDeploymentStatusMessage:??? -> ?edgeDeploymentStageStartTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.Integer.t | `String of Values_0.String_.t | `Timestamp of Values_0.Timestamp.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