Module Values.DeploymentSummarySource

A subset of information about a specific deployment.

Sourcetype nonrec t = {
  1. applicationId : Identifier.t option;
    (*

    The unique identifier of the application.

    *)
  2. applicationVersion : Version.t option;
    (*

    The version of the application.

    *)
  3. creationTime : Timestamp.t option;
    (*

    The timestamp when the deployment was created.

    *)
  4. deploymentId : Identifier.t option;
    (*

    The unique identifier of the deployment.

    *)
  5. environmentId : Identifier.t option;
    (*

    The unique identifier of the runtime environment.

    *)
  6. status : DeploymentLifecycle.t option;
    (*

    The current status of the deployment.

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

    The reason for the reported status.

    *)
}
Sourceval make : ?applicationId:??? -> ?applicationVersion:??? -> ?creationTime:??? -> ?deploymentId:??? -> ?environmentId:??? -> ?status:??? -> ?statusReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Version.t | `String of Identifier.t | `Timestamp of 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