Module Values.DeploymentOverviewSource

Information about the deployment status of the instances in the deployment.

Sourcetype nonrec t = {
  1. pending : InstanceCount.t option;
    (*

    The number of instances in the deployment in a pending state.

    *)
  2. inProgress : InstanceCount.t option;
    (*

    The number of instances in which the deployment is in progress.

    *)
  3. succeeded : InstanceCount.t option;
    (*

    The number of instances in the deployment to which revisions have been successfully deployed.

    *)
  4. failed : InstanceCount.t option;
    (*

    The number of instances in the deployment in a failed state.

    *)
  5. skipped : InstanceCount.t option;
    (*

    The number of instances in the deployment in a skipped state.

    *)
  6. ready : InstanceCount.t option;
    (*

    The number of instances in a replacement environment ready to receive traffic in a blue/green deployment.

    *)
}
Sourceval make : ?pending:??? -> ?inProgress:??? -> ?succeeded:??? -> ?failed:??? -> ?skipped:??? -> ?ready:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of InstanceCount.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